        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

        /* --- RESET & BASE --- */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            min-width: 375px;
            scroll-behavior: smooth;
        }

        :root {
            --gold: #C9A84C;
            --gold-light: #e2c97e;
            --gold-dark: #9a7830;
            --deep-green: #0d2d0d;
            --forest: #1B4D1B;
            --forest-light: #2d6b2d;
            --off-white: #FAFAF7;
            --warm-gray: #F4F2EE;
            --text-dark: #1a1a1a;
            --text-muted: #6b6b6b;
            --border: rgba(201, 168, 76, 0.2);
        }

        body {
            margin: 0;
            font-family: 'Inter', system-ui, sans-serif;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--off-white);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 600;
            margin-top: 0;
            line-height: 1.25;
            letter-spacing: -0.01em;
        }

        a {
            color: var(--forest);
            text-decoration: none;
        }

        a:hover {
            text-decoration: none;
        }

        /* --- HEADER --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 8%;
            height: 75px;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(13, 45, 13, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(201, 168, 76, 0.15);
            overflow: visible;
        }

        #brand strong {
            font-size: 1.25rem;
            color: #fff;
            font-family: 'Playfair Display', Georgia, serif;
            letter-spacing: 0.04em;
        }

        #brand img {
            height: 120px;
            width: 120px;
            object-fit: contain;
            display: block;
            border-radius: 50%;
        }
        /* --- NAV --- */
        #main-nav {
            position: relative;
        }

        #main-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 2rem;
            justify-content: center;
            align-items: center;
        }

        #main-nav a {
            position: relative;
            text-decoration: none;
            font-size: clamp(13px, 1.1vw, 15px);
            font-weight: 400;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            -webkit-text-fill-color: unset;
        }

        #main-nav a img {
            filter: brightness(0) invert(1);
            opacity: 0.85;
        }

        /* Icon-only links: circular hover ring */
        #main-nav a[aria-label="WhatsApp"],
        #main-nav a[aria-label="Facebook"],
        #main-nav a.login-trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            box-shadow: 0 0 0 0 transparent;
            transition: color 0.3s ease, box-shadow 0.3s ease;
        }

        #main-nav a[aria-label="WhatsApp"]::after,
        #main-nav a[aria-label="Facebook"]::after,
        #main-nav a.login-trigger::after {
            display: none;
        }

        #main-nav a[aria-label="WhatsApp"]:hover,
        #main-nav a[aria-label="Facebook"]:hover,
        #main-nav a.login-trigger:hover {
            color: var(--gold);
            box-shadow: 0 0 0 2px var(--gold);
        }

        #main-nav a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.35s ease;
        }

        #main-nav a:hover {
            color: var(--gold);
            -webkit-text-fill-color: unset;
        }

        #main-nav a:hover::after {
            width: 100%;
        }

        /* --- NAV INFO --- */
        #nav-info {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 7px 10px;
            gap: 24px;
            width: 100%;
            background: var(--deep-green);
            flex-wrap: wrap;
            font-size: clamp(11px, 1.3vw, 13px);
            letter-spacing: 0.04em;
            border-bottom: 1px solid rgba(201, 168, 76, 0.12);
        }

        #nav-info a {
            display: flex;
            align-items: center;
            font-size: clamp(11px, 1.3vw, 13px);
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            transition: color 0.25s;
        }

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

        #nav-info a svg {
            width: clamp(14px, 1.8vw, 17px);
            height: clamp(14px, 1.8vw, 17px);
            margin-right: 6px;
            fill: var(--gold);
            transition: fill 0.3s;
        }

        #nav-info a:hover svg {
            fill: var(--gold-light);
        }

        /* --- LANGUAGE SWITCH --- */
        .language-switch {
            display: flex;
            flex-direction: row;
            gap: 10px;
            align-items: center;
            flex-wrap: nowrap;
        }

        .lang-btn {
            background: transparent;
            border: 1px solid rgba(201, 168, 76, 0.4);
            padding: 3px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lang-btn svg {
            display: block;
            width: 30px;
            height: 18px;
        }

        .lang-btn:hover {
            background-color: rgba(201, 168, 76, 0.15);
            border-color: var(--gold);
        }

        .lang-btn.active {
            background-color: var(--gold-dark);
            border-color: var(--gold);
        }

        /* --- HAMBURGER --- */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            width: 30px;
            height: 22px;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            display: block;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            transition: background 0.3s;
        }

        /* ============================================================
           SERVICES SECTION
        ============================================================ */
        .services {
            text-align: center;
            padding: 6rem 8%;
            background: var(--off-white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
            margin-top: 3rem;
        }

        .service-card {
            background: #fff;
            padding: 2.5rem 2rem;
            border-radius: 4px;
            border: 1px solid rgba(0,0,0,0.06);
            border-top: 3px solid var(--gold);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        }

        .service-card h3 {
            font-size: 1.15rem;
            margin-bottom: 0.6rem;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.65;
        }

        .services .icon-wrapper {
            width: 64px;
            height: 64px;
            margin: 0 0 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(27, 77, 27, 0.08), rgba(201, 168, 76, 0.08));
            border-radius: 12px;
        }

        .services .icon-wrapper img {
            width: 42px;
            height: 42px;
            object-fit: contain;
            display: block;
        }

        /* ============================================================
           WHY SECTION
        ============================================================ */
        .why {
            text-align: center;
            padding: 6rem 8%;
            background: var(--deep-green);
            color: #fff;
        }

        .why > h2 {
            color: #fff;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-top: 3rem;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.04);
            padding: 2.5rem 2rem;
            border-radius: 4px;
            border: 1px solid rgba(201, 168, 76, 0.2);
            text-align: left;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .why-card:hover {
            transform: translateY(-6px);
            background: rgba(255, 255, 255, 0.08);
        }

        .why-card h4 {
            color: var(--gold-light);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .why-card p {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.65;
        }

        .why-icon {
            width: 56px;
            height: 56px;
            margin: 0 0 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(201, 168, 76, 0.12);
            border-radius: 10px;
        }

        .why-icon img {
            width: 38px;
            height: 38px;
            object-fit: contain;
            display: block;
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
        }

        /* ============================================================
           HOW IT WORKS
        ============================================================ */
        .how-wrapper {
            padding: 6rem 8%;
            background: var(--warm-gray);
        }

        .how-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .how-image {
            width: 100%;
            height: 380px;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .how-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.6s ease;
        }

        .how-steps {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .how-steps li {
            padding: 1.2rem 1.5rem;
            margin-bottom: 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.06);
            border-left: 3px solid transparent;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }

        .how-steps li strong {
            display: block;
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }

        .how-steps li p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .how-steps li:hover {
            transform: translateX(4px);
            border-left-color: var(--gold);
        }

        .how-steps li.active {
            background: #fff;
            border-left: 3px solid var(--gold);
            transform: translateX(4px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .how-steps li.active strong {
            color: var(--forest);
        }

        /* ============================================================
           TRUST / TESTIMONIALS
        ============================================================ */
        .trust-section {
            text-align: center;
            padding: 6rem 8%;
            background: #fff;
        }

        .trust-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin: 3rem 0;
            opacity: 0.9;
        }

        .trust-logos img {
            height: 110px;
            filter: grayscale(100%);
            opacity: 0.55;
            transition: all 0.35s ease;
        }

        .trust-logos img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.06);
        }

        .trust-quote {
            max-width: 680px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-dark);
        }

        .trust-quote blockquote {
            margin: 0 0 0.75rem;
            font-family: 'Playfair Display', Georgia, serif;
            font-style: italic;
            font-size: 1.25rem;
            color: var(--text-dark);
            position: relative;
            padding: 1.5rem 2rem;
            background: var(--warm-gray);
            border-radius: 4px;
            border-left: 3px solid var(--gold);
        }

        .trust-quote blockquote::before {
            content: '\201C';
            font-size: 5rem;
            color: var(--gold);
            opacity: 0.25;
            position: absolute;
            top: -0.5rem;
            left: 0.75rem;
            line-height: 1;
        }

        .trust-quote cite {
            font-size: 0.9rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* ============================================================
           ABOUT SECTION
        ============================================================ */
        .about-section {
            padding: 6rem 8%;
            background: var(--deep-green);
            color: #fff;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            margin-bottom: 1.2rem;
            color: #fff;
        }

        .about-content p {
            margin-bottom: 1rem;
            line-height: 1.75;
            color: rgba(255,255,255,0.75);
            font-size: 0.98rem;
        }

        .about-motto {
            background: rgba(201, 168, 76, 0.1);
            padding: 1rem 1.2rem;
            border-left: 3px solid var(--gold);
            border-radius: 2px;
            margin: 1.75rem 0;
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.15rem;
            font-style: italic;
            color: var(--gold-light);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        /* CTA buttons */
        .about-cta {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
        }

        .btn-primary,
        .btn-secondary {
            padding: 0.85rem 1.75rem;
            border-radius: 2px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: 0.25s ease;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--deep-green);
        }

        .btn-primary:hover {
            background: var(--gold-light);
            color: var(--deep-green);
            text-decoration: none;
        }

        .btn-secondary {
            background: transparent;
            color: rgba(255,255,255,0.8);
            border: 1px solid rgba(255,255,255,0.3);
            text-decoration: none;
        }

        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold-light);
            text-decoration: none;
        }

        /* ============================================================
           FOOTER
        ============================================================ */
        .footer-section {
            background-color: #070f07;
            color: rgba(255,255,255,0.65);
            padding: 4rem 8% 2rem;
            font-family: 'Inter', sans-serif;
            border-top: 1px solid rgba(201, 168, 76, 0.15);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            max-width: 420px;
            color: rgba(255,255,255,0.65);
        }

        .footer-info h2 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: #fff;
            font-family: 'Playfair Display', Georgia, serif;
            letter-spacing: 0.02em;
        }

        .footer-info p {
            margin: 0;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .footer-info strong {
            font-weight: 500;
            color: rgba(255,255,255,0.85);
        }

        .footer-info a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.25s;
        }

        .footer-info a:hover {
            color: var(--gold-light);
        }

        .footer-social {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.25rem;
        }

        .footer-social img {
            width: 22px;
            height: 22px;
            opacity: 0.5;
            filter: brightness(0) invert(1);
            transition: opacity 0.25s, transform 0.25s;
        }

        .footer-social img:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .footer-map {
            margin-top: 1.25rem;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .footer-map iframe {
            width: 100%;
            height: 200px;
            border: 0;
            filter: grayscale(30%);
        }

        /* Footer form */
        .footer-form form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-form label {
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
        }

        .footer-form input,
        .footer-form textarea {
            padding: 0.7rem 1rem;
            border-radius: 2px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.25s;
        }

        .footer-form input::placeholder,
        .footer-form textarea::placeholder {
            color: rgba(255,255,255,0.35);
        }

        .footer-form input:focus,
        .footer-form textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
        }

        .btn-footer {
            background-color: var(--gold);
            color: var(--deep-green);
            padding: 0.75rem 1.5rem;
            border-radius: 2px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background 0.25s ease;
        }

        .btn-footer:hover {
            background-color: var(--gold-light);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.07);
            font-size: 0.8rem;
            color: rgba(255,255,255,0.35);
            letter-spacing: 0.04em;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
        }

        .footer-designedBy {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.25);
            letter-spacing: 0.03em;
        }

        .footer-designedBy-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.25s;
        }

        .footer-designedBy-link:hover {
            color: var(--gold);
        }

        .footer-designedBy-link svg {
            flex-shrink: 0;
        }

        /* ============================================================
           RESPONSIVE
        ============================================================ */
        @media (max-width: 810px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-info {
                max-width: 100%;
            }
            .footer-map iframe {
                height: 180px;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
            .about-image {
                order: -1;
            }
            .trust-logos img {
                height: 60px;
            }
            .how-container {
                grid-template-columns: 1fr;
            }
            .how-image {
                height: 250px;
            }
            #nav-info {
                gap: 12px;
                padding: 8px 5px;
            }

            #main-nav ul {
                position: fixed;
                top: 63px;
                right: 0;
                background: rgba(13, 45, 13, 0.97);
                backdrop-filter: blur(18px);
                flex-direction: column;
                width: 240px;
                padding: 1.5rem 1rem;
                border-radius: 0 0 0 8px;
                box-shadow: -4px 0 24px rgba(0,0,0,0.5);
                transform: translateX(100%);
                transition: transform 0.4s ease;
                z-index: 100;
                border-left: 1px solid rgba(201,168,76,0.15);
            }

            #main-nav ul.open {
                transform: translateX(0);
            }

            #main-nav li {
                margin: 0.4rem 0;
            }

            #main-nav a {
                padding: 0.5rem;
                border-radius: 2px;
                display: block;
            }

            #main-nav a:hover,
            #main-nav a:focus {
                color: var(--gold);
            }

            .menu-toggle {
                display: flex;
                z-index: 101;
            }
        }

        /* ============================================================
           SECTIONS
        ============================================================ */
        section {
            padding: 2rem 1rem;
            margin: 0 auto;
            width: 100%;
        }

        h1 {
            font-size: clamp(2rem, 4.5vw, 3rem);
        }

        h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
        }

        /* Section heading accent */
        section > h2, .about-content h2 {
            display: inline-block;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gold);
            margin-bottom: 0.5rem;
        }

        .why > h2, .about-content h2 {
            border-bottom-color: var(--gold);
        }

        /* ============================================================
           HERO
        ============================================================ */
        #hero {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            overflow: hidden;
            text-align: center;
            padding: 4rem 1rem;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
            transition: background-image 1s ease-in-out;
            filter: brightness(0.45);
        }

        /* Dark gradient overlay over hero image */
        #hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(7,15,7,0.3) 0%, rgba(7,15,7,0.55) 100%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 2rem;
            max-width: 860px;
        }

        #hero h1 {
            font-size: clamp(2.2rem, 5.5vw, 3.6rem);
            margin-bottom: 1.2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 20px rgba(0,0,0,0.4);
        }

        #hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 2.5rem;
            color: rgba(255,255,255,0.82);
            font-weight: 300;
            line-height: 1.7;
        }

        #quick-quote {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        #quick-quote input {
            padding: 0.85rem 1.1rem;
            border-radius: 2px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.12);
            color: #fff;
            font-size: 0.95rem;
            min-width: 160px;
            backdrop-filter: blur(6px);
            outline: none;
            transition: border-color 0.25s, background 0.25s;
        }

        #quick-quote input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        #quick-quote input:focus {
            border-color: var(--gold);
            background: rgba(255,255,255,0.18);
        }

        #quick-quote button {
            padding: 0.85rem 1.75rem;
            border-radius: 2px;
            border: none;
            background: var(--gold);
            color: var(--deep-green);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        #quick-quote button:hover {
            background: var(--gold-light);
        }

        .secondary-cta a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin: 0 0.75rem;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            border-bottom: 1px solid rgba(255,255,255,0.25);
            padding-bottom: 1px;
            transition: color 0.25s, border-color 0.25s;
        }

        .secondary-cta a:hover {
            color: var(--gold-light);
            border-bottom-color: var(--gold);
        }

        /* --- HERO RESPONSIVE --- */
        @media (max-width: 768px) {
            #quick-quote {
                flex-direction: column;
            }
            #quick-quote input,
            #quick-quote button {
                width: 100%;
            }
        }