/* DreamGrow service page styles
 * DG_SERVICE_CSS: 2026-09-24-v40
 * Loaded by front/service.blade.php — do not rely on inline <style> (can be missing on Hostinger).
 */


/* ===== SHARED ABOUT-HERO (service pages use this hero) ===== */
/* =========================================
   ABOUT HERO
========================================= */

.about-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    width: 100%;
    max-width: 100%;

    background:
        radial-gradient(
            circle at 82% 48%,
            rgba(218, 169, 67, 0.20) 0%,
            rgba(218, 169, 67, 0.08) 28%,
            transparent 58%
        ),
        linear-gradient(
            110deg,
            #fffdf8 0%,
            #fcf7ed 45%,
            #f6ead3 75%,
            #ead6aa 100%
        );
}


/* Background glow */

.about-hero-bg-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -220px;
    top: 20px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(216, 165, 62, 0.22) 0%,
            rgba(216, 165, 62, 0.08) 38%,
            transparent 70%
        );

    filter: blur(12px);

    pointer-events: none;
}


/* Subtle grid */

.about-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(150, 120, 65, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(150, 120, 65, 0.045) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65),
        transparent 82%
    );

    pointer-events: none;
}


/* =========================================
   HERO CONTAINER
========================================= */

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    min-height: 620px;
    margin: 0 auto;
    padding: 140px 30px 55px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-hero-content {
    position: relative;
    z-index: 5;

    max-width: 600px;

    padding-top: 20px;
}


/* Small title */

.about-hero-eyebrow {
    display: inline-flex;

    align-items: center;

    margin: 0 0 22px;

    padding: 8px 18px;

    border: 1px solid rgba(190, 140, 45, 0.38);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.40);

    color: #b47d20;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}


/* Main title */

.about-hero-title {
    margin: 0 0 24px;

    max-width: 590px;

    color: #2d1b0e;

    /*
       Important:
       Font-family intentionally NOT defined.
       Existing website font will continue.
    */

    font-size: clamp(46px, 4.5vw, 68px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -1.2px;
}


/* Description */

.about-hero-description {
    max-width: 500px;

    margin-bottom: 30px;

    color: #705b43;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   BUTTONS
========================================= */

.about-hero-buttons {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;
}


.about-hero-btn {
    min-height: 48px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.about-hero-btn.primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #c8871d,
            #e5ae45
        );

    box-shadow:
        0 10px 25px rgba(180, 125, 30, 0.20);
}


.about-hero-btn.primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(180, 125, 30, 0.28);
}


.about-hero-btn.secondary {
    color: #60492d;

    border: 1px solid rgba(170, 130, 70, 0.45);

    background: rgba(255, 255, 255, 0.45);
}


.about-hero-btn.secondary:hover {
    background: #fff;

    transform: translateY(-2px);
}


/* =========================================
   RIGHT IMAGE
========================================= */

.about-hero-visual {
    position: relative;
    min-height: 420px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual-glow {
    position: absolute;
    width: min(480px, 100%);
    height: min(480px, 100%);
    right: 0;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(216, 165, 62, 0.25) 0%,
            rgba(216, 165, 62, 0.08) 40%,
            transparent 72%
        );
    filter: blur(8px);
    pointer-events: none;
}

/* Keep hero image inside column — fixed 690px was overflowing / looking disturbed */
.about-hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 22px 35px rgba(100, 70, 25, 0.10));
    mix-blend-mode: multiply;
}


/* =========================================
   BOTTOM FADE
========================================= */

.about-hero-bottom-fade {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 55px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.75)
        );

    pointer-events: none;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .about-hero-container {
        max-width: 1350px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    }

    .about-hero-title {
        font-size: 70px;
    }

    .about-hero-image {
        max-width: 620px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .about-hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        padding-left: 35px;
        padding-right: 20px;
    }

    .about-hero-title {
        font-size: 54px;
    }

    .about-hero-image {
        max-width: 480px;
    }
}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 991px) {

    .about-hero-section {
        min-height: auto;
    }

    .about-hero-container {

        min-height: auto;

        display: block;

        padding:
            115px
            25px
            55px;
    }


    .about-hero-content {

        max-width: 700px;

        padding-top: 10px;

        margin: 0 auto;
    }


    .about-hero-title {

        max-width: 650px;

        font-size: 48px;

        line-height: 1.08;
    }


    .about-hero-description {

        max-width: 600px;

        font-size: 14px;
    }


    /*
       IMAGE HIDDEN ON MOBILE/TABLET
    */

    .about-hero-visual {
        display: none;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .about-hero-container {

        padding:
            105px
            20px
            45px;
    }


    .about-hero-eyebrow {

        margin-bottom: 17px;

        padding: 7px 14px;

        font-size: 9px;

        letter-spacing: 1.8px;
    }


    .about-hero-title {

        max-width: 100%;

        margin-bottom: 20px;

        font-size: 38px;

        line-height: 1.08;

        letter-spacing: -0.7px;
    }


    .about-hero-description {

        max-width: 100%;

        margin-bottom: 25px;

        font-size: 13px;

        line-height: 1.7;
    }


    .about-hero-buttons {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }


    .about-hero-btn {

        width: 100%;
    }
}

/* ===== ABOUT PAGE STABILITY ===== */
.about-hero-section,
.about-hero-section *,
.about-section-h2,
.about-section-h2 .title,
.about-section-h2 .sub-title,
.about-section-h2 .text,
.faq-section .title,
.faq-section .sub-title,
.contact-section-h2 .title,
.news-section-h2 .title {
    opacity: 1 !important;
    visibility: visible !important;
}
.about-section-h2 {
    overflow: hidden;
}
.about-section-h2 .image-column .inner-column {
    overflow: hidden;
}
.about-section-h2 .image-column .inner-column .icon {
    left: 0 !important;
    bottom: -40px !important;
    max-width: 120px;
}
.about-section-h2 .image-column .inner-column .icon img {
    max-width: 100%;
    height: auto;
}

/* ===== SECTION WRAPPER ===== */

/* ===== PREMIUM SERVICE SECTIONS ===== */
/* =========================================================
   ROOT
========================================================= */

:root {

    --p-purple: #120b20;
    --p-purple-2: #1d1230;
    --p-purple-3: #5d3d86;

    --p-gold: #ffab18;
    --p-gold-light: #ffd477;

    --p-white: #ffffff;
    --p-cream: #fffaf2;

    --p-text: #5d5665;
    --p-text-dark: #3e3747;
    --p-dark-text: #171126;

    --p-light-text: #aaa1b3;

    --p-border: #e5dfe7;

}



/* =========================================================
   GLOBAL
========================================================= */

.premium-service-hero,
.premium-about,
.premium-services,
.premium-benefits,
.premium-process,
.premium-faq {

    position: relative;
    overflow: hidden;

}


.premium-container {

    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    padding-left: 35px;
    padding-right: 35px;

}


.premium-service-hero img,
.premium-about img,
.premium-services img,
.premium-benefits img,
.premium-process img,
.premium-faq img {

    max-width: 100%;

}



/* =========================================================
   HERO
========================================================= */

.premium-service-hero {

    min-height: 820px;

    display: flex;
    align-items: center;

    padding: 135px 0 80px;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(255,171,24,.12),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fffdf9 52%,
            #f7f1fb 100%
        );

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .42;

    background-image:
        linear-gradient(
            rgba(18,11,32,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18,11,32,.045) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 95%
    );

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.hero-glow-1 {

    width: 600px;
    height: 600px;

    right: -280px;
    top: -220px;

    background: rgba(255,171,24,.10);

}


.hero-glow-2 {

    width: 500px;
    height: 500px;

    left: -300px;
    bottom: -300px;

    background: rgba(93,61,134,.08);

}


.hero-circle {

    position: absolute;

    border: 1px solid rgba(255,171,24,.30);

    border-radius: 50%;

}


.hero-circle-1 {

    width: 180px;
    height: 180px;

    right: 30px;
    top: 55px;

}


.hero-circle-2 {

    width: 105px;
    height: 105px;

    right: 75px;
    top: 92px;

}



/* =========================================================
   HERO LAYOUT
========================================================= */

.hero-layout {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, .98fr);

    gap: 75px;

    align-items: center;

}


.hero-content {

    max-width: 680px;

}


.premium-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding: 9px 16px;

    border: 1px solid rgba(255,171,24,.42);

    border-radius: 50px;

    color: var(--p-purple);

    background: rgba(255,255,255,.86);

    box-shadow:
        0 8px 30px rgba(18,11,32,.04);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


.eyebrow-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--p-gold);

    box-shadow:
        0 0 0 5px rgba(255,171,24,.12);

}


.hero-title {

    margin: 24px 0 22px;

    max-width: 670px;

    color: var(--p-purple);

    font-size: clamp(42px, 4.7vw, 64px);

    line-height: 1.06;

    letter-spacing: -2.5px;

    font-weight: 900;
    font-size:40px;

}


.hero-description {

    max-width: 610px;

    color: #514a59;

    font-size: 15px;

    line-height: 1.8;

}


.hero-description p {

    margin: 0 0 10px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.premium-btn {

    min-height: 52px;

    padding: 0 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 6px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .65px;

    text-transform: uppercase;

    transition: all .35s ease;

}


.premium-btn-primary {

    color: var(--p-purple);

    background: var(--p-gold);

    border: 1px solid var(--p-gold);

    box-shadow:
        0 12px 30px rgba(255,171,24,.23);

}


.premium-btn-primary:hover {

    color: #fff;

    background: var(--p-purple);

    border-color: var(--p-purple);

    transform: translateY(-3px);

}


.premium-btn-secondary {

    color: var(--p-purple);

    background: rgba(255,255,255,.80);

    border: 1px solid rgba(18,11,32,.17);

}


.premium-btn-secondary:hover {

    color: var(--p-purple);

    background: #fff;

    border-color: var(--p-gold);

    transform: translateY(-3px);

}


.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 38px;

    padding-top: 21px;

    border-top: 1px solid rgba(18,11,32,.10);

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

}


.trust-item strong {

    color: var(--p-gold);

    font-size: 11px;

}


.trust-item span {

    color: #5f5867;

    font-size: 10px;

    font-weight: 700;

}



/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 600px;

}


.hero-main-image {

    position: absolute;

    top: 0;
    right: 0;

    width: 78%;
    height: 520px;

    overflow: hidden;

    border-radius: 20px;

    background: #eee;

    box-shadow:
        0 30px 75px rgba(25,15,40,.17);

}


.hero-main-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;

}


.hero-visual:hover .hero-main-image img {

    transform: scale(1.035);

}


.hero-small-image {

    position: absolute;

    left: 0;
    bottom: 5px;

    width: 43%;
    height: 215px;

    padding: 8px;

    background: #fff;

    border-radius: 15px;

    box-shadow:
        0 22px 50px rgba(25,15,40,.17);

    z-index: 4;

}


.hero-small-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 9px;

}


.hero-floating-card {

    position: absolute;

    right: -15px;
    bottom: 100px;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    color: #fff;

    background: var(--p-purple);

    border-radius: 9px;

    box-shadow:
        0 18px 45px rgba(18,11,32,.23);

    animation: floatingCard 4s ease-in-out infinite;

}


@keyframes floatingCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


.floating-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--p-purple);

    background: var(--p-gold);

    border-radius: 7px;

}


.hero-floating-card small {

    display: block;

    color: #c2b8cb;

    font-size: 8px;

    letter-spacing: 1.1px;

}


.hero-floating-card strong {

    display: block;

    margin-top: 3px;

    font-size: 11px;

}


.hero-orbit {

    position: absolute;

    border: 1px solid rgba(255,171,24,.30);

    border-radius: 50%;

    pointer-events: none;

}


.hero-orbit-1 {

    width: 115px;
    height: 115px;

    left: -20px;
    top: -45px;

}


.hero-orbit-2 {

    width: 185px;
    height: 185px;

    left: -55px;
    top: -80px;

}


.hero-number {

    position: absolute;

    right: 8%;
    top: -25px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    z-index: 7;

}


.hero-number strong {

    color: var(--p-gold);

    font-size: 48px;

    line-height: .9;

    font-weight: 900;

    letter-spacing: -3px;

}


.hero-number span {

    margin-top: 8px;

    color: #625a69;

    font-size: 7px;

    line-height: 1.5;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-align: right;

}



/* =========================================================
   COMMON TITLES
========================================================= */

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #e99a00;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: 1.35px;

    text-transform: uppercase;

}


.section-label > span {

    width: 27px;
    height: 2px;

    background: var(--p-gold);

}


.section-label-light {

    color: #b87900 !important;

}


.section-label-light > span {

    background: var(--p-gold);

}


.section-title {

    margin: 0;

    color: var(--p-purple);

    font-size: clamp(34px, 3.5vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.7px;

    font-weight: 900;
    font-size :40px;

}


.section-title span {

    display: inline;

    color: #e79b0c;

}



/* =========================================================
   ABOUT
========================================================= */

.premium-about {

    padding: 115px 0;

    background: #fff;

}


.about-bg-circle {

    position: absolute;

    width: 500px;
    height: 500px;

    left: -300px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(93,61,134,.045);

}


.about-layout {

    display: grid;

    grid-template-columns: .92fr 1.08fr;

    gap: 85px;

    align-items: center;

}


.about-visual {

    position: relative;

    min-height: 570px;

}


.about-image {

    width: 88%;
    height: 535px;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 27px 65px rgba(25,15,40,.13);

}


.about-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;

}


.about-visual:hover .about-image img {

    transform: scale(1.035);

}


.about-image-decoration {

    position: absolute;

    width: 165px;
    height: 165px;

    right: 0;
    top: 10px;

    border: 1px solid rgba(255,171,24,.45);

    border-radius: 50%;

}


.about-badge {

    position: absolute;

    right: 0;
    bottom: 70px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    color: #fff;

    background: var(--p-purple);

    border-radius: 10px;

    box-shadow:
        0 18px 45px rgba(18,11,32,.21);

}


.about-badge-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--p-purple);

    background: var(--p-gold);

    border-radius: 7px;

}


.about-badge small {

    display: block;

    color: #bdb3c6;

    font-size: 8px;

    letter-spacing: 1px;

}


.about-badge strong {

    display: block;

    margin-top: 3px;

    font-size: 11px;

}


.about-big-number {

    position: absolute;

    left: -5px;
    bottom: -5px;

    color: #eee7f2;

    font-size: 95px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -7px;

}


.about-content {

    max-width: 700px;

}


.section-description {

    margin-top: 22px;

    color: #504958;

    font-size: 14px;

    line-height: 1.85;

}


.section-description p {

    margin-bottom: 11px;

}



/* =========================================================
   ABOUT INFO
========================================================= */

.about-info-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 16px;

    margin-top: 29px;

}


.about-info-card {

    min-height: 88px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px;

    background: #fcf9fd;

    border: 1px solid #e9e1ed;

    border-radius: 11px;

    transition: .35s ease;

}


.about-info-card:hover {

    transform: translateY(-4px);

    border-color: var(--p-gold);

    box-shadow:
        0 13px 30px rgba(18,11,32,.07);

}


.info-icon {

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--p-purple);

    background: #fff0d2;

    border-radius: 8px;

    font-size: 17px;

}


.about-info-card strong {

    display: block;

    color: var(--p-purple);

    font-size: 12px;

    line-height: 1.4;

}


.about-info-card span {

    display: block;

    margin-top: 5px;

    color: #665f6d;

    font-size: 10px;

    line-height: 1.5;

}



/* =========================================================
   COUNTER
========================================================= */

.about-counter {

    display: flex;

    align-items: center;

    gap: 21px;

    margin-top: 28px;

    padding-top: 24px;

    border-top: 1px solid #e9e1ed;

}


.counter-number {

    color: var(--p-purple);

    font-size: 55px;

    line-height: .9;

    font-weight: 900;

    letter-spacing: -3px;

}


.counter-number b {

    color: var(--p-gold);

}


.counter-content strong {

    display: block;

    color: var(--p-purple);

    font-size: 12px;

}


.counter-content span {

    display: block;

    max-width: 330px;

    margin-top: 5px;

    color: #665f6d;

    font-size: 10px;

    line-height: 1.6;

}


.text-action {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 29px;

    padding-bottom: 8px;

    color: var(--p-purple);

    border-bottom: 1px solid var(--p-gold);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .75px;

    text-transform: uppercase;

}


.text-action i {

    color: var(--p-gold);

    transition: .3s;

}


.text-action:hover i {

    transform: translateX(6px);

}



/* =========================================================
   SERVICES - LIGHT GOLDEN
========================================================= */

.premium-services {

    padding: 115px 0;

    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(255,193,71,.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 90%,
            rgba(255,171,24,.10),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #fffaf0 0%,
            #fff4d9 52%,
            #fffaf2 100%
        );

}


.dark-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.dark-glow-1 {

    width: 480px;
    height: 480px;

    right: -260px;
    top: -180px;

    border: 1px solid rgba(255,171,24,.18);

}


.dark-glow-2 {

    width: 350px;
    height: 350px;

    left: -200px;
    bottom: -180px;

    background: rgba(255,171,24,.07);

}


.dark-circle {

    position: absolute;

    width: 170px;
    height: 170px;

    right: 5%;
    bottom: 10%;

    border: 1px solid rgba(255,171,24,.14);

    border-radius: 50%;

}



/* =========================================================
   SERVICES HEADER
========================================================= */

.services-header {

    display: grid;

    grid-template-columns: 1fr .55fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 55px;

}


.services-header .section-label {

    color: #b87900 !important;

}


.services-header .section-label > span {

    background: var(--p-gold);

}


.services-header .section-title-light {

    color: var(--p-purple);

    text-shadow: none;

}


.services-header .section-title-light span {

    color: #d98b00;

}


.services-intro {

    display: flex;

    gap: 17px;

}


.services-intro strong {

    color: #d98b00;

    font-size: 13px;

}


.services-intro p {

    margin: 0;

    color: #5d5665;

    font-size: 13px;

    line-height: 1.8;

}



/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    position: relative;

    z-index: 2;

}



/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

    position: relative;

    min-height: 335px;

    padding: 25px;

    overflow: hidden;

    background: rgba(255,255,255,.78);

    border: 1px solid rgba(201,158,74,.28);

    border-radius: 15px;

    box-shadow:
        0 12px 35px rgba(91,66,24,.06);

    transition:
        transform .4s ease,
        background .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

}


/* Remove old decorative circle */

.service-card::before {

    display: none;

}


/* TOP */

.service-card-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.service-card-top > span {

    color: #b99b63;

    font-size: 11px;

    font-weight: 800;

}


.service-card-top i {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #b87900;

    background: rgba(255,171,24,.10);

    border: 1px solid rgba(255,171,24,.35);

    border-radius: 50%;

    font-size: 10px;

    transition: .35s ease;

}



/* =========================================================
   SERVICE TITLE
========================================================= */

.service-card h3 {

    position: relative;

    z-index: 2;

    margin: 28px 0 13px;

    max-width: 100%;

    color: var(--p-purple);

    font-size: 19px;

    line-height: 1.35;

    font-weight: 800;

}



/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.service-description {

    position: relative;

    z-index: 2;

    max-width: 100%;

    color: #5d5665;

    font-size: 12px;

    line-height: 1.8;

}


.service-description p {

    margin: 0 0 8px;

}


.service-description p:last-child {

    margin-bottom: 0;

}



/* =========================================================
   SERVICE BOTTOM
========================================================= */

.service-bottom {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 14px;

    color: #8b6b2e;

    border-top: 1px solid rgba(91,66,24,.13);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .9px;

    text-transform: uppercase;

    transition: .35s ease;

}


.service-bottom i {

    transition: .35s ease;

}



/* =========================================================
   SERVICE HOVER
========================================================= */

.service-card:hover {

    transform: translateY(-9px);

    background:
        linear-gradient(
            145deg,
            #ffb52b,
            #ffd477
        );

    border-color: #ffab18;

    box-shadow:
        0 25px 55px rgba(151,104,16,.18);

}


.service-card:hover .service-card-top > span {

    color: #4b350d;

}


.service-card:hover .service-description {

    color: #3b2b0c;

}


.service-card:hover h3 {

    color: #171126;

}


.service-card:hover .service-bottom {

    color: #3b2b0c;

    border-color: rgba(23,17,38,.18);

}


.service-card:hover .service-card-top i {

    color: #171126;

    background: rgba(255,255,255,.35);

    border-color: rgba(23,17,38,.25);

    transform: rotate(45deg);

}


.service-card:hover .service-bottom i {

    color: #171126;

    transform: translateX(5px);

}



/* =========================================================
   BENEFITS
========================================================= */

.premium-benefits {

    padding: 115px 0;

    background:
        linear-gradient(
            180deg,
            #fffaf2,
            #fff
        );

}


.benefits-glow {

    position: absolute;

    width: 400px;
    height: 400px;

    right: -250px;
    top: -200px;

    border: 1px solid rgba(255,171,24,.18);

    border-radius: 50%;

}


.benefits-header {

    display: grid;

    grid-template-columns: 1fr .48fr;

    gap: 65px;

    align-items: end;

    margin-bottom: 55px;

}


.benefits-intro {

    display: flex;

    gap: 17px;

}


.benefits-intro strong {

    color: #e99a00;

    font-size: 13px;

}


.benefits-intro p {

    margin: 0;

    color: #504958;

    font-size: 13px;

    line-height: 1.8;

}


.benefits-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

}


.benefit-card {

    position: relative;

    min-height: 280px;

    padding: 27px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e6ded3;

    border-radius: 15px;

    transition: .4s ease;

}


.benefit-card:hover {

    transform: translateY(-8px);

    border-color: var(--p-gold);

    box-shadow:
        0 22px 50px rgba(18,11,32,.10);

}


.benefit-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.benefit-icon {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--p-purple);

    background: #fff0d2;

    border-radius: 9px;

    font-size: 18px;

}


.benefit-top > span {

    color: #ddd4c8;

    font-size: 29px;

    font-weight: 900;

}


.benefit-card h3 {

    position: relative;

    z-index: 2;

    margin: 29px 0 14px;

    color: var(--p-purple);

    font-size: 19px;

    line-height: 1.3;

    font-weight: 800;

}


.benefit-line {

    position: relative;

    z-index: 2;

    width: 36px;
    height: 3px;

    margin-bottom: 15px;

    background: var(--p-gold);

}


.benefit-description {

    position: relative;

    z-index: 2;

    color: #514a59;

    font-size: 12px;

    line-height: 1.8;

}


.benefit-hover-circle {

    position: absolute;

    width: 170px;
    height: 170px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(255,171,24,.08);

    transition: .5s ease;

}


.benefit-card:hover .benefit-hover-circle {

    transform: scale(1.7);

}



/* =========================================================
   PROCESS
========================================================= */

.premium-process {

    padding: 115px 0;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(117,76,164,.27),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(255,171,24,.09),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #0d0817,
            #1a1028,
            #0b0712
        );

}


.process-glow {

    position: absolute;

    border-radius: 50%;

}


.process-glow-1 {

    width: 500px;
    height: 500px;

    left: -350px;
    top: 20%;

    border: 1px solid rgba(255,171,24,.10);

}


.process-glow-2 {

    width: 350px;
    height: 350px;

    right: -220px;
    bottom: -180px;

    background: rgba(93,61,134,.10);

}


.process-header {

    max-width: 750px;

    margin-bottom: 75px;

}


.process-header .section-title-light {

    color: #fff;

}


.process-header .section-title-light span {

    color: #ffb52c;

}


.process-header p {

    max-width: 650px;

    margin: 20px 0 0;

    color: #d3cadc;

    font-size: 13px;

    line-height: 1.8;

}


.process-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 40px;

}


.process-item {

    position: relative;

    text-align: center;

}


.process-connector {

    position: absolute;

    top: 92px;

    left: calc(50% + 92px);

    width: calc(100% - 90px);

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,171,24,.65),
            rgba(255,255,255,.16)
        );

}


.process-connector::after {

    content: "";

    position: absolute;

    right: 0;
    top: -2px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--p-gold);

}


.process-circle {

    position: relative;

    width: 180px;
    height: 180px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px dashed rgba(255,255,255,.28);

    border-radius: 50%;

    transition: .45s ease;

}


.process-circle::before {

    content: "";

    position: absolute;

    inset: 18px;

    border: 1px dashed rgba(255,171,24,.42);

    border-radius: 50%;

}


.process-circle::after {

    content: "";

    position: absolute;

    inset: -10px;

    border: 1px solid rgba(255,171,24,.07);

    border-radius: 50%;

}


.process-inner-circle {

    position: relative;

    z-index: 2;

    width: 102px;
    height: 102px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.025);

}


.process-inner-circle i {

    color: #ffbd43;

    font-size: 34px;

    transition: .4s;

}


.process-number {

    position: absolute;

    left: 5px;
    top: 8px;

    z-index: 5;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--p-purple);

    background: var(--p-gold);

    border-radius: 50%;

    font-size: 10px;

    font-weight: 900;

    box-shadow:
        0 8px 20px rgba(255,171,24,.20);

}


.process-item:hover .process-circle {

    transform: translateY(-8px) scale(1.025);

    border-color: var(--p-gold);

    background: rgba(255,171,24,.04);

}


.process-item:hover .process-inner-circle i {

    transform: scale(1.15);

}


.process-item h3 {

    position: relative;

    margin: 28px 0 12px;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 800;

}


.process-description {

    max-width: 250px;

    margin: auto;

    color: #c9c0d0;

    font-size: 11px;

    line-height: 1.8;

}



/* =========================================================
   FAQ
========================================================= */

.premium-faq {

    padding: 115px 0;

    background: #fff;

}


.faq-circle-bg {

    position: absolute;

    width: 550px;
    height: 550px;

    right: -300px;
    top: -250px;

    border: 1px solid rgba(255,171,24,.18);

    border-radius: 50%;

}


.faq-layout {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 85px;

    align-items: center;

}


.faq-content {

    max-width: 700px;

}


.faq-intro {

    margin: 21px 0 35px;

    color: #514a59;

    font-size: 13px;

    line-height: 1.8;

}


.faq-accordion {

    border-top: 1px solid #e5dfe7;

}


.faq-item {

    border-bottom: 1px solid #e5dfe7;

}


.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 21px 0;

    color: var(--p-purple);

    background: transparent;

    border: 0;

    text-align: left;

    cursor: pointer;

    font-size: 13px;

    line-height: 1.5;

    font-weight: 800;

}


.faq-question i {

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--p-purple);

    background: #fff1d5;

    border-radius: 50%;

    font-size: 9px;

    transition: .35s;

}


.faq-item.active .faq-question i {

    background: var(--p-gold);

    transform: rotate(45deg);

}


.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    overflow: hidden;

    transition: .4s ease;

}


.faq-answer > div {

    min-height: 0;

    color: #514a59;

    font-size: 12px;

    line-height: 1.8;

}


.faq-item.active .faq-answer {

    grid-template-rows: 1fr;

}


.faq-item.active .faq-answer > div {

    padding-bottom: 21px;

}



/* =========================================================
   FAQ VISUAL
========================================================= */

.faq-visual {

    position: relative;

    min-height: 540px;

}


.faq-image {

    width: 83%;

    height: 500px;

    margin-left: auto;

    overflow: hidden;

    border-radius: 20px;

    background: #f7f2f8;

    box-shadow:
        0 28px 65px rgba(18,11,32,.10);

}


.faq-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

}


.faq-location-card {

    position: absolute;

    left: 0;
    bottom: 60px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    color: #fff;

    background: var(--p-purple);

    border-radius: 9px;

    box-shadow:
        0 18px 45px rgba(18,11,32,.20);

}


.faq-location-icon {

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--p-purple);

    background: var(--p-gold);

    border-radius: 7px;

}


.faq-location-card small {

    display: block;

    color: #bdb3c6;

    font-size: 7px;

    letter-spacing: 1.1px;

}


.faq-location-card strong {

    display: block;

    margin-top: 3px;

    color: #fff;

    font-size: 11px;

}


.faq-stamp {

    position: absolute;

    right: 0;
    top: 20px;

    width: 100px;
    height: 100px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: var(--p-purple);

    background: var(--p-gold);

    border-radius: 50%;

    transform: rotate(9deg);

    z-index: 5;

    box-shadow:
        0 15px 35px rgba(255,171,24,.20);

}


.faq-stamp strong {

    font-size: 22px;

    font-weight: 900;

}


.faq-stamp span {

    margin-top: 3px;

    font-size: 7px;

    line-height: 1.35;

    font-weight: 900;

    letter-spacing: 1px;

    text-align: center;

}



/* =========================================================
   EMPTY
========================================================= */

.empty-section {

    padding: 30px;

    color: var(--p-purple);

    text-align: center;

}


.empty-dark {

    grid-column: 1 / -1;

    color: #8b7c60;

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .premium-container {

        padding-left: 25px;

        padding-right: 25px;

    }


    .hero-layout {

        gap: 50px;

    }


    .about-layout,
    .faq-layout {

        gap: 55px;

    }


    .process-grid {

        gap: 25px;

    }


    .process-connector {

        width: calc(100% - 70px);

    }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .premium-service-hero {

        padding-top: 120px;

    }


    .hero-layout,
    .about-layout,
    .faq-layout {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .hero-content {

        max-width: 800px;

    }


    .hero-visual {

        max-width: 720px;

        width: 100%;

        margin: auto;

    }


    .about-visual {

        max-width: 680px;

        width: 100%;

        margin: auto;

    }


    .about-content {

        max-width: 800px;

    }


    .faq-visual {

        max-width: 680px;

        width: 100%;

        margin: auto;

    }


    .services-header,
    .benefits-header {

        grid-template-columns: 1fr;

        gap: 22px;

    }


    .services-grid,
    .benefits-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .process-grid {

        grid-template-columns: repeat(2,1fr);

        row-gap: 70px;

    }


    .process-connector {

        display: none;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .premium-container {

        padding-left: 17px;

        padding-right: 17px;

    }


    .premium-service-hero {

        min-height: auto;

        padding: 105px 0 65px;

    }


    .hero-title {

        margin-top: 20px;

        font-size: 40px;

        letter-spacing: -1.8px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .premium-btn {

        width: 100%;

    }


    .hero-trust {

        gap: 13px;

    }


    .trust-item {

        width: 100%;

    }


    .hero-visual {

        min-height: 440px;

    }


    .hero-main-image {

        width: 84%;

        height: 390px;

    }


    .hero-small-image {

        width: 48%;

        height: 165px;

    }


    .hero-floating-card {

        right: 0;

        bottom: 48px;

    }


    .hero-number {

        right: 3%;

        top: -15px;

    }


    .hero-number strong {

        font-size: 39px;

    }


    .premium-about,
    .premium-services,
    .premium-benefits,
    .premium-process,
    .premium-faq {

        padding: 80px 0;

    }


    .section-title {

        font-size: 35px;

        letter-spacing: -1.2px;

    }


    .about-info-grid {

        grid-template-columns: 1fr;

    }


    .about-visual {

        min-height: 440px;

    }


    .about-image {

        width: 90%;

        height: 410px;

    }


    .about-badge {

        bottom: 42px;

    }


    .services-grid,
    .benefits-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 315px;

        padding: 23px;

    }


    .service-card h3 {

        margin-top: 24px;

        font-size: 18px;

    }


    .service-bottom {

        left: 23px;

        right: 23px;

        bottom: 20px;

    }


    .process-grid {

        grid-template-columns: 1fr;

        row-gap: 60px;

    }


    .process-circle {

        width: 160px;

        height: 160px;

    }


    .faq-visual {

        min-height: 440px;

    }


    .faq-image {

        width: 89%;

        height: 410px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .premium-service-hero {

        padding-top: 95px;

    }


    .hero-title {

        font-size: 34px;

        line-height: 1.07;

    }


    .hero-description {

        font-size: 13px;

        line-height: 1.75;

    }


    .hero-visual {

        min-height: 360px;

    }


    .hero-main-image {

        height: 320px;

    }


    .hero-small-image {

        height: 125px;

    }


    .hero-floating-card {

        padding: 9px 11px;

    }


    .floating-icon {

        width: 33px;

        height: 33px;

    }


    .hero-floating-card strong {

        font-size: 10px;

    }


    .hero-circle-1 {

        width: 120px;

        height: 120px;

        right: -25px;

    }


    .hero-circle-2 {

        width: 75px;

        height: 75px;

        right: 20px;

    }


    .section-title {

        font-size: 30px;

    }


    .about-image {

        width: 88%;

        height: 340px;

    }


    .about-visual {

        min-height: 380px;

    }


    .about-badge {

        padding: 10px;

    }


    .about-badge-icon {

        width: 33px;

        height: 33px;

    }


    .counter-number {

        font-size: 43px;

    }


    .service-card {

        padding: 23px;

    }


    .benefit-card {

        min-height: 260px;

    }


    .faq-image {

        height: 340px;

    }


    .faq-visual {

        min-height: 380px;

    }


    .faq-location-card {

        bottom: 32px;

    }


    .faq-stamp {

        width: 76px;

        height: 76px;

    }


    .faq-stamp strong {

        font-size: 16px;

    }

}



/* =========================================================
   ACCESSIBILITY
========================================================= */

button,
a {

    -webkit-tap-highlight-color: transparent;

}


a {

    text-decoration: none;

}



/* =========================================================
   EXTRA CONTRAST
========================================================= */

.premium-services p,
.premium-services .service-description {

    color: #5d5665;

}


.premium-process p,
.premium-process .process-description {

    color: #d5ccdc;

}


.premium-process .section-label {

    color: #ffbf45 !important;

}


.premium-process .section-label > span {

    background: var(--p-gold);

}


.premium-process .section-title-light {

    color: #ffffff;

}


.premium-process .section-title-light span {

    color: #ffb52c;

}



/* =========================================================
   SERVICES MOBILE FINAL FIX
========================================================= */

@media (max-width: 767px) {

    .services-header {

        margin-bottom: 38px;

    }


    .services-intro {

        align-items: flex-start;

    }


    .service-card {

        min-height: 315px;

    }


    .service-card h3 {

        max-width: 95%;

    }


    .service-description {

        max-width: 95%;

    }

}

/* ===== Service hero banner + layout stability ===== */
.about-hero-section.has-bg-banner {
  background-color: #fcf7ed;
}
.about-hero-section.has-bg-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,253,248,0.92) 0%, rgba(252,247,237,0.78) 48%, rgba(246,234,211,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-hero-section.has-bg-banner .about-hero-container {
  position: relative;
  z-index: 2;
}
.about-hero-section,
.about-hero-section .about-hero-title,
.about-hero-section .about-hero-description,
.about-hero-section .about-hero-image,
.premium-about,
.premium-about .section-title,
.premium-services,
.premium-benefits,
.premium-process,
.premium-faq {
  opacity: 1 !important;
  visibility: visible !important;
}
.premium-about,
.premium-services,
.premium-benefits,
.premium-process,
.premium-faq {
  overflow: hidden !important;
  max-width: 100% !important;
}
.about-hero-section {
  overflow: hidden !important;
  max-width: 100vw !important;
}
