/* ============================================
   MAYA'S EVENTS - Premium Event Venue
   Color Palette: Gold/Champagne + Dark Navy
   Typography: Playfair Display + Lato
   ============================================ */

/* --- CSS Variables --- */
:root {
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --gold-dark: #A8893F;
    --navy: #0B1D3A;
    --navy-light: #132D54;
    --navy-dark: #060F1F;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DA;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-muted: #999999;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 30px rgba(11, 29, 58, 0.08);
    --shadow-lg: 0 20px 60px rgba(11, 29, 58, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

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

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

.loader {
    text-align: center;
    position: relative;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(201, 169, 110, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

.loader-text {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 3px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lang-current {
    color: var(--gold);
}

.lang-separator {
    opacity: 0.4;
    margin: 0 2px;
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../assets/images/hero-bg-5.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 15, 31, 0.7) 0%,
        rgba(11, 29, 58, 0.85) 50%,
        rgba(6, 15, 31, 0.95) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

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

@keyframes float-particle {
    0%, 100% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    50% { transform: translateY(-20vh) scale(1); }
}

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

.hero-badge {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 12px 32px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-title-accent {
    font-style: italic;
    color: var(--gold);
    animation-delay: 0.7s;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 1.1s forwards;
    margin-bottom: 80px;
}

.hero-scroll {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 0.8s 1.5s forwards;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

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

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

.btn-lg {
    padding: 20px 48px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Section Headers --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 48px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

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

.section-header .section-subtitle {
    margin-top: 8px;
}

/* --- About Section --- */
.about {
    background: var(--cream);
    min-height: 100vh;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.about .container {
    width: 100%;
}

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

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

.about-text {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 110, 0.2);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-price {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: var(--cream);
    border-radius: 50px;
}

/* --- Parallax Divider --- */
.parallax-divider {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../assets/images/event-hall.jpg') center/cover no-repeat fixed;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 15, 31, 0.88), rgba(11, 29, 58, 0.92));
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.parallax-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 16px;
}

.parallax-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Split Layout --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.split-layout-reverse {
    grid-template-columns: 1.5fr 1fr;
}

.split-left .section-tag,
.split-left .section-title,
.split-left .section-subtitle {
    margin-bottom: 12px;
}

.split-right .gallery-carousel,
.split-left .menu-gallery {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .split-layout,
    .split-layout-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split-right {
        text-align: left !important;
    }

    .split-right .section-subtitle {
        margin-left: 0 !important;
    }

    .split-right .menu-categories {
        justify-content: flex-start !important;
    }

    .split-left .gallery-tabs {
        justify-content: center !important;
    }
}

/* --- Gallery Section --- */
.gallery {
    background: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    padding: 10px 28px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background: transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.gallery-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-scroll-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.gallery-scroll-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    min-width: 100%;
    height: 550px;
    object-fit: contain;
    background: var(--cream);
}

.gallery-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.gallery-car-indicator {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-light);
    min-width: 60px;
    text-align: center;
}

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

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

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 29, 58, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* --- Menu Section --- */
.menu-mobile-title {
    display: none;
    text-align: center;
    margin-bottom: 24px;
}

.menu-section {
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.menu-cat-btn {
    padding: 10px 28px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background: transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.menu-gallery {
    max-width: 800px;
    margin: 0 auto;
}

.menu-scroll-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.menu-scroll-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-page {
    min-width: 100%;
    height: 550px;
    object-fit: contain;
    background: var(--cream);
}

.menu-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.menu-nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    background: transparent;
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-nav-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

.menu-page-indicator {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-light);
    min-width: 60px;
    text-align: center;
}

.menu-placeholder-text {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 16px;
}

/* --- Testimonials Section --- */
.testimonials {
    background: var(--navy);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.testimonials .section-tag {
    color: var(--gold);
}

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

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

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gold-light);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background: transparent;
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item:last-of-type {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-item h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

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

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

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

.open-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.open-badge.closed {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* --- Contact Form --- */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 32px;
}

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

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

.form-row .form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(11, 29, 58, 0.12);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 16px;
    font-size: 0.75rem;
    color: var(--gold-dark);
    background: var(--white);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Google Map --- */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    display: block;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    border: none;
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* --- Section Navigation --- */
.section-nav {
    position: fixed;
    bottom: 30px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.section-nav.visible {
    opacity: 1;
    visibility: visible;
}

.section-nav-btn {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-nav-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .section-nav {
        bottom: 20px;
        left: 16px;
    }

    .section-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
}

/* --- Footer --- */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(1.2);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-contact i {
    color: var(--gold);
    width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

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

/* --- Reveal Animations --- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 15, 31, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    touch-action: pinch-zoom;
}

@media (max-width: 768px) {
    .lightbox img {
        max-width: 98%;
        max-height: 95vh;
        border-radius: 4px;
        object-fit: contain;
    }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--navy);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--navy);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-counter {
        bottom: 16px;
        font-size: 0.85rem;
    }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

    .gallery-item-lg {
        grid-column: span 1;
    }

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

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

    .split-layout,
    .split-layout-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-slide {
        height: 400px;
    }

    .menu-page {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
        min-height: auto;
    }

    .about, .gallery, .menu-section, .testimonials {
        min-height: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        transition: var(--transition-slow);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    }

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

    .nav-link {
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-title-line {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Split layouts stack on mobile */
    .split-layout,
    .split-layout-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split-left, .split-right {
        text-align: center !important;
    }

    .split-right .section-subtitle {
        margin-left: auto !important;
        margin-right: auto;
    }

    .split-right .menu-categories,
    .split-left .gallery-tabs {
        justify-content: center !important;
    }

    .section-tag {
        padding-left: 0;
    }

    .section-tag::before {
        display: none;
    }

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

    .about-image-wrapper img {
        height: 300px;
    }

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

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

    .gallery-slide {
        height: 300px;
    }

    .menu-page {
        height: 55vw;
        object-fit: cover;
    }

    .menu-scroll-container {
        height: 55vw;
        overflow: hidden;
    }

    .menu-gallery {
        max-width: 100%;
    }

    .menu-scroll-container {
        border-radius: 8px;
    }

    .menu-cat-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .menu-categories {
        gap: 6px;
        margin-bottom: 16px;
    }

    .menu-mobile-title {
        display: block;
    }

    .menu-section .split-right .section-tag,
    .menu-section .split-right .section-title,
    .menu-section .split-right .section-subtitle {
        display: none;
    }

    /* Swap Meniu and Desert positions on mobile */
    .menu-cat-btn[data-category="desert"] {
        order: -1;
    }

    .menu-cat-btn[data-category="all"] {
        order: 10;
    }

    .gallery-carousel {
        max-width: 100%;
    }

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

    .contact-card {
        padding: 24px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-grid {
        gap: 24px;
    }

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

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        right: 88px;
        bottom: 20px;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .testimonials-slider {
        overflow: hidden;
        max-width: 100%;
        margin: 0 auto;
    }

    .testimonial-card {
        min-width: 100%;
        box-sizing: border-box;
    }

    .testimonials .container {
        padding: 0 16px;
        width: 100%;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.75rem;
    }

    .testimonial-author {
        gap: 10px;
    }

    .testimonial-author strong {
        font-size: 0.85rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    .testimonial-stars {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .testimonial-nav {
        margin-top: 24px;
    }

    .testimonial-btn {
        width: 36px;
        height: 36px;
    }

    .parallax-divider {
        min-height: 300px;
    }

    .section-nav {
        display: none;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 10px 20px;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* --- Print Styles --- */
@media print {
    .navbar, .whatsapp-float, .back-to-top, .hero-scroll, #preloader {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }
}