* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --gold: var(--gold);
    --green: var(--green);
    --cream: #F5F1E8;

    --bg-dark: var(--bg-dark);
    --bg-darker: #020304;
    --bg-card: #0B0D10;

    --text-light: #D0D0D0;
    --text-white: #FFFFFF;

}

html {
    scroll-behavior: smooth;
}

body {
    background: #030507;
    color: #F5EFE6;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ========================================
   HEADER SECTION
======================================== */

.header {
    background:
        linear-gradient(to bottom,
            #010203,
            #06100d);

    padding: 20px 8% 10px;
    text-align: center;

    border-bottom:
        1px solid rgba(212, 175, 55, 0.35);

    position: relative;
    z-index: 100;
}

.logo {
    width: 420px;
    max-width: 90%;
}

.logo-container {
    margin-bottom: 15px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-top: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #f4f4f4;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav a:hover {
    color: var(--gold);
}

.header-btn {
    display: inline-block;
    padding: 14px 34px;

    border: 1px solid var(--gold);
    background: transparent;

    color: var(--gold);
    text-decoration: none;

    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.8px;

    transition: 0.3s ease;
}

.header-btn:hover {
    background: rgba(212, 175, 55, 0.08);
}

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

.hero {
    position: relative;
    overflow: visible;
    background: #050607;
    padding: 30px 0 140px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.72) 45%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;

    max-width: 1600px;
    margin: auto;

    gap: 0;
    padding: 0 5%;
}

.hero-left {
    padding: 90px 60px;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-left h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.6rem;
    line-height: 1;
    margin: 22px 0;
    font-weight: 500;
}

.hero-left h1 span {
    color: var(--gold);
}

.hero-text {
    color: #48683f;
    line-height: 1.9;
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 40px;
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background:
        linear-gradient(135deg,
            #b88918 0%,
            var(--gold) 40%,
            #f2d46b 50%,
            var(--gold) 65%,
            #b88918 100%);

    color: #050B14;
    text-decoration: none;

    padding: 20px 42px;
    border-radius: 12px;

    font-weight: 600;
    font-size: 1rem;

    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);

    transition: all 0.3s ease;
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 14px 35px rgba(212, 175, 55, 0.28);
}

.hero-image-card {
    position: relative;
    height: 680px;
    overflow: visible;
    z-index: 10;

    margin-bottom: -80px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    border-radius: 0;
    position: relative;
    z-index: 1;
}

/* HERO SWEEP */

.hero-sweep {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    pointer-events: none;
    z-index: 3;
}

.hero-sweep svg {
    width: 100%;
    height: 120px;
}

/* Same premium line as services */
.hero-line {
    stroke-width: 3;

    filter:
        drop-shadow(0 0 5px rgba(255,220,120,0.5))
        drop-shadow(0 0 18px rgba(212,175,55,0.35));

    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;

    animation:
        drawLine 2.2s ease forwards,
        luxuryGlow 4s ease-in-out infinite;
}

.hero-glow {
    stroke-width: 18;
    opacity: 0.18;
    filter: blur(14px);
}

/* MOBILE */

@media (max-width: 1000px) {

    .hero {
        overflow: visible;
        padding: 20px 0 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-left {
    padding: 20px 24px 10px;
    }

    .hero-left h1 {
        font-size: 2.6rem;
        line-height: 1.02;
        margin-bottom: 18px;
    }

    .hero-left p {
        color: #48683f;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-image-card {
    height: 360px;
    margin-bottom: -20px;
}

    .hero-image {
        margin-top: 10px;
    }

    .header-btn {
        position: static;
        transform: none;
        display: inline-block;
        margin-top: 20px;
    }

    .nav {
        gap: 25px;
    }

    .logo {
        width: 240px;
    }

    .section-heading {
        padding: 0 20px;
    }

    .services {
        padding: 40px 5% 100px;
    }

    .services .section-heading h2 {
        font-size: 1.55rem !important;
        line-height: 1.15;
        max-width: 100%;
        margin: 0 auto 20px;
    }

    /* DESKTOP OFF */
    .hero-sweep-desktop {
        display: none;
    }

    /* MOBILE SWEEP */
.hero-sweep-mobile {
    display: block !important;
    position: absolute;
    left: 0;
    bottom: -65px;
    width: 100%;
    pointer-events: none;
    z-index: 20;
}

.hero-sweep-mobile svg {
    width: 100%;
    height: 180px;
}

    .hero-line-mobile {
        stroke-width: 3;

        filter:
            drop-shadow(0 0 4px rgba(255,220,120,0.45))
            drop-shadow(0 0 14px rgba(212,175,55,0.28));
    }

    .hero-glow-mobile {
        stroke-width: 22;
        opacity: 0.14;
        filter: blur(12px);
    }
}

/* DESKTOP SWEEP */

.hero-sweep-desktop {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    pointer-events: none;
    z-index: 3;
}

.hero-sweep-desktop svg {
    width: 100%;
    height: 120px;
}

.hero-sweep-mobile {
    display: none;
}

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

.services {
    position: relative;
    background: var(--bg-dark);
    padding: 110px 6% 170px;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.section-heading h2 {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 3rem;
    font-weight: 500;
    margin-top: 10px;
}

.services-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 70px;

    font-family: 'Playfair Display', serif;
    color: #f5f1e8;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 60px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 3rem;
        line-height: 1.05;
        letter-spacing: -1px;
    }

}

.service-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;

    padding: 38px 30px;
    min-height: 320px;
    /* was probably too tall */

    transition: all 0.35s ease;
}

.service-icon {
    font-size: 44px;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;

    filter:
        drop-shadow(0 0 10px rgba(212, 175, 55, 0.20)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.08));

    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-3px);
    color: #f0cf63;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(212, 175, 55, 0.45);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    background:
        linear-gradient(180deg,
            rgba(16, 16, 16, 0.98),
            rgba(8, 8, 8, 1));
}

.service-card h3 {
    position: relative;
    /* ADD THIS */

    color: #5b7354;
    font-size: 2rem;
    line-height: 1.15;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.3px;

    margin-bottom: 18px;
    padding-bottom: 14px;
}

.service-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 50px;
    height: 2px;

    background: linear-gradient(
        90deg,
        var(--gold),
        rgba(212,175,55,0.1)
    );
}

.service-card:hover h3 {
    color: #6f8b67;
    transition: 0.3s ease;
}

.service-card p {
    color: #BFC7B7;
    line-height: 1.8;
    backdrop-filter: blur(12px);
}

/* SERVICES SWEEP */

.services-sweep {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    pointer-events: none;
}

.services-sweep svg {
    width: 100%;
    height: 120px;
}

.services-line {
    stroke-width: 3;

    filter:
        drop-shadow(0 0 5px rgba(255, 220, 120, 0.5)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.35));
}

.services-glow {
    stroke-width: 18;
    opacity: 0.18;
    filter: blur(14px);
}

.service-icon {
    font-size: 42px;
    color: #c8a63d;
    margin-bottom: 28px;

    text-shadow:
        0 0 12px rgba(212, 175, 55, 0.12);

    opacity: 0.95;
}

/* LUXURY GOLD LINE ANIMATION */

.services-line {
    stroke-width: 3;

    filter:
        drop-shadow(0 0 6px rgba(255,220,120,0.55))
        drop-shadow(0 0 20px rgba(212,175,55,0.35));

    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;

    animation:
        drawLine 2.2s ease forwards,
        luxuryGlow 4s ease-in-out infinite;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes luxuryGlow {
    0%, 100% {
        opacity: 0.92;
        transform: translateY(0px);
        filter:
            drop-shadow(0 0 5px rgba(255,220,120,0.4))
            drop-shadow(0 0 15px rgba(212,175,55,0.25));
    }

    50% {
        opacity: 1;
        filter:
            drop-shadow(0 0 14px rgba(255,220,120,0.85))
            drop-shadow(0 0 35px rgba(212,175,55,0.55));
    }
}

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

.about-section {
    background: var(--bg-dark);
    padding: 90px 6%;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(212,175,55,0.15);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        0 0 35px rgba(212,175,55,0.06);

    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-content span {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 500;
    color: #f5f1e8;

    margin: 16px 0 24px;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content p {
    color: #48683f;
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 620px;

    margin-bottom: 32px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;
    border-radius: 12px;

    border: 1px solid rgba(212,175,55,0.35);

    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;

    transition: all 0.3s ease;
}

.about-btn:hover {
    background: rgba(212,175,55,0.08);
    transform: translateY(-2px);

    box-shadow:
        0 0 25px rgba(212,175,55,0.12);
}

/* MOBILE */

@media (max-width: 768px) {

    .service-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .service-card h3 {
        font-size: 1.8rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ABOUT SWEEP */

.about-sweep {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    pointer-events: none;
}

.about-sweep svg {
    width: 100%;
    height: 120px;
}

.cta-sweep {
    width: 100%;
    margin: 60px 0 20px;
    pointer-events: none;
}

.cta-sweep svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* =========================
   BOOK SURVEY PAGE
========================= */

body {
    background: var(--bg-dark);
}

/* ========================================
   HEADER SECTION
======================================== */

.survey-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 6%;
    position: relative;
    z-index: 10;
}

.survey-logo img {
    width: 280px;
}

.back-home {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.back-home:hover {
    opacity: 0.8;
}

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

.survey-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 20px 100px;
}

.survey-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* GOLD SWEEPS */

.survey-bg-left,
.survey-bg-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    opacity: 0.45;
}

.survey-bg-left {
    left: -10%;
    background:
        radial-gradient(circle at center,
        rgba(212,175,55,0.12),
        transparent 70%);
}

.survey-bg-right {
    right: -10%;
    background:
        radial-gradient(circle at center,
        rgba(212,175,55,0.12),
        transparent 70%);
}

/* TITLE */

.survey-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    line-height: 0.95;
    color: #f6f2eb;
    margin-bottom: 25px;
}

.survey-hero h1 span {
    display: block;
    color: var(--gold);
}

.survey-divider {
    width: 220px;
    height: 2px;
    background:
        linear-gradient(
            to right,
            transparent,
            var(--gold),
            transparent
        );

    margin: 0 auto 30px;
}

.survey-subtext {
    color: #6f944f;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* FORM CARD */

.survey-form-card {
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 32px;
    padding: 55px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02),
            rgba(255,255,255,0.01)
        );

    backdrop-filter: blur(10px);
}

.survey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: #f6f2eb;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 16px;
    padding: 18px 22px;
    color: white;
    font-size: 1rem;
    outline: none;
    background-color: #0b0d10;
    appearance: none;
}

.form-group select option {
    background-color: #0b0d10;
    color: #ffffff;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.full-width {
    margin-top: 28px;
}

/* BUTTON */

.survey-btn {
    margin-top: 35px;
    border: none;
    border-radius: 18px;
    padding: 22px 55px;
    background:
        linear-gradient(
            135deg,
            #b8860b,
            var(--gold),
            #f1d27a
        );

    color: #050505;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.survey-btn:hover {
    transform: translateY(-2px);
}

/* RESPONSE */

.response-time {
    margin-top: 45px;
    color: #f6f2eb;
    font-size: 1rem;
}

/* TRUST BANNER */

.trust-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 55px 6%;
    border-top: 1px solid rgba(212,175,55,0.15);
}

.trust-item {
    text-align: center;
}

.trust-item h3 {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.trust-item p {
    color: #e7e7e7;
    line-height: 1.7;
}

/* ========================================
   FOOTER SECTION
======================================== */

.survey-footer {
    border-top: 1px solid rgba(212,175,55,0.15);
    padding: 40px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.survey-footer img {
    width: 200px;
}

.footer-text {
    color: var(--gold);
    text-align: right;
    line-height: 1.7;
    letter-spacing: 1px;
}

/* SURVEY GOLD SWEEP */

.survey-sweep-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.survey-sweep-top svg {
    width: 100%;
    height: 140px;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.45));
}

/* MOBILE */

@media (max-width: 768px) {

    .survey-subtext {
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .survey-header {
        gap: 20px;
        text-align: center;
    }

    .survey-logo img {
        width: 220px;
    }

    .survey-hero h1 {
        font-size: 3rem;
    }

    .survey-grid {
        grid-template-columns: 1fr;
    }

    .survey-form-card {
        padding: 30px;
    }

    .trust-banner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .survey-footer {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

     .survey-footer img {
        width: 220px;
    }
}

/* ========================================
   ABOUT SECTION - MOBILE & TABLET
======================================== */

@media (max-width: 992px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .about-content h2 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.1;
    }

    .about-content p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-content h2 {
        font-size: 2.8rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* ========================================
   PROJECTS SECTION
======================================== */

.projects-section {
    background: #050505;
    padding: 120px 20px;
    text-align: center;
}

.projects-section .section-tag {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.projects-section h2 {
    font-size: 4rem;
    margin: 20px 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 70px;
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #0b0b0b;
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;

    overflow: hidden;

    text-decoration: none;
    color: inherit;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

.project-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 30px;
    text-align: left;
}

.project-content h3 {
    color: var(--green);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
}

.project-content p {
    color: #cfcfcf;
    line-height: 1.8;
}

.projects-btn {
    display: inline-block;
    padding: 16px 36px;

    border: 1px solid var(--gold);
    border-radius: 40px;

    color: var(--gold);
    text-decoration: none;

    font-weight: 600;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.projects-btn:hover {
    background: rgba(212,175,55,0.08);
    color: var(--gold);

    box-shadow:
        0 0 25px rgba(212,175,55,0.15);
}

.project-card img {
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.projects-cta {
    text-align: center;
    margin-top: 50px;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.project-card h3 {
    color: #A6C48A;
    margin-bottom: 20px;
}

.project-card:hover h3 {
    color: var(--gold);
}

/* ========================================
   SERVICE PAGE TEMPLATE
======================================== */

.service-hero {
    position: relative;
    height: 80vh;
    min-height: 700px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.service-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(4,6,8,0.55),
            rgba(4,6,8,0.85)
        );

    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;

    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}

.service-hero-content span {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.9rem;
}

.service-hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    color: #f5f1e8;

    margin: 25px 0;
}

.service-hero-content p {
    color: #A6C48A;
    font-size: 1.25rem;
    line-height: 1.9;
}

.service-content {
    background: var(--bg-dark);
    padding: 120px 6%;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading span {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    color: #f5f1e8;
    margin-top: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.benefit-card {
    background: #0b0d10;

    border: 1px solid rgba(212,175,55,0.15);

    border-radius: 22px;

    padding: 40px;
}

.benefit-card h3 {
    color: var(--green);
    font-size: 1.8rem;

    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;
}

.benefit-card p {
    color: #d0d0d0;
    line-height: 1.8;
}

.process-section {
    background: #050505;
    padding: 120px 6%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.process-card {
    background: #0b0d10;

    border-radius: 20px;

    border: 1px solid rgba(212,175,55,0.12);

    padding: 35px;
}

.process-card span {
    color: var(--gold);
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.process-card h3 {
    color: var(--green);
    margin-bottom: 15px;
}

.process-card p {
    color: #d0d0d0;
    line-height: 1.8;
}

.faq-section {
    background: var(--bg-dark);
    padding: 120px 6%;
}

.faq-item {
    max-width: 1000px;
    margin: 0 auto 25px;

    border: 1px solid rgba(212,175,55,0.15);

    border-radius: 18px;

    padding: 30px;
}

.faq-item h3 {
    color: var(--green);
    margin-bottom: 15px;
}

.faq-item p {
    color: #d0d0d0;
    line-height: 1.8;
}

.service-cta {
    text-align: center;

    padding: 120px 6%;

    background: #050505;
}

.service-cta h2 {
    color: #f5f1e8;
    font-size: 4rem;
    font-family: "Cormorant Garamond", serif;
}

.service-cta p {
    color: #A6C48A;
    margin: 25px 0 40px;
    font-size: 1.2rem;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    background: var(--bg-dark);
    padding: 120px 6%;
    text-align: center;
}

.cta-section span {
    color: var(--gold);
    letter-spacing: 3px;
}

.cta-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    color: #f5f1e8;

    margin: 20px 0;
}

.cta-section p {
    color: #A6C48A;
    max-width: 700px;
    margin: 0 auto 40px;

    line-height: 1.8;
}

.cta-btn {
    display: inline-block;

    padding: 18px 40px;

    border-radius: 12px;

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

    color: var(--gold);

    text-decoration: none;
}

.cta-btn:hover {
    background: rgba(212,175,55,0.08);
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #020304;
    border-top: 1px solid rgba(212,175,55,0.12);
}

.footer-container {
    padding: 80px 6%;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-brand img {
    width: 240px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #d0d0d0;
    line-height: 1.8;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-column a:hover {
    color: #A6C48A;
}

.footer-bottom {
    text-align: center;
    padding: 25px;

    border-top: 1px solid rgba(212,175,55,0.08);

    color: #777;
}