    :root {
        --navy: #0a192f;
        --navy-light: #112240;
        --gold: #d4af37;
        --gold-light: #f3cf55;
        --white: #ffffff;
        --off-white: #f8f9fa;
        --gray: #8892b0;
        --font-head: 'Montserrat', sans-serif;
        --font-body: 'Space Grotesk', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        background-color: var(--navy);
        color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4 {
        font-family: var(--font-head);
        font-weight: 800;
        line-height: 1.1;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: 0.3s ease;
    }

    ul {
        list-style: none;
    }

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

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

    .eyebrow {
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--gold);
        margin-bottom: 1rem;
        display: block;
        text-transform: uppercase;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 600px;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 28px;
        font-weight: 700;
        border-radius: 4px;
        cursor: pointer;
        font-family: var(--font-head);
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

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

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

    .btn-gold {
        background-color: var(--gold);
        color: var(--navy);
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-outline {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
        margin-left: 10px;
    }

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--navy);
    }

    .btn-full {
        width: 100%;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(10, 25, 47, 0.9);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

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

    .logo {
        font-family: var(--font-head);
        font-weight: 900;
        font-size: 1.5rem;
        color: var(--white);
        letter-spacing: -1px;
    }

    .logo-accent {
        color: var(--gold);
        font-size: 1.8rem;
    }

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

    .nav-links a:not(.btn) {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--white);
    }

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

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-toggle span {
        width: 25px;
        height: 2px;
        background-color: var(--white);
        transition: 0.3s;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .bg-shape {
        position: absolute;
        z-index: -1;
    }

    .shape-1 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
        top: -100px;
        right: -100px;
    }

    .shape-2 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, transparent 100%);
        bottom: 0;
        left: 0;
    }

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

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: var(--gray);
        margin-bottom: 40px;
        max-width: 500px;
    }

    .hero-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .stat-card {
        background: var(--navy-light);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .card-1 { transform: translateX(20px); }
    .card-2 { transform: translateX(-20px); }
    .card-3 { transform: translateX(10px); }

    .stat-icon {
        width: 50px;
        height: 50px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        flex-shrink: 0;
    }

    .stat-number {
        display: block;
        font-family: var(--font-head);
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--white);
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--gray);
    }

    /* Services */
    .services {
        padding: 100px 0;
        background-color: var(--navy-light);
    }

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

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

    .service-card {
        background: var(--navy);
        padding: 40px 30px;
        border-radius: 8px;
        border-bottom: 3px solid transparent;
        transition: 0.3s;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-bottom: 3px solid var(--gold);
    }

    .service-icon-box {
        width: 70px;
        height: 70px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        margin-bottom: 25px;
    }

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

    .service-card p {
        color: var(--gray);
        font-size: 1rem;
    }

    /* About */
    .about {
        padding: 100px 0;
    }

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

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

    .about-img-bg {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 100%;
        height: 100%;
        background: var(--gold);
        z-index: -1;
        opacity: 0.2;
    }

    .about-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 8px;
        filter: grayscale(20%);
    }

    .about-accent-box {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--navy-light);
        border: 2px solid var(--gold);
        padding: 20px;
        font-family: var(--font-head);
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--white);
        text-align: center;
        line-height: 1.2;
    }

    .about-text {
        margin-bottom: 20px;
        color: var(--gray);
        font-size: 1.05rem;
    }

    .check-list {
        margin-top: 30px;
    }

    .check-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-weight: 500;
    }

    .check-icon {
        color: var(--gold);
        margin-right: 15px;
        font-weight: 900;
    }

    /* Gallery */
    .gallery {
        padding: 100px 0;
        background: var(--navy-light);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 250px);
        gap: 15px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
        font-weight: 700;
        color: var(--gold);
        opacity: 0;
        transition: 0.3s;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .item-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
    .item-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
    .item-3 { grid-column: 4 / 5; grid-row: 1 / 2; }
    .item-4 { grid-column: 3 / 5; grid-row: 2 / 3; }

    /* Contact */
    .contact {
        padding: 100px 0;
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        background: var(--navy-light);
        padding: 60px;
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .info-list {
        margin-top: 40px;
    }

    .info-list li {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        flex-shrink: 0;
    }

    .info-list strong {
        display: block;
        color: var(--white);
        margin-bottom: 5px;
    }

    .info-list span {
        color: var(--gray);
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group label {
        font-weight: 700;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        background: var(--navy);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 4px;
        color: var(--white);
        font-family: var(--font-body);
        font-size: 1rem;
    }

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

    .form-status {
        text-align: center;
        margin-top: 10px;
        font-weight: 700;
    }

    .success-msg { color: #4ade80; }
    .error-msg { color: #f87171; }

    /* Footer */
    .footer {
        padding: 40px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

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

    .footer-logo {
        font-family: var(--font-head);
        font-weight: 900;
        font-size: 1.5rem;
    }

    .footer-links a {
        color: var(--gray);
        margin: 0 15px;
        font-size: 0.9rem;
    }

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

    .copyright {
        color: var(--gray);
        font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-subtitle {
            margin: 0 auto 40px;
        }

        .hero-cards {
            margin-top: 60px;
            align-items: center;
        }

        .stat-card {
            width: 100%;
            max-width: 350px;
        }

        .card-1, .card-2, .card-3 {
            transform: none;
        }

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

        .gallery-grid {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto;
        }

        .item-1 { grid-column: 1 / 3; grid-row: auto; }
        .item-2 { grid-column: 1 / 2; grid-row: auto; }
        .item-3 { grid-column: 2 / 3; grid-row: auto; }
        .item-4 { grid-column: 1 / 3; grid-row: auto; }
        
        .gallery-item { height: 250px; }
        .item-1 { height: 350px; }

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

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--navy);
            flex-direction: column;
            padding: 40px;
            border-bottom: 1px solid var(--gold);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
        }

        .nav-links.active {
            transform: translateY(0);
        }

        .mobile-toggle {
            display: flex;
        }

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

        .btn-outline {
            margin-left: 0;
            margin-top: 15px;
            display: block;
        }
    }
