        @import "tailwindcss";
        :root {
            --gold: #C8A464;
            --gold-dark: #A6854A;
            --off-white: #F4F2EE;
            --deep-navy: #0B0F17;
            --text-primary: #1A1D23;
            --text-secondary: #6D727A;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--off-white);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Typography */
        .font-display {
            font-family: 'Montserrat', sans-serif;
        }

        .font-mono {
            font-family: 'IBM Plex Mono', monospace;
        }

        .headline-xl {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 0.95;
            letter-spacing: -0.02em;
        }

        .micro-label {
            font-family: 'IBM Plex Mono', monospace;
            font-weight: 500;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--gold);
        }

        /* Grain Overlay */
        .grain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.5s ease;
        }

        .nav.scrolled {
            padding: 1rem 0;
            background: rgba(244, 242, 238, 0.9);
            backdrop-filter: blur(12px);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold);
            border-radius: 8px;
            transform: rotate(45deg) scale(0.75);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-icon::before {
            transform: rotate(60deg) scale(0.9);
        }

        .logo-icon svg {
            position: relative;
            width: 20px;
            height: 20px;
            color: white;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--text-primary);
        }
        .logo-text-footer {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--gold);
        }

        .nav-pills {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(8px);
            border-radius: 9999px;
            padding: 0.5rem;
            border: 1px solid rgba(26, 29, 35, 0.05);
        }

        .nav-pill {
            padding: 0.625rem 1.25rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            background: transparent;
            cursor: pointer;
        }

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

        .nav-pill.active {
            background: var(--gold);
            color: white;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            background: var(--gold);
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.875rem;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(200, 164, 100, 0.35);
        }

        .mobile-menu-btn {
            display: none;
            width: 48px;
            height: 48px;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(26, 29, 35, 0.05);
            cursor: pointer;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: all 0.5s ease;
        }

        .mobile-menu.open {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(11, 15, 23, 0.6);
            backdrop-filter: blur(4px);
        }

        .mobile-menu-panel {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 320px;
            background: var(--off-white);
            transform: translateX(100%);
            transition: transform 0.5s ease;
            padding: 6rem 2rem 2rem;
        }

        .mobile-menu.open .mobile-menu-panel {
            transform: translateX(0);
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            text-decoration: none;
            color: var(--text-primary);
            border-bottom: 1px solid rgba(26, 29, 35, 0.1);
        }

        .mobile-nav-link span:first-child {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .mobile-nav-link span:last-child {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            text-transform: uppercase;
        }

        /* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/img1.png");
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.1); /* prevents blur edge gaps */
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 23, 0.55);
    z-index: 1;
}
        .hero-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .hero-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gold);
            display: block;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

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

        .hero-subtitle {
            color: var(--gold);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }
.hero-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.8rem;
}.hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.4rem;
            margin-bottom: 5rem;
            
        }

.stat-card {
    background: white;
    border-radius: 18px;
    padding: 1.0rem;
    text-align: center;
    border: 1px solid rgba(26, 29, 35, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
        .stat-value {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }



        /* FAQ Section */
        .faq {
            padding: 6rem 0;
            background: var(--off-white);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(200, 164, 100, 0.1);
            border-radius: 9999px;
            margin-bottom: 1.5rem;
        }

        .faq-badge svg {
            width: 16px;
            height: 16px;
            color: var(--gold);
        }

        .faq-badge span {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gold);
        }

        .faq-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .faq-subtitle {
            color: var(--text-secondary);
            font-size: 1.125rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(26, 29, 35, 0.05);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
        }

        .faq-question-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            padding-right: 1rem;
        }

        .faq-chevron {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--off-white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-chevron svg {
            width: 16px;
            height: 16px;
            color: var(--text-secondary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-chevron {
            background: var(--gold);
        }

        .faq-item.active .faq-chevron svg {
            color: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer-divider {
            height: 1px;
            background: rgba(26, 29, 35, 0.08);
            margin-bottom: 1rem;
        }

        .faq-answer-text {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .faq-cta-text {
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
        }

        .faq-cta-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold);
            font-weight: 500;
            text-decoration: none;
        }

        .faq-cta-link:hover {
            text-decoration: underline;
        }


        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: var(--deep-navy);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 28px;
            padding: 2.5rem;
        }

        .contact-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gold);
            display: block;
            margin-bottom: 1rem;
        }

        .contact-title {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            color: white;
            margin-bottom: 0.75rem;
        }

        .contact-subtitle {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

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

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-select option {
            background: var(--deep-navy);
        }

        .form-textarea {
            resize: none;
            min-height: 100px;
        }

        .form-submit {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
            background: var(--gold);
            color: var(--text-primary);
            font-weight: 600;
            border: none;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(200, 164, 100, 0.35);
        }

        .form-success {
            text-align: center;
            padding: 3rem 0;
        }

        .form-success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(200, 164, 100, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .form-success-icon svg {
            width: 32px;
            height: 32px;
            color: var(--gold);
        }

        .form-success h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .form-success p {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-alt {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .form-alt p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        .form-alt a {
            color: var(--gold);
            text-decoration: none;
        }

        .form-alt a:hover {
            text-decoration: underline;
        }

        .contact-right {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-image {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
            flex: 1;
            max-height: 400px;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
        }

        .contact-info-item.full-width {
            grid-column: span 2;
        }

        .contact-info-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(200, 164, 100, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-info-icon svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
        }

        .contact-info-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.25rem;
        }

        .contact-info-value {
            color: white;
            font-size: 0.875rem;
            text-decoration: none;
        }

        .contact-info-value:hover {
            color: var(--gold);
        }

        .contact-socials {
            display: flex;
            gap: 0.75rem;
        }

        .contact-social {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .contact-social:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .contact-social svg {
            width: 20px;
            height: 20px;
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s ease;
        }

        .contact-social:hover svg {
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--deep-navy);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
            line-height: 1.7;
            margin: 1.5rem 0;
        }

        .footer-socials {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .footer-social:hover {
            background: var(--gold);
        }

        .footer-social svg {
            width: 16px;
            height: 16px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: white;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.875rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s ease;
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.8s ease;
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-pills,
            .nav-cta {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }



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

            .contact-image {
                max-height: 300px;
            }

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

        @media (max-width: 640px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
            }

            .contact-info-item.full-width {
                grid-column: span 1;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        } 