/* ======================================================
   SERVICE LISTING HERO
====================================================== */

.service-listing-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(10, 45, 70, .98) 0%,
            rgba(10, 45, 70, .9) 48%,
            rgba(10, 45, 70, .55) 100%),
        url("https://images.unsplash.com/photo-1558655146-d09347e92766?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}

.service-hero-content {
    max-width: 720px;
    padding: 100px 0;
}

.page-label,
.section-label {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.service-hero-content h1 {
    margin: 18px 0;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -3px;
}

.service-hero-content h1 span {
    color: var(--primary);
}

.service-hero-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    line-height: 1.9;
}

.service-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 700;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: var(--dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* ======================================================
   INTRO
====================================================== */

.service-intro {
    padding: 120px 0;
}

.service-intro-image {
    height: 520px;
    overflow: hidden;
    border-radius: 25px;
}

.service-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-intro-content h2 {
    margin: 15px 0 25px;
    color: var(--dark);
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.05;
}

.service-intro-content h2 span {
    color: var(--secondary);
}

.service-intro-content p {
    color: #667085;
    line-height: 1.9;
}

.service-check-list {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.service-check-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: .85rem;
    font-weight: 600;
}

.service-check-list i {
    color: var(--secondary);
    font-size: 1.1rem;
}


/* ======================================================
   PACKAGES
====================================================== */

.service-packages {
    padding: 120px 0;
    background: #f8fafc;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading-row h2 {
    margin: 14px 0 0;
    color: var(--dark);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
}

.section-heading-row h2 span {
    color: var(--secondary);
}

.section-heading-row>p {
    max-width: 450px;
    margin: 0;
    color: #667085;
    font-size: .85rem;
    line-height: 1.8;
}


/* package card */

.identity-package {
    position: relative;
    height: 100%;
    padding: 35px;
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 24px;
    background: #fff;
    transition: .35s ease;
}

.identity-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .09);
}

.identity-package.featured {
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(11, 107, 111, .1);
}

.package-popular {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 15px;
    border-radius: 0 0 0 12px;
    background: var(--secondary);
    color: #fff;
    font-family: var(--font-accent);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-top>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-number {
    color: #d0d5dd;
    font-family: var(--font-accent);
    font-size: .7rem;
}

.identity-package h3 {
    margin: 18px 0 10px;
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 800;
}

.identity-package>p {
    min-height: 55px;
    color: #667085;
    font-size: .8rem;
    line-height: 1.7;
}

.package-price {
    margin: 30px 0 20px;
}

.package-price small {
    display: block;
    color: #98a2b3;
    font-size: .65rem;
}

.package-price strong {
    display: block;
    margin-top: 4px;
    color: var(--dark);
    font-size: 1.7rem;
    font-weight: 800;
}

.package-divider {
    height: 1px;
    margin-bottom: 25px;
    background: #eaecf0;
}

.identity-package h4 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: .8rem;
    font-weight: 800;
}

.identity-package ul {
    min-height: 180px;
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}

.identity-package li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
    color: #667085;
    font-size: .75rem;
}

.identity-package li i {
    color: var(--secondary);
}

.package-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 17px;
    border: 1px solid #e4e7ec;
    border-radius: 11px;
    background: #fff;
    color: var(--dark);
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.package-btn:hover,
.identity-package.featured .package-btn {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* ======================================================
   APPLICATIONS
====================================================== */

.brand-applications {
    padding: 120px 0;
}

.section-title {
    text-align: left;
}

.section-title h2 {
    margin: 14px 0 0;
    color: var(--dark);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 800;
}

.section-title h2 span {
    color: var(--secondary);
}

.brand-application-card {
    height: 100%;
    padding: 30px;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    transition: .3s;
}

.brand-application-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.brand-application-card>i {
    color: var(--primary);
    font-size: 1.5rem;
}

.brand-application-card h3 {
    margin: 20px 0 8px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
}

.brand-application-card p {
    margin: 0;
    color: #667085;
    font-size: .78rem;
    line-height: 1.7;
}


/* ======================================================
   PROCESS
====================================================== */

.service-process {
    padding: 120px 0;
    background: var(--dark);
}

.service-process .section-heading-row h2 {
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
}

.process-item {
    position: relative;
    padding: 35px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.process-item>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .65rem;
}

.process-item>i {
    display: block;
    margin: 30px 0 20px;
    font-size: 1.5rem;
}

.process-item h3 {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 800;
}

.process-item p {
    margin: 0;
    font-size: .75rem;
    line-height: 1.8;
}


/* ======================================================
   CUSTOM CTA
====================================================== */

.service-custom-cta {
    padding: 100px 0;
}

.service-custom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 55px;
    border-radius: 25px;
    background: var(--secondary);
}

.service-custom-cta-inner>div span {
    color: rgba(255, 255, 255, .65);
    font-family: var(--font-accent);
    font-size: .65rem;
    font-weight: 700;
}

.service-custom-cta h2 {
    max-width: 650px;
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
}

.service-custom-cta h2 span {
    color: var(--primary);
}


/* ======================================================
   MODAL
====================================================== */

.package-modal {
    border: 0;
    border-radius: 22px;
}

.package-modal .modal-header {
    padding: 30px 30px 10px;
    border: 0;
}

.package-modal .modal-header span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .6rem;
    font-weight: 700;
}

.package-modal h3 {
    margin: 7px 0 0;
    color: var(--dark);
    font-weight: 800;
}

.package-modal .modal-body {
    padding: 20px 30px 30px;
}

.package-modal .modal-body>p {
    color: #667085;
    font-size: .82rem;
    line-height: 1.7;
}

.package-modal label {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: .72rem;
    font-weight: 700;
}

.package-modal .form-control {
    min-height: 45px;
    border-color: #e4e7ec;
    border-radius: 10px;
    box-shadow: none;
    font-size: .8rem;
}

.package-modal .form-control:focus {
    border-color: var(--secondary);
}

.package-submit {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: 0;
    border-radius: 10px;
    background: var(--dark);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
}

/* ======================================================
   PACKAGING HERO
====================================================== */

.packaging-hero {
    background:
        linear-gradient(90deg,
            rgba(10, 45, 70, .98) 0%,
            rgba(10, 45, 70, .88) 48%,
            rgba(10, 45, 70, .45) 100%),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}


/* ======================================================
   PACKAGING CATEGORIES
====================================================== */

.packaging-categories {
    padding: 120px 0;
    background: #f8fafc;
}

.packaging-category-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    transition: .35s ease;
}

.packaging-category-card:hover {
    transform: translateY(-7px);
    border-color: rgba(11, 107, 111, .35);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

.category-image {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.packaging-category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-image>span {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(10, 45, 70, .85);
    color: #fff;
    font-family: var(--font-accent);
    font-size: .55rem;
}

.category-content {
    padding: 25px;
}

.category-label {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-content h3 {
    margin: 7px 0 10px;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.category-content p {
    min-height: 48px;
    margin-bottom: 22px;
    color: #667085;
    font-size: .76rem;
    line-height: 1.7;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border: 1px solid #e4e7ec;
    border-radius: 9px;
    background: transparent;
    color: var(--dark);
    font-size: .7rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}

.category-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* ======================================================
   CUSTOM CATEGORY
====================================================== */

.custom-category {
    min-height: 100%;
    border: 1px solid var(--secondary);
    background: var(--dark);
}

.custom-category-content {
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.custom-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 15px;
    background: rgba(246, 139, 0, .12);
    color: var(--primary);
    font-size: 1.4rem;
}

.custom-category h3 {
    margin: 10px 0;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
}

.custom-category p {
    max-width: 350px;
    min-height: auto;
    color: rgba(255, 255, 255, .55);
}

.custom-category .category-btn {
    width: fit-content;
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.custom-category .category-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}


/* ======================================================
   DESIGN PACKAGES
====================================================== */

.packaging-packages {
    padding: 120px 0;
}

.section-title {
    max-width: 700px;
}

.section-title h2 {
    margin: 14px 0;
    color: var(--dark);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1;
}

.section-title h2 span {
    color: var(--secondary);
}

.section-title>p {
    max-width: 600px;
    color: #667085;
    font-size: .85rem;
    line-height: 1.8;
}

.design-package {
    height: 100%;
    padding: 35px;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    transition: .35s;
}

.design-package:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .07);
}

.design-package.featured {
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(11, 107, 111, .08);
}

.design-package>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .6rem;
    font-weight: 700;
}

.design-package h3 {
    margin: 18px 0 10px;
    color: var(--dark);
    font-size: 1.35rem;
    font-weight: 800;
}

.design-package>p {
    min-height: 70px;
    color: #667085;
    font-size: .78rem;
    line-height: 1.75;
}

.design-package ul {
    padding: 20px 0 15px;
    margin: 0;
    list-style: none;
}

.design-package li {
    display: flex;
    gap: 9px;
    margin-bottom: 10px;
    color: #667085;
    font-size: .75rem;
}

.design-package li i {
    color: var(--secondary);
}

.design-package-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: transparent;
    color: var(--dark);
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.design-package-btn:hover,
.design-package.featured .design-package-btn {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}

/* ======================================================
   OFFSET HERO
====================================================== */

.offset-printing-hero {
    background:
        linear-gradient(90deg,
            rgba(10, 45, 70, .98) 0%,
            rgba(10, 45, 70, .88) 48%,
            rgba(10, 45, 70, .45) 100%),
        url("https://images.unsplash.com/photo-1509266272358-7701da638078?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}


/* ======================================================
   OFFSET PRODUCTS
====================================================== */

.offset-products {
    padding: 120px 0;
    background: #f8fafc;
}

.offset-product-card {
    height: 100%;
    padding: 32px;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    transition: .35s ease;
}

.offset-product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(11, 107, 111, .3);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

.offset-product-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 14px;
    background: rgba(246, 139, 0, .1);
    color: var(--primary);
    font-size: 1.25rem;
}

.offset-product-card h3 {
    margin: 8px 0 10px;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.offset-product-card>p {
    min-height: 55px;
    color: #667085;
    font-size: .76rem;
    line-height: 1.7;
}

.offset-features {
    padding: 18px 0;
    margin: 20px 0;
    border-top: 1px solid #eaecf0;
    border-bottom: 1px solid #eaecf0;
}

.offset-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: #667085;
    font-size: .68rem;
}

.offset-features span:last-child {
    margin-bottom: 0;
}

.offset-features i {
    color: var(--secondary);
}

.offset-product-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: transparent;
    color: var(--dark);
    font-size: .7rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.offset-product-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* ======================================================
   CUSTOM CARD
====================================================== */

.offset-custom-card {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border: 1px solid var(--secondary);
    border-radius: 22px;
    background: var(--dark);
}

.offset-custom-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 14px;
    background: rgba(246, 139, 0, .1);
    color: var(--primary);
    font-size: 1.25rem;
}

.offset-custom-card h3 {
    max-width: 330px;
    margin: 8px 0 12px;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
}

.offset-custom-card p {
    max-width: 350px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    line-height: 1.8;
}

.offset-custom-card .category-btn {
    width: fit-content;
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.offset-custom-card .category-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}


/* ======================================================
   BENEFITS
====================================================== */

.offset-benefits {
    padding: 120px 0;
}

.offset-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 55px;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
}

.offset-benefit {
    padding: 40px 30px;
    border-right: 1px solid #e4e7ec;
}

.offset-benefit:last-child {
    border-right: 0;
}

.offset-benefit>span {
    color: #98a2b3;
    font-family: var(--font-accent);
    font-size: .6rem;
}

.offset-benefit>i {
    display: block;
    margin: 25px 0 18px;
    color: var(--primary);
    font-size: 1.4rem;
}

.offset-benefit h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
}

.offset-benefit p {
    margin: 0;
    color: #667085;
    font-size: .74rem;
    line-height: 1.8;
}

/* ======================================================
   READY-MADE PACKAGING HERO
====================================================== */

.ready-packaging-hero {
    background:
        linear-gradient(90deg,
            rgba(10, 45, 70, .98) 0%,
            rgba(10, 45, 70, .88) 48%,
            rgba(10, 45, 70, .40) 100%),
        url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&w=900&q=85") center / cover no-repeat;
}


/* ======================================================
   PRODUCT SECTION
====================================================== */

.ready-packaging-products {
    padding: 120px 0;
    background: #f8fafc;
}


/* ======================================================
   FILTER
====================================================== */

.packaging-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e7ec;
}

.packaging-filter button {
    padding: 10px 18px;
    border: 1px solid #e4e7ec;
    border-radius: 100px;
    background: #fff;
    color: #667085;
    font-size: .68rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.packaging-filter button:hover,
.packaging-filter button.active {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* ======================================================
   PACKAGE CARD
====================================================== */

.ready-package-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    transition: .35s ease;
}

.ready-package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

.ready-package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.ready-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.ready-package-card:hover .ready-package-image img {
    transform: scale(1.05);
}


/* ======================================================
   AVAILABILITY
====================================================== */

.availability-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 10px;
    border-radius: 7px;
    background: var(--secondary);
    color: #fff;
    font-family: var(--font-accent);
    font-size: .5rem;
    letter-spacing: .08em;
}


/* ======================================================
   QUICK VIEW
====================================================== */

.quick-view-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--dark);
    cursor: pointer;
    transition: .3s;
}

.quick-view-btn:hover {
    background: var(--primary);
    color: #fff;
}


/* ======================================================
   PACKAGE BODY
====================================================== */

.ready-package-body {
    padding: 25px;
}

.ready-package-body h3 {
    margin: 8px 0 10px;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 800;
}

.ready-package-body p {
    min-height: 55px;
    margin-bottom: 20px;
    color: #667085;
    font-size: .75rem;
    line-height: 1.7;
}


/* ======================================================
   PRICE
====================================================== */

.package-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.package-price small {
    color: #98a2b3;
    font-size: .62rem;
}

.package-price strong {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 800;
}


/* ======================================================
   ORDER BUTTON
====================================================== */

.package-order-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: transparent;
    color: var(--dark);
    font-size: .7rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.package-order-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* ======================================================
   CUSTOM PACKAGE CARD
====================================================== */

.ready-package-custom {
    height: 100%;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border: 1px solid var(--secondary);
    border-radius: 22px;
    background: var(--dark);
}

.custom-package-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 14px;
    background: rgba(246, 139, 0, .12);
    color: var(--primary);
    font-size: 1.35rem;
}

.ready-package-custom h3 {
    max-width: 330px;
    margin: 10px 0;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
}

.ready-package-custom p {
    max-width: 350px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
    line-height: 1.8;
}

.ready-package-custom .category-btn {
    width: fit-content;
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.ready-package-custom .category-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}


/* ======================================================
   HOW IT WORKS
====================================================== */

.ready-how-it-works {
    padding: 120px 0;
}

.ready-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 55px;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
}

.ready-process-item {
    position: relative;
    padding: 40px 30px;
    border-right: 1px solid #e4e7ec;
}

.ready-process-item:last-child {
    border-right: 0;
}

.ready-process-item>span {
    color: #98a2b3;
    font-family: var(--font-accent);
    font-size: .6rem;
}

.ready-process-item>i {
    display: block;
    margin: 25px 0 18px;
    color: var(--primary);
    font-size: 1.4rem;
}

.ready-process-item h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
}

.ready-process-item p {
    margin: 0;
    color: #667085;
    font-size: .74rem;
    line-height: 1.8;
}

/* ======================================================
   CONSULTATION HERO
====================================================== */

.consultation-hero {
    background:
        linear-gradient(90deg,
            rgba(10, 45, 70, .98) 0%,
            rgba(10, 45, 70, .88) 48%,
            rgba(10, 45, 70, .40) 100%),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}


/* ======================================================
   CONSULTATION PACKAGES
====================================================== */

.consultation-packages {
    padding: 120px 0;
    background: #f8fafc;
}

.consultation-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    transition: .35s ease;
}

.consultation-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

.consultation-card-featured {
    border-color: var(--secondary);
}

.featured-label {
    position: absolute;
    top: 0;
    right: 30px;
    padding: 8px 13px;
    border-radius: 0 0 8px 8px;
    background: var(--secondary);
    color: #fff;
    font-family: var(--font-accent);
    font-size: .5rem;
    letter-spacing: .08em;
}

.consultation-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.consultation-number {
    color: #98a2b3;
    font-family: var(--font-accent);
    font-size: .65rem;
}

.consultation-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(246, 139, 0, .1);
    color: var(--primary);
    font-size: 1.25rem;
}

.consultation-card h3 {
    margin: 10px 0 12px;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.consultation-card>p {
    min-height: 85px;
    color: #667085;
    font-size: .75rem;
    line-height: 1.8;
}

.consultation-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 25px 0 15px;
    color: #667085;
    font-size: .68rem;
}

.consultation-duration i {
    color: var(--secondary);
}

.consultation-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 25px;
}

.consultation-price small {
    color: #98a2b3;
    font-size: .62rem;
}

.consultation-price strong {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 800;
}

.consultation-book-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 17px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: transparent;
    color: var(--dark);
    font-size: .7rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.consultation-book-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* ======================================================
   CONSULTATION FORMAT
====================================================== */

.consultation-format {
    padding: 120px 0;
}

.format-card {
    height: 100%;
    display: flex;
    gap: 25px;
    padding: 35px;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    background: #fff;
}

.format-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--dark);
    color: var(--primary);
    font-size: 1.3rem;
}

.format-card span {
    color: var(--secondary);
    font-family: var(--font-accent);
    font-size: .55rem;
    letter-spacing: .08em;
}

.format-card h3 {
    margin: 8px 0 12px;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.format-card p {
    color: #667085;
    font-size: .75rem;
    line-height: 1.8;
}

.format-card ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.format-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #667085;
    font-size: .68rem;
}

.format-card li i {
    color: var(--secondary);
}


/* ======================================================
   TOPICS
====================================================== */

.consultation-topics {
    padding: 120px 0;
    background: #f8fafc;
}

.consultation-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 55px;
    border-top: 1px solid #e4e7ec;
    border-left: 1px solid #e4e7ec;
}

.topic-item {
    padding: 35px;
    border-right: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
    background: #fff;
    transition: .3s;
}

.topic-item:hover {
    background: #fffdf8;
}

.topic-item i {
    color: var(--primary);
    font-size: 1.3rem;
}

.topic-item h3 {
    margin: 20px 0 10px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
}

.topic-item p {
    margin: 0;
    color: #667085;
    font-size: .72rem;
    line-height: 1.8;
}


/* ======================================================
   MODAL SUMMARY
====================================================== */

.selected-consultation-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    overflow: hidden;
}

.selected-consultation-summary>div {
    padding: 18px;
    border-right: 1px solid #e4e7ec;
}

.selected-consultation-summary>div:last-child {
    border-right: 0;
}

.selected-consultation-summary span {
    display: block;
    margin-bottom: 6px;
    color: #98a2b3;
    font-family: var(--font-accent);
    font-size: .5rem;
}

.selected-consultation-summary strong {
    color: var(--dark);
    font-size: .75rem;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {

    .service-listing-hero {
        min-height: 560px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-custom-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .offset-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offset-benefit:nth-child(2) {
        border-right: 0;
    }

    .offset-benefit:nth-child(-n+2) {
        border-bottom: 1px solid #e4e7ec;
    }

    .ready-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ready-process-item:nth-child(2) {
        border-right: 0;
    }

    .ready-process-item:nth-child(-n+2) {
        border-bottom: 1px solid #e4e7ec;
    }

    .consultation-topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .packaging-categories,
    .packaging-packages {
        padding: 80px 0;
    }

    .category-image {
        height: 220px;
    }

    .custom-category-content {
        min-height: 350px;
        padding: 30px;
    }

    .offset-products,
    .offset-benefits {
        padding: 80px 0;
    }

    .offset-benefit-grid {
        grid-template-columns: 1fr;
    }

    .offset-benefit {
        border-right: 0;
        border-bottom: 1px solid #e4e7ec;
    }

    .offset-benefit:last-child {
        border-bottom: 0;
    }

    .service-intro,
    .service-packages,
    .brand-applications,
    .service-process {
        padding: 80px 0;
    }

    .service-hero-content {
        padding: 80px 0;
    }

    .service-hero-content h1 {
        letter-spacing: -1.5px;
    }

    .service-intro-image {
        height: 380px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .service-custom-cta {
        padding: 70px 0;
    }

    .service-custom-cta-inner {
        padding: 35px 25px;
    }

    .ready-packaging-products,
    .ready-how-it-works {
        padding: 80px 0;
    }

    .packaging-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 15px;
    }

    .packaging-filter button {
        flex: 0 0 auto;
    }

    .ready-process-grid {
        grid-template-columns: 1fr;
    }

    .ready-process-item {
        border-right: 0;
        border-bottom: 1px solid #e4e7ec;
    }

    .ready-process-item:last-child {
        border-bottom: 0;
    }

    .consultation-packages,
    .consultation-format,
    .consultation-topics {
        padding: 80px 0;
    }

    .consultation-topic-grid {
        grid-template-columns: 1fr;
    }

    .format-card {
        flex-direction: column;
    }

    .selected-consultation-summary {
        grid-template-columns: 1fr;
    }

    .selected-consultation-summary>div {
        border-right: 0;
        border-bottom: 1px solid #e4e7ec;
    }

    .selected-consultation-summary>div:last-child {
        border-bottom: 0;
    }

}


@media (max-width: 480px) {

    .service-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        justify-content: center;
    }

}