    :root {
        --bg-dark: #020c1b;
        --bg-card: #0a192f;
        --bg-light: #112240;
        --gold: #d4af37;
        --gold-light: #f3cf55;
        --gold-dim: rgba(212, 175, 55, 0.15);
        --text-main: #e6f1ff;
        --text-muted: #8892b0;
        --font-heading: 'Cinzel', serif;
        --font-body: 'Lato', sans-serif;
        --transition: all 0.3s ease-in-out;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--bg-dark);
        color: var(--text-main);
        font-family: var(--font-body);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Typography */
    h1, h2, h3, h4 {
        font-family: var(--font-heading);
        color: var(--text-main);
        font-weight: 600;
    }

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

    ul {
        list-style: none;
    }

    /* Utility Classes */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .text-gold {
        color: var(--gold);
    }

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

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    /* Buttons */
    .btn-primary, .btn-secondary, .btn-gold {
        display: inline-block;
        padding: 14px 32px;
        font-family: var(--font-body);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 4px;
        cursor: pointer;
        transition: var(--transition);
        font-size: 0.9rem;
    }

    .btn-primary {
        background: var(--gold);
        color: var(--bg-dark);
        border: 2px solid var(--gold);
    }

    .btn-primary:hover {
        background: transparent;
        color: var(--gold);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-main);
        border: 2px solid var(--text-main);
        margin-left: 15px;
    }

    .btn-secondary:hover {
        background: var(--text-main);
        color: var(--bg-dark);
    }

    .btn-gold {
        background: transparent;
        color: var(--gold);
        border: 1px solid var(--gold);
        padding: 10px 24px;
    }

    .btn-gold:hover {
        background: var(--gold-dim);
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: var(--transition);
        background: rgba(2, 12, 27, 0.8);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar.scrolled {
        padding: 15px 0;
        background: rgba(2, 12, 27, 0.95);
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-main);
        letter-spacing: 2px;
    }

    .logo .dot {
        color: var(--gold);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--text-main);
        position: relative;
    }

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

    .nav-links a:not(.btn-gold)::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -5px;
        left: 0;
        background-color: var(--gold);
        transition: var(--transition);
    }

    .nav-links a:not(.btn-gold):hover::after {
        width: 100%;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 6px;
    }

    .bar {
        width: 30px;
        height: 2px;
        background-color: var(--text-main);
        transition: var(--transition);
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(2, 12, 27, 0.98);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-nav-overlay ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .mobile-link {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        color: var(--text-main);
    }

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

    .close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 3rem;
        color: var(--text-main);
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('https://images.pexels.com/photos/11264391/pexels-photo-11264391.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(2, 12, 27, 0.95) 0%, rgba(2, 12, 27, 0.7) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 25px;
        line-height: 1.1;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .hero-sub {
        font-size: 1.2rem;
        color: var(--text-muted);
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
    }

    .scroll-indicator span {
        display: block;
        width: 20px;
        height: 30px;
        border: 2px solid var(--text-muted);
        border-radius: 20px;
        position: relative;
    }

    .scroll-indicator span::after {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        background: var(--gold);
        border-radius: 50%;
        animation: scroll-dot 2s infinite;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
        40% {transform: translateX(-50%) translateY(-10px);}
        60% {transform: translateX(-50%) translateY(-5px);}
    }

    @keyframes scroll-dot {
        0% {top: 6px; opacity: 1;}
        100% {top: 20px; opacity: 0;}
    }

    /* Animations */
    .fade-in {
        animation: fadeIn 1s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .fade-in-delay {
        animation: fadeIn 1s ease-out 0.3s forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .fade-in-delay-2 {
        animation: fadeIn 1s ease-out 0.6s forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    @keyframes fadeIn {
        to { opacity: 1; transform: translateY(0); }
    }

    /* About Section */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
        filter: grayscale(20%);
        transition: var(--transition);
    }

    .about-img:hover {
        filter: grayscale(0%);
        transform: translateY(-5px);
    }

    .about-badge {
        position: absolute;
        bottom: -30px;
        right: -30px;
        background: var(--bg-card);
        border: 1px solid var(--gold);
        padding: 20px 40px;
        font-family: var(--font-heading);
        color: var(--gold);
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    }

    .about-content .lead {
        font-size: 1.15rem;
        color: var(--text-main);
        margin-bottom: 20px;
    }

    .about-content p {
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .feature-list {
        display: grid;
        gap: 20px;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--text-main);
        font-weight: 400;
    }

    .icon-gold {
        color: var(--gold);
        width: 24px;
        height: 24px;
    }

    /* Services Section */
    .services {
        background: linear-gradient(to bottom, var(--bg-dark), #051021);
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-header p {
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    .service-card {
        background: var(--bg-card);
        padding: 40px 30px;
        border-radius: 4px;
        transition: var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.02);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background: var(--gold-dim);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        color: var(--gold);
        transition: var(--transition);
    }

    .service-card:hover .icon-box {
        background: var(--gold);
        color: var(--bg-dark);
    }

    .icon-box svg {
        width: 30px;
        height: 30px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: var(--text-main);
    }

    .service-card p {
        color: var(--text-muted);
        font-size: 0.95rem;
    }

    /* Contact Section */
    .contact {
        background: var(--bg-card);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        background: var(--bg-dark);
        padding: 60px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.05);
    }

    .contact-info .contact-desc {
        color: var(--text-muted);
        margin-bottom: 40px;
    }

    .info-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: var(--bg-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        flex-shrink: 0;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }

    .info-item h4 {
        font-size: 1rem;
        margin-bottom: 5px;
        color: var(--text-main);
    }

    .info-item p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .info-item a {
        color: var(--text-muted);
    }

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

    /* Form */
    .contact-form {
        background: var(--bg-card);
        padding: 40px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.05);
    }

    .contact-form h3 {
        margin-bottom: 25px;
        color: var(--text-main);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-main);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        background: var(--bg-dark);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 4px;
        color: var(--text-main);
        font-family: var(--font-body);
        font-size: 1rem;
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--gold);
        background: rgba(2, 12, 27, 0.8);
    }

    .full-width {
        width: 100%;
        margin-top: 10px;
    }

    .success-message {
        text-align: center;
        padding: 40px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid var(--gold);
        border-radius: 4px;
        color: var(--gold);
    }

    .success-message svg {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .success-message h3 {
        color: var(--text-main);
        margin-bottom: 10px;
    }

    .hidden {
        display: none;
    }

    /* Footer */
    .footer {
        background: #010612;
        padding: 60px 0 30px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .footer-brand p {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

    .footer-links {
        display: flex;
        gap: 30px;
    }

    .footer-links a {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

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

    .footer-copy {
        color: var(--text-muted);
        font-size: 0.8rem;
        margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .nav-links {
            display: none;
        }
        
        .menu-toggle {
            display: flex;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

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

        .about-badge {
            right: 0;
        }

        .contact-wrapper {
            grid-template-columns: 1fr;
            padding: 30px;
        }
    }

    @media (max-width: 600px) {
        .hero h1 {
            font-size: 2rem;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .btn-secondary {
            margin-left: 0;
        }

        .section-title {
            font-size: 2rem;
        }
    }
