    :root {
        --navy: #1A2A3A;
        --navy-light: #2C3E50;
        --gold: #C5A059;
        --gold-light: #D4AF72;
        --white: #FFFFFF;
        --off-white: #F9FAFB;
        --gray: #6B7280;
        --light-gray: #E5E7EB;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Montserrat', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    /* Typography */
    h1, h2, h3, h4 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
    }

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

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

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

    .section {
        padding: 80px 0;
    }

    .bg-light {
        background-color: var(--off-white);
    }

    .bg-navy {
        background-color: var(--navy);
        color: var(--white);
    }

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

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

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

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

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

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--navy);
    }

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

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

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

    .btn-gold:hover {
        background-color: var(--gold-light);
        border-color: var(--gold-light);
        transform: translateY(-2px);
    }

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

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

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

    .btn-navy:hover {
        background-color: var(--navy-light);
        border-color: var(--navy-light);
    }

    /* Navbar */
    #navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

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

    .logo {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--navy);
    }

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

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

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

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: var(--navy);
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

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

    .mobile-link {
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--navy);
    }

    /* Hero Section */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('https://images.pexels.com/photos/12115016/pexels-photo-12115016.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(26, 42, 58, 0.9) 0%, rgba(26, 42, 58, 0.7) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
    }

    .hero-subtitle {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 4rem;
        color: var(--white);
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .hero-title .text-gold {
        color: var(--gold);
        font-style: italic;
    }

    .hero-desc {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 0.8rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .scroll-indicator:hover {
        opacity: 1;
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .service-card {
        background-color: var(--white);
        padding: 40px 30px;
        border-radius: 8px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid var(--light-gray);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--gold);
    }

    .service-icon {
        margin-bottom: 20px;
        display: inline-flex;
        padding: 20px;
        background-color: rgba(197, 160, 89, 0.1);
        border-radius: 50%;
    }

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

    .service-card p {
        font-size: 0.95rem;
        color: var(--gray);
        line-height: 1.7;
    }

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

    .about-image {
        position: relative;
    }

    .about-image img {
        border-radius: 8px;
        width: 100%;
        height: 500px;
        object-fit: cover;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .about-image-accent {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 200px;
        height: 200px;
        background-color: var(--gold);
        border-radius: 8px;
        z-index: -1;
    }

    .about-content .section-title {
        text-align: left;
        margin-top: 10px;
    }

    .about-text {
        color: var(--gray);
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .features-list {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .features-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 500;
        color: var(--navy);
    }

    /* Gallery */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .gallery-item {
        border-radius: 8px;
        overflow: hidden;
        height: 300px;
    }

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

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

    /* Contact Section */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info .section-title {
        color: var(--white);
        text-align: left;
        margin-top: 10px;
    }

    .contact-details {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-item svg {
        flex-shrink: 0;
        margin-top: 5px;
    }

    .contact-item h4 {
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--white);
    }

    .contact-item p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

    .contact-item a {
        color: rgba(255, 255, 255, 0.7);
    }

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

    .contact-form-wrapper {
        background-color: var(--white);
        padding: 40px;
        border-radius: 8px;
        color: var(--navy);
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: var(--navy);
    }

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

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

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--light-gray);
        border-radius: 4px;
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--navy);
        transition: border-color 0.3s ease;
    }

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

    .full-width {
        width: 100%;
    }

    .form-message {
        margin-top: 15px;
        font-size: 0.9rem;
        text-align: center;
    }

    .form-message.success {
        color: #10B981;
    }

    .form-message.error {
        color: #EF4444;
    }

    /* Footer */
    footer {
        background-color: var(--navy-light);
        color: var(--white);
        padding: 60px 0 30px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-logo h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .footer-logo p {
        color: rgba(255, 255, 255, 0.6);
    }

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

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

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

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
    }

    /* Animations */
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal-up {
        transform: translateY(30px);
    }

    .reveal-left {
        transform: translateX(-30px);
    }

    .reveal-right {
        transform: translateX(30px);
    }

    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        transform: none;
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .hero-title {
            font-size: 3rem;
        }

        .about-grid,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .about-image {
            order: -1;
        }

        .about-image img {
            height: 400px;
        }

        .about-image-accent {
            display: none;
        }

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

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

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

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

        .hero-desc {
            font-size: 1rem;
        }

        .section {
            padding: 60px 0;
        }

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

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

        .gallery-item {
            height: 250px;
        }

        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-links {
            flex-direction: column;
            gap: 15px;
        }
    }

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

        .hero-btns {
            flex-direction: column;
            width: 100%;
        }

        .hero-btns .btn {
            width: 100%;
        }

        .contact-form-wrapper {
            padding: 25px;
        }
    }
