:root {
    --navy: #0d1b2a;
    --navy-dark: #070d15;
    --navy-light: #1b2838;
    --gold: #d4a853;
    --gold-light: #e8c476;
    --gold-dark: #b8923e;
    --white: #ffffff;
    --gray-light: #fafafa;
    --gray: #e8e8e8;
    --text-dark: #1a1a1a;
    --text-light: #8a8a8a;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-luxury: 0 25px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 15px 40px rgba(212, 168, 83, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

::-moz-selection {
    background: var(--gold);
    color: var(--navy);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 100px;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(232, 163, 30, 0.3);
}

.preloader-progress {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 10px;
    animation: progressFill 2s ease-in-out forwards;
    box-shadow: 0 0 10px var(--gold), 0 0 5px var(--gold-light);
}

.preloader-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    30% {
        width: 45%;
    }

    60% {
        width: 70%;
    }

    80% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(7, 13, 21, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 12px 60px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(212, 168, 83, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 130px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo img {
    height: 90px;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.nav-cta:hover::before {
    width: 100%;
}

.nav-cta:hover {
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    overflow: hidden;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 7s ease-out;
}

.hero-swiper .swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(7, 13, 21, 0.7) 0%,
            rgba(13, 27, 42, 0.6) 40%,
            rgba(13, 27, 42, 0.8) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

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

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 30px;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 35px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(212, 168, 83, 0.04);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--gold);
    display: block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    margin-bottom: 55px;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    padding: 18px 48px;
    background: transparent;
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    background: rgba(212, 168, 83, 0.05);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll,
    .particle,
    .preloader-logo {
        animation: none !important;
    }
}

.hero-scroll i {
    font-size: 1.2rem;
    color: var(--gold);
}

/* Section Styles */
section {
    padding: 120px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-tag::before {
    left: -20px;
}

.section-tag::after {
    right: -20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 20px auto;
}

.section-desc {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
    font-weight: 400;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(212, 168, 83, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

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

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 580px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 70%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(13, 27, 42, 0.2);
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.25);
    z-index: 3;
    border: 4px solid var(--white);
    background: linear-gradient(135deg, #0d1b2a 60%, #1a2940 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-image-secondary img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.8s ease;
    filter: drop-shadow(0 5px 15px rgba(212, 168, 83, 0.3));
}

.about-image-secondary:hover img {
    transform: scale(1.08);
}

.about-decorative-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70%;
    height: 65%;
    border: 2px solid var(--gold);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .about-decorative-frame {
    opacity: 0.7;
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    z-index: 5;
    box-shadow: 0 10px 40px rgba(212, 168, 83, 0.4);
    border: 4px solid var(--white);
}

.about-experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.about-experience-badge .text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 4px;
    text-align: center;
    line-height: 1.3;
    max-width: 90px;
}

.about-logo-badge {
    position: absolute;
    bottom: 30px;
    left: 10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
    background: var(--white);
}

.about-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h3,
.about-content .about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--navy);
    border-left: 3px solid var(--gold);
    padding-left: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Vision & Mission Cards */
.about-vm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-vm-card {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid var(--gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

.about-vm-card i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.about-vm-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-vm-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(212, 168, 83, 0.04);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(212, 168, 83, 0.10);
    transform: translateX(4px);
}

.about-feature i {
    color: var(--gold);
    font-size: 1rem;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--navy);
    letter-spacing: 0.3px;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--gray-light) 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    border-bottom: 3px solid transparent;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-bottom-color: transparent;
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.15), 0 8px 20px rgba(212, 168, 83, 0.1);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-link {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15) translateY(-3px);
    background: rgba(212, 168, 83, 0.15);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

.service-card:hover .service-link {
    color: var(--gold);
    letter-spacing: 1px;
}

.service-icon {
    width: 75px;
    height: 75px;
    border: 1px solid rgba(13, 27, 42, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.04);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(26, 31, 58, 0.05);
    line-height: 1;
    z-index: 1;
    transition: color 0.5s ease;
}

.service-card:hover .service-number {
    color: rgba(232, 163, 30, 0.2);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    transition: color 0.5s ease;
}

.service-desc {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
    transition: color 0.5s ease;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(232, 163, 30, 0.1);
    border-radius: 50%;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(232, 163, 30, 0.1);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Projects Section */
.projects {
    background: linear-gradient(180deg, #fafafa 0%, var(--white) 50%, #f8f6f2 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(212, 168, 83, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.projects::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 10px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy);
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.project-card:hover {
    transform: scale(1.015);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Modern asymmetric layout — first card takes full left column height */
.project-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.project-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.project-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.project-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.project-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.project-card:first-child {
    grid-row: 1 / 3;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
}

.project-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 1rem;
    transform: translateY(-20px) scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(212, 168, 83, 0.4);
}

.project-card:hover .project-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.project-bg {
    width: 100%;
    height: 100%;
    background-color: #0d1b2a;
    background-size: cover;
    background-position: center;
    filter: brightness(0.92) saturate(0.9);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
}

.project-card:hover .project-bg {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}

/* Show More Button */
.projects-show-more {
    text-align: center;
    margin-top: 50px;
}

/* Full Page Projects Viewer */
.projects-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 0;
}

.projects-viewer.active {
    opacity: 1;
    visibility: visible;
}

.projects-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
    position: sticky;
    top: 0;
    background: rgba(7, 13, 21, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10;
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}

.projects-viewer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.projects-viewer-close {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-viewer-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: rotate(90deg);
}

.projects-viewer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 50px 80px;
}

.pv-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.projects-viewer.active .pv-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pv-card:nth-child(1) {
    transition-delay: 0.1s;
}

.pv-card:nth-child(2) {
    transition-delay: 0.15s;
}

.pv-card:nth-child(3) {
    transition-delay: 0.2s;
}

.pv-card:nth-child(4) {
    transition-delay: 0.25s;
}

.pv-card:nth-child(5) {
    transition-delay: 0.3s;
}

.pv-card:nth-child(6) {
    transition-delay: 0.35s;
}

.pv-card:nth-child(7) {
    transition-delay: 0.4s;
}

.pv-card:nth-child(8) {
    transition-delay: 0.45s;
}

.pv-card:nth-child(9) {
    transition-delay: 0.5s;
}

.pv-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(0.92) saturate(0.92);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.pv-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.95) contrast(0.95) saturate(0.95);
}

.pv-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px) scale(1.02);
}

.pv-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(7, 13, 21, 0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.pv-card:hover .pv-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.pv-card-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

.pv-card-overlay h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Project Lightbox */
.project-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.project-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    text-align: center;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #112240 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -150px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(212, 168, 83, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials .section-tag,
.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-line {
    background: var(--gold);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    text-align: center;
    padding: 60px 50px;
    position: relative;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    font-weight: 400;
    padding-top: 30px;
}

.testimonial-quote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonial-author::before {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.testimonial-role {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.testimonials .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 30px;
    border-radius: 5px;
}

/* Process Section */
.process {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 80%, rgba(212, 168, 83, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(13, 27, 42, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border: 2px solid rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid rgba(212, 168, 83, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.process-step:hover .process-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.process-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    max-width: 150px;
}

/* FAQ Section */
.faq {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 100px 5% 80px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(212, 168, 83, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 5% 50px;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(212, 168, 83, 0.05);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(212, 168, 83, 0.05);
    border-radius: 50%;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 168, 83, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--gold);
}

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

.contact-item-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 50%;
}

.contact-social:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 168, 83, 0.3);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
    border-radius: 2px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: rgba(212, 168, 83, 0.03);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.08);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

.form-submit {
    grid-column: span 2;
}

.form-submit .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 100px 60px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 80px;
    object-fit: contain;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 14px 20px;
    background: var(--gold);
    border: none;
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

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

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

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

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

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    border: none;
    border-radius: 50%;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.5s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    transition: color 0.3s ease;
}

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

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
}

/* Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Responsive */
@media (max-width: 1024px) {
    section {
        padding: 80px 30px;
    }

    .navbar {
        padding: 15px 30px;
    }

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

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

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

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

    .project-card:nth-child(1),
    .project-card:nth-child(2),
    .project-card:nth-child(3),
    .project-card:nth-child(4),
    .project-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        min-height: 250px;
    }

    .project-card:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo img {
        height: 70px;
        width: auto;
        object-fit: contain;
        border-radius: 0;
    }

    .navbar.scrolled .nav-logo img {
        height: 56px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

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

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

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

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

    .about-image-main {
        width: 70%;
        height: 65%;
    }

    .about-image-secondary {
        width: 55%;
        height: 50%;
    }

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

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

    .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .project-card:nth-child(1),
    .project-card:nth-child(2),
    .project-card:nth-child(3),
    .project-card:nth-child(4),
    .project-card:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .project-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

    .form-group.full-width,
    .form-submit {
        grid-column: span 1;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .cursor,
    .cursor-dot {
        display: none;
    }

    .projects-viewer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 15px;
    }

    .projects-viewer-header {
        padding: 20px;
    }

    .projects-viewer-title {
        font-size: 1.4rem;
    }

    .lightbox-img {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}