/* ========================================
   ZamZam Restaurant Landing Page Styles
   ======================================== */

/* === CSS Variables === */
:root {
    /* Brand Colors - From Restaurant Cover Image */
    --primary-color: #1a9392;        /* Teal - Primary brand color */
    --primary-dark: #157776;         /* Darker teal for depth */
    --primary-light: #2db5b4;        /* Lighter teal for hover */
    --secondary-color: #da9d28;      /* Gold - Accent and highlights */
    --accent-color: #da9d28;         /* Gold accent */
    --tertiary-color: #604d2d;       /* Brown - Text and borders */

    /* Light Theme Backgrounds */
    --white: #FFFFFF;
    --cream: #FFF9F0;                /* Warm cream background */
    --light-bg: #FAF6EF;             /* Light beige for alternating sections */
    --off-white: #FDFBF7;            /* Off-white for cards */
    --light-gold: #FFF8E7;           /* Light gold wash */
    --dark-bg: #604d2d;              /* Brown for footer */

    /* Text Colors */
    --text-dark: #604d2d;            /* Brown for headings */
    --text-body: #3d3d3d;            /* Dark gray for body text */
    --text-light: #F5F5F4;           /* Light text for dark backgrounds */
    --text-gray: #6b6b6b;            /* Medium gray for secondary text */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a9392 0%, #da9d28 100%);
    --gradient-gold-shimmer: linear-gradient(45deg, #da9d28, #e5b84d, #da9d28);
    --gradient-teal: linear-gradient(135deg, #1a9392 0%, #2db5b4 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 147, 146, 0.85) 0%, rgba(218, 157, 40, 0.75) 100%);
    --gradient-light: linear-gradient(180deg, #FFF9F0 0%, #FFFFFF 100%);
    --gradient-cream: linear-gradient(180deg, #FFFFFF 0%, #FAF6EF 100%);

    /* Fonts - Improved Multilingual Support */
    --font-primary: 'Inter', 'Noto Sans SC', sans-serif;
    --font-heading: 'Cormorant Garamond', 'Noto Serif SC', serif;
    --font-urdu: 'Noto Naskh Arabic', 'Amiri', serif;
    --font-chinese: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;

    /* Spacing */
    --section-padding: 60px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: url('/Content/images/restaurant-exterior.jpg') fixed center/cover no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: -1;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

.urdu, [lang="ur"] {
    font-family: var(--font-urdu);
    direction: rtl;
}

.chinese, [lang="zh"] {
    font-family: var(--font-chinese);
    font-weight: 400;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-fluid {
    max-width: 100%;
    padding: var(--container-padding);
}

/* === Floating Navigation === */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.floating-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(26, 147, 146, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-fast);
}

.scrolled .logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scrolled .nav-link {
    color: var(--text-dark);
}

.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-special {
    background: var(--gradient-primary);
    padding: 10px 20px !important;
    border-radius: 25px;
    color: var(--white) !important;
}

.nav-link-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
}

.nav-link-special::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-fast);
    border-radius: 3px;
}

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Decorative pattern background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 L10 0 L20 10 L10 20 Z" fill="none" stroke="%23da9d28" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 147, 146, 0.7) 0%, rgba(218, 157, 40, 0.6) 100%);
    opacity: 0.85;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--white);
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
}

.title-line {
    font-size: 0.35em;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--font-primary);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.title-main {
    font-size: 1em;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.title-sub {
    font-size: 0.45em;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--light-gold);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-location {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: var(--light-gold);
    font-weight: 600;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(218, 157, 40, 0.15);
}

.trust-badge .icon {
    font-size: 1.2em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 147, 146, 0.3);
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    z-index: 3;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
}

.scroll-indicator i {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.scroll-indicator p {
    color: var(--text-gray);
}

/* === Section Styles === */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* === Ornamental Dividers === */
.ornamental-divider {
    width: 100%;
    max-width: 300px;
    height: 40px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ornamental-divider::before,
.ornamental-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.ornamental-divider .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0 20px;
}

/* === About Section === */
.about-section {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(26, 147, 146, 0.15);
    border-bottom: 1px solid rgba(26, 147, 146, 0.15);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03),
                0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.about-text-wrapper {
    position: relative;
}

.about-text {
    max-width: 100%;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 450px;
    background-size: cover;
    background-position: center;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 147, 146, 0.2), rgba(218, 157, 40, 0.2));
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 350px;
    }
}

.lead {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 147, 146, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 968px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature-text.english {
    font-weight: 500;
    color: var(--text-dark);
}

.feature-text.urdu {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* === Menu Section === */
.menu-section {
    background: rgba(255, 249, 240, 0.65);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(218, 157, 40, 0.15);
    border-bottom: 1px solid rgba(218, 157, 40, 0.15);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03),
                0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Menu Category Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.menu-tab:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 147, 146, 0.2);
}

.menu-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* Spice Level Indicators */
.spice-level {
    display: flex;
    gap: 3px;
    margin-top: 10px;
}

.spice-icon {
    font-size: 1rem;
    color: var(--secondary-color);
}

.spice-icon.inactive {
    opacity: 0.2;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

@media (max-width: 1400px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #da9d28, #e5b84d, #da9d28, #e5b84d);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: sizzle 2s ease-in-out infinite;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(218, 157, 40, 0.35),
                0 0 30px rgba(218, 157, 40, 0.2);
    border-color: var(--secondary-color);
}

@keyframes sizzle {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    25% {
        background-position: 50% 50%;
        filter: brightness(1.1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1);
    }
    75% {
        background-position: 50% 50%;
        filter: brightness(1.1);
    }
}

.menu-item-image {
    height: 200px;
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Steam effect on hover */
.menu-item:hover .menu-item-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.03) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: steam 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes steam {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-30px) scaleX(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(-60px) scaleX(1.5);
        opacity: 0;
    }
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 25, 23, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.menu-badge {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.menu-item-content {
    padding: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.menu-item-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.menu-item-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.menu-item-name {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.menu-item-name.urdu {
    font-size: 1.3rem;
    text-align: right;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 15px;
}

.menu-item-cta {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.cta-content {
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* === Gallery Section === */
.gallery-section {
    background: rgba(96, 77, 45, 0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    border-top: 1px solid rgba(218, 157, 40, 0.3);
    border-bottom: 1px solid rgba(218, 157, 40, 0.3);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1),
                0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: var(--white);
}

.gallery-section .section-tag {
    background: rgba(217, 119, 6, 0.2);
    color: var(--accent-color);
}

/* Gallery Carousel */
.gallery-carousel-container {
    position: relative;
    margin-top: 50px;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gallery-carousel {
    display: flex;
    height: 500px;
    position: relative;
}

.gallery-slide {
    flex: 0 0 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 10;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-carousel {
        height: 350px;
    }

    .carousel-caption {
        font-size: 1.5rem;
        bottom: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* === Contact Section === */
.contact-section {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(26, 147, 146, 0.15);
    border-bottom: 1px solid rgba(26, 147, 146, 0.15);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03),
                0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Contact Section Layout */
.contact-top-row,
.contact-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Common Box Styling */
.wechat-box,
.contact-info-box,
.contact-form-box,
.map-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.wechat-box:hover,
.contact-info-box:hover,
.contact-form-box:hover,
.map-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(26, 147, 146, 0.15);
    border-color: var(--primary-color);
}

.contact-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-box-header i {
    font-size: 2rem;
}

.contact-box-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
}

.contact-box-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 25px;
}

/* WeChat Box */
.wechat-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wechat-box .wechat-qr {
    width: 180px;
    height: 180px;
    margin: 20px auto;
}

.wechat-box .btn-phone {
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
    justify-content: center;
}

/* Contact Info Box */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 249, 240, 0.6);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.info-row:hover {
    background: rgba(255, 249, 240, 0.9);
    transform: translateX(5px);
}

.info-icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.info-content a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid rgba(26, 147, 146, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 147, 146, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

.btn-submit {
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 147, 146, 0.4);
}

.btn-submit i {
    font-size: 1.2rem;
}

/* Map Box */
.map-box {
    display: flex;
    flex-direction: column;
}

.map-container {
    flex: 1;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-directions {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-directions:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 147, 146, 0.3);
}

/* Responsive Design for Contact Section */
@media (max-width: 968px) {
    .contact-top-row,
    .contact-bottom-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .wechat-box,
    .contact-info-box,
    .contact-form-box,
    .map-box {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .contact-box-header h3 {
        font-size: 1.5rem;
    }

    .contact-box-header i {
        font-size: 1.5rem;
    }

    .wechat-box,
    .contact-info-box,
    .contact-form-box,
    .map-box {
        padding: 25px 20px;
    }
}

/* Compact Contact Info */
.contact-info-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 147, 146, 0.15);
}

.info-item .info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-details p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.info-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-details a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .contact-info-compact {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Maps Container */
.maps-container {
    background: rgba(255, 249, 240, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.map-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(26, 147, 146, 0.2);
}

.map-label {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.map-label i {
    font-size: 1.3rem;
}

.map-frame-container {
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.map-frame-container iframe {
    display: block;
    width: 100%;
    pointer-events: auto;
}

/* Prevent auto-scroll from Baidu map */
.map-frame-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.map-wrapper:hover .map-frame-container::before {
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 968px) {
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .maps-container {
        padding: 25px;
    }

    .maps-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .maps-container {
        padding: 20px;
    }

    .maps-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 10px;
    }

    .map-label {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--gradient-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* === Reviews Section === */
.reviews-section {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(26, 147, 146, 0.15);
    border-bottom: 1px solid rgba(26, 147, 146, 0.15);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03),
                0 10px 30px rgba(0, 0, 0, 0.03);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 157, 40, 0.15);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.review-author-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.review-author-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* === WeChat & Contact Section === */
.wechat-section {
    background: rgba(255, 249, 240, 0.65);
    backdrop-filter: blur(8px);
    text-align: center;
    border-top: 1px solid rgba(218, 157, 40, 0.15);
    border-bottom: 1px solid rgba(218, 157, 40, 0.15);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03),
                0 10px 30px rgba(0, 0, 0, 0.03);
}

.wechat-content {
    max-width: 600px;
    margin: 0 auto;
}

.wechat-content-inline {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 249, 240, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wechat-qr {
    width: 200px;
    height: 200px;
    margin: 30px auto;
    padding: 15px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--secondary-color);
}

.wechat-qr img {
    width: 100%;
    height: 100%;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(26, 147, 146, 0.3);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 147, 146, 0.4);
}

.btn-phone .icon {
    font-size: 1.3em;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

/* === Footer === */
.footer {
    background: rgba(96, 77, 45, 0.85);
    backdrop-filter: blur(12px);
    color: var(--text-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(218, 157, 40, 0.3);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* === Animations === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .gallery-wide {
        grid-column: span 1;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Hero responsive */
    .hero-section {
        min-height: 100vh;
        padding: 100px 0 80px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .trust-badges {
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 100px 40px;
        transition: var(--transition-smooth);
        gap: 30px;
        align-items: flex-start;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-link {
        color: var(--text-dark);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-features,
    .menu-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* === Print Styles === */
@media print {
    .floating-nav,
    .scroll-indicator,
    .hamburger {
        display: none;
    }
}
