*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #375147;
    --gold: #B7A979;
    --white: #fff;
    --black: #000;
    --green-dark: #2a3e37;
    --green-light: #4a6b5e;
    --gold-light: #cfc09e;
    --gold-dark: #9a8d63;
    --nav-radius: 60px;
    --transition-speed: 0.8s;
}

html,
body {
    height: 100%;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity var(--transition-speed) ease;
    will-change: opacity;
}

.hero-bg.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg.inactive {
    opacity: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .78) 100%);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .35) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, .35) 100%);
}

/* ── NAVBAR ── */
.navbar-wrap {
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar-pill {
    background: var(--white);
    backdrop-filter: blur(12px);
    padding: 10px 10px 10px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
    position: relative;
}

.brand img {
    width: 100px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 0;
}

.nav-links a {
    font-size: .875rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    letter-spacing: .2px;
    transition: color .25s;
}

.nav-links a:hover {
    color: var(--green);
}

/* ── HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background .2s;
    flex-shrink: 0;
}

.nav-hamburger:hover {
    background: rgba(55, 81, 71, .08);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.nav-mobile-drawer {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid rgba(183, 169, 121, .2);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
}

.nav-mobile-drawer.open {
    max-height: 400px;
    padding: 16px 0 20px;
}

.nav-mobile-drawer a {
    font-size: .93rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    padding: 12px 28px;
    transition: color .2s, background .2s;
    display: block;
    letter-spacing: .2px;
}

.nav-mobile-drawer a:hover {
    color: var(--green);
    background: rgba(55, 81, 71, .05);
}

.nav-mobile-drawer .btn-book-mobile {
    margin: 10px 28px 0;
    display: inline-block;
    background: var(--green);
    color: var(--white) !important;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: .88rem;
    font-weight: 500;
    text-align: center;
    border: 2px solid var(--gold);
    transition: background .25s;
}

.nav-mobile-drawer .btn-book-mobile:hover {
    background: var(--green-dark) !important;
}

@media (max-width: 767px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .btn-book {
        display: none !important;
    }

    .nav-mobile-drawer {
        display: flex;
    }

    .navbar-pill {
        flex-wrap: wrap;
    }
}

/* ── HERO CONTENT ── */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    gap: 0;
}

.hero-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 14px;
    animation: fadeDown .8s ease both;
}

.hero-tagline {
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
    animation: fadeDown .9s .1s ease both;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeDown 1s .2s ease both;
}

.hero-title strong {
    font-weight: 600;
}

.hero-sub {
    font-size: clamp(.85rem, 1.5vw, 1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, .80);
    max-width: 440px;
    line-height: 1.65;
    margin-bottom: 30px;
    animation: fadeDown 1s .3s ease both;
}

.btn-book {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    border-radius: 6px;
    padding: 13px 38px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .25s, transform .2s;
    animation: fadeDown 1s .4s ease both;
    margin-bottom: 36px;
    border: 2px solid var(--gold);
}

.btn-book:hover {
    background: var(--green-dark);
    transform: scale(1.04);
    color: var(--white);
}

.hero-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
    animation: fadeDown 1s .5s ease both;
}

.hero-socials svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: rgba(255, 255, 255, .8);
    stroke-width: 1.6;
    transition: stroke .2s;
    cursor: pointer;
}

.hero-socials svg:hover {
    stroke: var(--gold-light);
}

/* ── THUMBNAIL STRIP ── */
.thumb-strip {
    display: flex;
    gap: 12px;
    animation: fadeDown 1s .6s ease both;
}

.thumb-item {
    width: 100px;
    height: 68px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: border-color .35s, transform .35s, box-shadow .35s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
    flex-shrink: 0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.thumb-item:hover img {
    transform: scale(1.08);
}

.thumb-item.active {
    border-color: var(--gold-light);
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .45);
}

/* ── SIDE LABELS ── */
.side-label {
    position: absolute;
    z-index: 6;
    font-size: .75rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 300;
}

.side-label.left {
    bottom: 48px;
    left: 40px;
}

.side-label.right {
    bottom: 44px;
    right: 40px;
}

.scroll-btn {
    position: absolute;
    z-index: 6;
    bottom: 38px;
    right: 40px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .25s, background .25s;
}

.scroll-btn:hover {
    border-color: var(--gold-light);
    background: rgba(183, 169, 121, .15);
}

.scroll-btn svg {
    stroke: rgba(255, 255, 255, .75);
    stroke-width: 1.8;
    width: 16px;
    height: 16px;
    fill: none;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── ABOUT SECTION ── */
.about-section {
    background: var(--white);
    padding: 80px 0 72px;
    overflow: hidden;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-heading {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.22;
    margin-bottom: 12px;
    letter-spacing: -.2px;
}

.about-heading strong {
    font-weight: 700;
}

.about-sub {
    font-size: .92rem;
    color: #888;
    text-align: center;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: .1px;
}

.about-text {
    font-size: .93rem;
    color: #555;
    font-weight: 300;
    line-height: 1.8;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 52px;
}

/* ── Image trio ── */
.re-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    min-height: 360px;
}

.re-card {
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
    transition: transform .4s ease, box-shadow .4s ease;
}

.re-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.re-card:hover img {
    transform: scale(1.04);
}

.re-card-left {
    width: 280px;
    height: 260px;
    transform: translateX(-28px) translateY(90px);
    z-index: 1;
}

.re-card-center {
    width: 560px;
    height: 440px;
    z-index: 3;
    border-radius: 26px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .16);
}

.re-card-center:hover {
    transform: scale(1.02);
}

.re-card-right {
    width: 280px;
    height: 260px;
    transform: translateX(28px) translateY(-90px);
    z-index: 1;
}

.re-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 44px;
}

.re-tag {
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: .82rem;
    color: var(--green);
    font-weight: 400;
    letter-spacing: .2px;
    background: transparent;
    cursor: pointer;
    transition: border-color .25s, color .25s, background .25s;
}

.re-tag:hover {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
}

@media (max-width: 767px) {

    .re-card-left,
    .re-card-right {
        display: none;
    }

    .re-card-center {
        width: 90vw;
        height: 260px;
    }

    .re-gallery {
        min-height: auto;
    }
}

/* ── WHY CHOOSE US ── */
.wcu-section {
    background: #f4f4f0;
    padding: 80px 0 90px;
}

.wcu-badge {
    display: inline-block;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.wcu-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #111;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.3px;
}

.wcu-desc {
    font-size: .95rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 36px;
}

.wcu-card {
    background: var(--white);
    border-radius: 20px;
    padding: 26px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.wcu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
}

.wcu-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wcu-icon-wrap svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    stroke: none;
}

.wcu-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.wcu-card-text {
    font-size: .86rem;
    color: #777;
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}

.wcu-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .13);
}

.wcu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.wcu-img-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 50px;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.wcu-img-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── SERVICES SECTION ── */
.services-section {
    background: var(--white);
    padding: 80px 0 90px;
}

.services-pill {
    display: inline-block;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: .8rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 22px;
}

.services-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 14px;
}

.services-title strong {
    font-weight: 700;
}

.services-sub {
    font-size: .92rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 52px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
    border: 1px solid rgba(183, 169, 121, .2);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(55, 81, 71, .15);
}

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.04);
}

.service-img-wrap {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--white);
}

.service-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .25s, background .25s;
}

.service-card:hover .service-arrow {
    border-color: var(--green);
    background: var(--green);
}

.service-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .25s;
}

.service-card:hover .service-arrow svg {
    stroke: var(--white);
}

.service-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    letter-spacing: .1px;
}

.service-tag {
    font-size: .75rem;
    font-weight: 400;
    color: var(--green);
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 4px 13px;
    white-space: nowrap;
    background: rgba(183, 169, 121, .08);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-img {
        height: 200px;
    }
}

/* ── PARADISE / CTA ── */
.paradise-section {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paradise-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/img14.jpg') center/cover no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.paradise-section:hover .paradise-bg {
    transform: scale(1);
}

.paradise-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 15, .58);
}

.paradise-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.paradise-icon {
    margin-bottom: 18px;
    opacity: .85;
}

.paradise-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.paradise-label {
    font-size: .75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 300;
    margin-bottom: 16px;
}

.paradise-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -.2px;
}

.paradise-sub {
    font-size: clamp(.85rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, .72);
    font-weight: 300;
    line-height: 1.65;
    max-width: 400px;
    margin-bottom: 30px;
}

.btn-reserve {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    border-radius: 6px;
    padding: 13px 34px;
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .2px;
    transition: background .25s, transform .2s;
    margin-bottom: 30px;
    border: 2px solid var(--gold);
}

.btn-reserve:hover {
    background: var(--green-dark);
    transform: scale(1.04);
    color: var(--white);
}

.paradise-perks {
    font-size: .78rem;
    color: rgba(255, 255, 255, .52);
    font-weight: 300;
    letter-spacing: .4px;
}

.paradise-perks span {
    margin: 0 4px;
}

/* ── PROCESS ── */
.process-section {
    background: #f4f4f0;
    padding: 80px 0 90px;
}

.process-pill {
    display: inline-block;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: .8rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 20px;
}

.process-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.12;
    margin-bottom: 12px;
}

.process-title strong {
    font-weight: 700;
}

.process-sub {
    font-size: .92rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 52px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.process-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    min-height: 200px;
    border-bottom: 3px solid transparent;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(55, 81, 71, .12);
    border-bottom-color: var(--gold);
}

.process-card-icon {
    margin-bottom: 24px;
}

.process-card-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-card-text {
    font-size: .82rem;
    color: #888;
    font-weight: 300;
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.process-card-number {
    margin-top: 20px;
    font-size: .82rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: .5px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--white);
    padding: 80px 0 90px;
}

.testi-avatar-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 2.5px solid var(--gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.testi-avatar-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-pill {
    display: inline-block;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: .78rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 18px;
}

.testi-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.testi-title strong {
    font-weight: 700;
}

.testi-sub {
    font-size: .88rem;
    color: #999;
    font-weight: 300;
    margin-bottom: 44px;
}

.testi-wrap {
    background: linear-gradient(135deg, rgba(55, 81, 71, .08) 0%, rgba(183, 169, 121, .15) 100%);
    border-radius: 28px;
    padding: 32px 28px 28px;
    border: 1px solid rgba(183, 169, 121, .25);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testi-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(55, 81, 71, .12);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testi-stars svg {
    width: 15px;
    height: 15px;
    fill: var(--gold);
}

.testi-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.testi-card-text {
    font-size: .78rem;
    color: #777;
    font-weight: 300;
    line-height: 1.7;
    flex: 1;
    margin: 0 0 18px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.testi-author-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e0e0e0;
}

.testi-author-name {
    font-size: .82rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
}

.testi-author-role {
    font-size: .72rem;
    color: #aaa;
    font-weight: 300;
}

.testi-quote-icon {
    margin-left: auto;
    flex-shrink: 0;
    opacity: .2;
}

.testi-quote-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--green);
}

@media (max-width: 991px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* ── FAQ ── */
.faq-section {
    background: #f4f4f0;
    padding: 80px 0 90px;
}

.faq-pill {
    display: inline-block;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: .78rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 16px;
    background: var(--white);
}

.faq-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.1;
}

.faq-sub {
    font-size: .9rem;
    color: #999;
    font-weight: 300;
    margin-bottom: 52px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #f8f8f5;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    overflow: hidden;
    border-left: 3px solid transparent;
    transition: box-shadow .3s, border-color .3s;
}

.faq-item.open {
    box-shadow: 0 6px 24px rgba(55, 81, 71, .10);
    border-left-color: var(--gold);
    background: var(--white);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    text-align: left;
}

.faq-question-text {
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green);
    font-weight: 300;
    transition: transform .35s ease, color .25s;
    line-height: 1;
    user-select: none;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 26px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 26px 22px;
}

.faq-answer p {
    font-size: .88rem;
    color: #777;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

/* ── VISION & MISSION ── */
.vision-section {
    background: var(--green);
    padding: 80px 0 90px;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    background: rgba(255, 255, 255, .07);
    border-radius: 24px;
    padding: 40px 36px;
    border: 1px solid rgba(183, 169, 121, .3);
    transition: background .3s, transform .3s;
}

.vm-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-4px);
}

.vm-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(183, 169, 121, .2);
    border: 1px solid rgba(183, 169, 121, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vm-label {
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.vm-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.vm-text {
    font-size: .88rem;
    color: rgba(255, 255, 255, .70);
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 767px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

/* ── FOOTER ── */
.footer {
    background: #0e1a15;
    padding: 70px 0 0;
    color: rgba(255, 255, 255, .75);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
    text-decoration: none;
}

.footer-brand span {
    color: var(--gold);
}

.footer-tagline {
    font-size: .78rem;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: .86rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 300;
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 28px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(183, 169, 121, .25);
    letter-spacing: .3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: .86rem;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-weight: 300;
    transition: color .25s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    opacity: .6;
    transition: opacity .25s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(183, 169, 121, .12);
    border: 1px solid rgba(183, 169, 121, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-text {
    font-size: .86rem;
    color: rgba(255, 255, 255, .60);
    font-weight: 300;
    line-height: 1.6;
}

.footer-contact-text strong {
    display: block;
    color: rgba(255, 255, 255, .85);
    font-weight: 400;
    font-size: .82rem;
    margin-bottom: 2px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 48px 0 0;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    font-weight: 300;
}

.footer-copy span {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(183, 169, 121, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, border-color .25s;
    cursor: pointer;
}

.footer-social-btn:hover {
    background: rgba(183, 169, 121, .15);
    border-color: var(--gold);
}

.footer-social-btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: rgba(255, 255, 255, .5);
    stroke-width: 1.6;
    transition: stroke .25s;
}

.footer-social-btn:hover svg {
    stroke: var(--gold-light);
}

/* ── PAGE HERO BANNER ── */
.page-hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/images/img8.jpg') center/cover no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .50) 0%, rgba(20, 35, 28, .82) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.page-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--gold);
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.page-hero-title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -.2px;
}

.page-hero-title strong {
    font-weight: 600;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.page-hero-breadcrumb a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s;
}

.page-hero-breadcrumb a:hover {
    color: var(--gold-light);
}

.page-hero-breadcrumb span {
    font-size: .8rem;
    color: var(--gold-light);
}

.page-hero-breadcrumb .sep {
    color: rgba(255, 255, 255, .3);
    font-size: .7rem;
}

/* ── ABOUT INTRO ── */
.about-intro {
    background: var(--white);
    padding: 88px 0 72px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-intro-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 52px rgba(0, 0, 0, .14);
}

.about-intro-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.about-intro-img-wrap:hover img {
    transform: scale(1.03);
}

.about-intro-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 22px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-intro-badge-num {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
}

.about-intro-badge-label {
    font-size: .72rem;
    color: #888;
    font-weight: 300;
    letter-spacing: .5px;
}

.about-intro-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-intro-label {
    font-size: .72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 14px;
}

.about-intro-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-intro-title strong {
    font-weight: 700;
}

.about-intro-body {
    font-size: .93rem;
    color: #555;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 28px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.about-stat {
    background: #f8f8f5;
    border-radius: 18px;
    padding: 22px 18px;
    border: 1px solid rgba(183, 169, 121, .2);
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}

.about-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(55, 81, 71, .10);
}

.about-stat-num {
    font-size: 2rem;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: .75rem;
    color: #888;
    font-weight: 300;
    letter-spacing: .3px;
}

@media (max-width: 991px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-intro-img-wrap img {
        height: 320px;
    }
}

/* ── STORY SECTION ── */
.story-section {
    background: #f4f4f0;
    padding: 80px 0 90px;
}

.story-pill {
    display: inline-block;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: .8rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 22px;
}

.story-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 14px;
}

.story-title strong {
    font-weight: 700;
}

.story-sub {
    font-size: .92rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 52px;
}

.story-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-spacer {
    flex: 1;
}

.timeline-dot-col {
    width: 60px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding-top: 26px;
}

.timeline-dot-inner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #f4f4f0;
    box-shadow: 0 0 0 3px var(--gold);
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 28px 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
    border: 1px solid rgba(183, 169, 121, .15);
    transition: transform .3s, box-shadow .3s;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(55, 81, 71, .12);
}

.timeline-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 6px;
    letter-spacing: .5px;
}

.timeline-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.timeline-text {
    font-size: .86rem;
    color: #777;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 767px) {
    .timeline-line {
        left: 18px;
    }

    .timeline-spacer {
        display: none;
    }

    .timeline-dot-col {
        width: 44px;
        padding-top: 22px;
    }
}

/* ── VALUES ── */
.values-section {
    background: var(--white);
    padding: 80px 0 90px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: #f8f8f5;
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid rgba(183, 169, 121, .18);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, background .3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(55, 81, 71, .12);
    background: var(--white);
}

.value-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.value-icon-wrap svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
    stroke: none;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-text {
    font-size: .86rem;
    color: #777;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CONTACT INFO CARDS ── */
.contact-info-section {
    background: var(--white);
    padding: 88px 0 72px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-heading {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.22;
    margin-bottom: 12px;
    letter-spacing: -.2px;
}

.section-heading strong {
    font-weight: 700;
}

.section-sub {
    font-size: .92rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 52px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 72px;
}

.contact-card {
    background: #f8f8f5;
    border-radius: 24px;
    padding: 34px 24px;
    text-align: center;
    border: 1px solid rgba(183, 169, 121, .18);
    transition: transform .35s ease, box-shadow .35s ease, background .3s;
    cursor: default;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(55, 81, 71, .12);
    background: var(--white);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform .3s;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.08);
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--white);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card-label {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-card-value {
    font-size: .87rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.contact-card-value a {
    color: var(--green);
    text-decoration: none;
    transition: color .2s;
}

.contact-card-value a:hover {
    color: var(--gold-dark);
}

@media (max-width: 991px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CONTACT FORM + MAP ── */
.contact-form-section {
    background: #f4f4f0;
    padding: 80px 0 90px;
}

.form-wrap {
    background: var(--white);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
    border: 1px solid rgba(183, 169, 121, .15);
}

.form-label-custom {
    font-size: .78rem;
    font-weight: 500;
    color: #444;
    letter-spacing: .3px;
    margin-bottom: 8px;
    display: block;
}

.form-control-custom {
    width: 100%;
    background: #f8f8f5;
    border: 1.5px solid rgba(183, 169, 121, .25);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: .9rem;
    font-family: 'DM Sans', sans-serif;
    color: #1a1a1a;
    font-weight: 300;
    outline: none;
    transition: border-color .25s, box-shadow .25s, background .25s;
    resize: none;
}

.form-control-custom::placeholder {
    color: #bbb;
}

.form-control-custom:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(183, 169, 121, .15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 14px 40px;
    font-size: .92rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    letter-spacing: .2px;
    transition: background .25s, transform .2s;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.btn-submit:hover {
    background: var(--green-dark);
    transform: scale(1.02);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success {
    display: none;
    background: rgba(55, 81, 71, .08);
    border: 1.5px solid var(--gold);
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    color: var(--green);
    font-size: .9rem;
    font-weight: 400;
    margin-top: 20px;
}

.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 500px;
}

.form-section-label {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.form-section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
}

.form-section-title strong {
    font-weight: 700;
}

.form-section-sub {
    font-size: .88rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 34px;
}

/* ── HOW WE HELP STRIP ── */
.help-strip {
    background: var(--green);
    padding: 52px 0;
}

.help-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.help-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.help-strip-item:last-child {
    border-right: none;
}

.help-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(183, 169, 121, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-strip-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.help-strip-text-title {
    font-size: .9rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.help-strip-text-sub {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 300;
}

@media (max-width: 767px) {
    .help-strip-item {
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
        width: 100%;
        justify-content: center;
    }

    .help-strip-item:last-child {
        border-bottom: none;
    }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrap {
        padding: 32px 24px;
    }
}