/* ============================================
   MAULI MANGALAM CELEBRATION — Regency Theme (Updated)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --gold: #D4AF37;
    --gold-dark: #AA8C2C;
    --gold-light: #F3E5AB;
    --gold-hover: #C5A028;

    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FFF9F0;
    --cream-dark: #F7F3EB;
    --dark-blue: #0A1128;
    --text-main: #2C2C2C;
    --text-muted: #666666;
    --border-light: #E5E7EB;

    /* Semantic */
    --emerald: #065F46;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Shapes */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 50px;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Layout */
    --max-width: 1320px;
    --navbar-height: 90px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: var(--space-md);
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* ---------- Utility Classes ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--space-3xl) 0;
}

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

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

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

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

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    height: 80px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.brand .icon {
    font-size: 1.8rem;
    color: var(--gold);
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar.scrolled .brand {
    color: var(--dark-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.navbar.scrolled .nav-link {
    color: var(--text-main);
}

.menu-toggle {
    display: none;
    background: none;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 1001;
}

.navbar.scrolled .menu-toggle {
    color: var(--text-main);
}

/* Language Switcher — shared styles */
.lang-switcher {
    display: flex;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1001;
}

/* Mobile lang-switcher hidden on desktop */
#langSwitcherNav {
    display: none;
}

/* Desktop lang-switcher shown inside nav-links */
.lang-switcher-desktop {
    margin-left: 1rem;
}

.lang-switcher .lang-btn {
    padding: 4px 12px;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.lang-switcher .lang-btn.active {
    background-color: var(--gold) !important;
    color: var(--dark-blue) !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.navbar.scrolled .lang-switcher {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .lang-switcher .lang-btn {
    color: var(--text-main);
}

.navbar.scrolled .lang-switcher .lang-btn.active {
    color: var(--dark-blue) !important;
}

/* Nav Close Button (inside drawer) */
.nav-close-btn {
    display: none;
}

/* Nav Overlay (dark backdrop behind drawer) */
.nav-overlay {
    display: none;
}

/* Nav CTA Button */
.nav-cta-btn {
    margin-left: 1rem;
    padding: 10px 24px;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.7);
    transform: scale(1.05);
    transition: transform 10s ease;
    position: absolute;
    inset: 0;
}

.hero:hover .hero-bg img {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Stats ---------- */
.stats-section {
    position: relative;
    z-index: 20;
    margin-top: -4rem;
    padding-bottom: 4rem;
}

.stats-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Services Carousel ---------- */
.services-section {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 3rem;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

/* Fixed: Added padding-top to prevent hover cut-off */
.services-carousel-wrapper {
    position: relative;
    padding: 3rem 2rem 2rem 2rem;
}

.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.services-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.service-card {
    flex: 0 0 320px;
    height: 450px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
}

.service-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

.service-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.carousel-btn.prev {
    left: -10px;
}

.carousel-btn.next {
    right: -10px;
}

/* ---------- Gallery ---------- */
.gallery-section {
    background: var(--white);
    padding: var(--space-3xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

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

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

/* ---------- Contact / Inquiry (Inspo 3) ---------- */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Image Collage */
.contact-visuals {
    position: relative;
    height: 600px;
}

.cv-collage-item {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    border: 4px solid var(--white);
}

.cv-1 {
    width: 55%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: 2;
}

.cv-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.cv-seal {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: var(--gold);
    font-size: 2rem;
    font-family: var(--font-heading);
}

/* Form Styling */
.contact-content {
    padding-top: 1rem;
}

.contact-content h2 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background: #FAFAFA;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.date-group {
    position: relative;
}

.form-date {
    cursor: pointer;
    color: var(--text-main);
}

/* Hide native browser calendar icon */
.form-date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.date-placeholder {
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
    font-family: var(--font-body);
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.form-date::-webkit-datetime-edit {
    opacity: 0;
}

.form-date.has-value::-webkit-datetime-edit {
    opacity: 1;
}

.form-date.has-value~.date-placeholder {
    display: none;
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

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

    60% {
        transform: translateY(-5px);
    }
}

/* ===== PREMIUM FOOTER ===== */
.footer {
    background: linear-gradient(175deg, #0a1628 0%, #0d1f3c 40%, #091525 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Divider */
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0 2rem;
    position: relative;
}

.footer-divider::before,
.footer-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 170, 110, 0.3), transparent);
}

.footer-divider-icon {
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-divider-icon i {
    color: var(--gold);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 4px rgba(200, 170, 110, 0.4));
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand */
.footer-logo {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(200, 170, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(200, 170, 110, 0.05);
}

.footer-social-link:hover {
    background: var(--gold);
    color: var(--dark-blue);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 170, 110, 0.3);
}

/* Titles */
.footer-title {
    font-family: 'Cinzel', serif;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

.footer-links li a i {
    font-size: 0.6rem;
    color: var(--gold);
    opacity: 0.5;
    transition: all 0.25s ease;
}

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

.footer-links li a:hover i {
    opacity: 1;
}

/* Contact List */
.footer-contact-list li a i,
.footer-contact-list li span i {
    font-size: 0.85rem;
    color: var(--gold);
    opacity: 0.7;
    width: 18px;
    text-align: center;
}

.footer-contact-list li a:hover {
    padding-left: 0;
}

/* Map */
.footer-map {
    margin-top: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(200, 170, 110, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
    display: block;
    border-radius: 12px;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(200, 170, 110, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 170, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: rgba(200, 170, 110, 0.05);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark-blue);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(200, 170, 110, 0.3);
}

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

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

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

    .gallery-item.tall {
        grid-row: span 1;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-visuals {
        height: 400px;
        order: 2;
    }

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

    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1rem;
    }

    /* Lang Switcher on mobile: show mobile one, hide desktop one */
    #langSwitcherNav {
        display: flex;
        margin-left: auto;
        margin-right: 0.75rem;
        padding: 2px;
        gap: 0.2rem;
    }

    .lang-switcher-desktop {
        display: none !important;
    }

    .lang-switcher .lang-btn {
        padding: 3px 10px;
        font-size: 0.75rem;
    }

    /* Mobile Navigation Fix */
    .menu-toggle {
        display: block;
        order: 3;
    }

    /* Dark Overlay behind drawer */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Raise navbar above overlay when drawer is open */
    .navbar.nav-open {
        z-index: 2000;
    }

    /* Hide lang-switcher, hamburger, and brand when drawer is open */
    .navbar.nav-open .lang-switcher,
    .navbar.nav-open .menu-toggle,
    .navbar.nav-open .brand {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    /* Close Button for drawer */
    .nav-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.08);
        color: var(--text-main);
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.25s ease;
        z-index: 1002;
    }

    .nav-close-btn:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.05);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1600;
        gap: 0.5rem;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        color: var(--text-main);
        font-size: 1.1rem;
        width: 100%;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-cta-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .navbar.scrolled .menu-toggle {
        color: var(--text-main);
    }

    /* Mobile Hero & Carousel */
    .hero-title {
        font-size: 2.2rem;
    }

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

    .services-carousel-wrapper {
        padding: 2rem 1rem;
    }

    .service-card {
        flex: 0 0 85vw;
        height: 400px;
    }

    /* Wider cards on mobile */
    .section-title {
        font-size: 2rem;
    }

    .section-header {
        padding: 0;
    }

    /* Mobile Contact & Footer */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .footer-brand-col {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer {
        padding: 0 0 1rem;
    }

    /* Adjust Buttons */
    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

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

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

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item img {
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    .brand {
        font-size: 1.2rem;
    }

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

    .btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ===== PREMIUM LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.3s ease forwards;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Top Bar */
.lightbox-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    z-index: 3002;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.lightbox-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.lightbox-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.05);
}

/* Navigation Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 24px rgba(200, 170, 110, 0.35);
}

.lightbox-arrow--left {
    left: 24px;
}

.lightbox-arrow--right {
    right: 24px;
}

/* Image Container */
.lightbox-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100vw - 160px);
    max-height: calc(100vh - 100px);
    padding: 60px 80px;
}

.lightbox-img {
    max-height: 85vh;
    max-width: 85vw;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.3s ease;
}

.lightbox-img.transitioning {
    opacity: 0;
    transform: scale(0.97);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-arrow {
        width: 42px;
        height: 42px;
    }

    .lightbox-arrow--left {
        left: 10px;
    }

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

    .lightbox-arrow svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-img-wrap {
        max-width: 100vw;
        padding: 60px 16px;
    }

    .lightbox-img {
        max-width: 95vw;
        max-height: 80vh;
        border-radius: 6px;
    }

    .lightbox-topbar {
        padding: 14px 16px;
    }

    .lightbox-close-btn {
        width: 38px;
        height: 38px;
    }
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    color: var(--dark-blue);
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
    z-index: 2000;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}