/* ===================================
   CSS Reset & Variables
   =================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #f093fb;
    --dark: #1a202c;
    --gray-900: #171923;
    --gray-800: #1a202c;
    --gray-700: #2d3748;
    --gray-600: #4a5568;
    --gray-500: #718096;
    --gray-400: #a0aec0;
    --gray-300: #cbd5e0;
    --gray-200: #e2e8f0;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --success: #48bb78;
    --warning: #ecc94b;
    --error: #f56565;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.25);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--gray-900);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.navbar.scrolled .logo { color: var(--primary); }
.navbar.scrolled .logo-text { color: var(--gray-900); }
.logo-img { height: 45px; width: auto; }
.logo-text { font-family: 'Playfair Display', serif; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-menu a {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.nav-menu a:hover::after { width: 100%; }
.navbar.scrolled .nav-menu a { color: var(--gray-700); }
.navbar.scrolled .nav-menu a::after { background: var(--primary); }
.navbar.scrolled .nav-menu a:hover { color: var(--primary); }

.nav-cta {
    background: var(--white) !important;
    color: var(--primary) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
}
.navbar.scrolled .nav-cta {
    background: var(--gradient) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem;
}
.navbar.scrolled .nav-toggle { color: var(--gray-700); }

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn .material-icons-round { font-size: 1.25rem; }

.btn-primary {
    background: var(--white);
    color: var(--primary);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 1.5rem 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.85) 0%, rgba(118,75,162,0.85) 100%);
}

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

.hero-tagline {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

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

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll a {
    color: var(--white);
    animation: bounce 2s infinite;
}
.hero-scroll .material-icons-round { font-size: 2.5rem; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===================================
   Sections
   =================================== */
.section { padding: 6rem 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===================================
   About Section
   =================================== */
.about-content { max-width: 900px; margin: 0 auto; }

.about-text {
    text-align: center;
    margin-bottom: 3rem;
}
.about-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.highlight-icon {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.highlight-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ===================================
   Services Section
   =================================== */
.services { background: var(--gray-100); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-icon .material-icons-round {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}
.service-card > p {
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}
.service-features .material-icons-round {
    font-size: 1rem;
    color: var(--success);
}

/* ===================================
   Features Section
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}
.feature-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===================================
   Menu Section
   =================================== */
.menu { background: var(--white); }

.menu-category {
    margin-bottom: 3rem;
}
.menu-category:last-child { margin-bottom: 0; }

.category-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
    display: inline-block;
}

.menu-items {
    display: grid;
    gap: 1.25rem;
}

.menu-item {
    padding: 1rem 0;
    border-bottom: 1px dashed var(--gray-200);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.menu-item-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-800);
}
.menu-item-dots {
    flex: 1;
    border-bottom: 2px dotted var(--gray-300);
    margin: 0 0.5rem;
}
.menu-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
.menu-item-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Products Section
   =================================== */
.products { background: var(--gray-100); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}
.product-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}
.product-content > p {
    color: var(--gray-500);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.product-features {
    list-style: none;
}
.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}
.product-features .material-icons-round {
    font-size: 1.1rem;
    color: var(--success);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(102,126,234,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .material-icons-round {
    font-size: 2.5rem;
    color: var(--white);
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    background: var(--gradient);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
    padding: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Process/How It Works Section
   =================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: var(--transition);
}

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

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials { background: var(--gray-100); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 1rem;
}
.testimonial-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-avatar .material-icons-round {
    font-size: 1.5rem;
    color: var(--white);
}
.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-800);
}
.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===================================
   Team Section
   =================================== */
.team { background: var(--white); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.team-avatar .material-icons-round {
    font-size: 4rem;
    color: var(--white);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}
.team-role {
    display: block;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.team-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--gradient);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact { background: var(--gray-100); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.contact-item .material-icons-round {
    font-size: 1.75rem;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.contact-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
}
.contact-item a {
    color: var(--primary);
}
.contact-item a:hover {
    text-decoration: underline;
}

.contact-hours {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.contact-hours h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
.contact-hours .material-icons-round {
    font-size: 1.25rem;
    color: var(--primary);
}
.contact-hours ul {
    list-style: none;
}
.contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-600);
}
.contact-hours li:last-child { border-bottom: none; }

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}
.form-group textarea { resize: vertical; }

.contact-form .btn-primary {
    background: var(--gradient);
    color: var(--white);
    margin-top: 0.5rem;
}
.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-section {}
.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}
.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 1rem;
}
.footer-tagline {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}
.footer-social i { font-size: 1rem; }

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

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.25rem;
}
.footer-column ul { list-style: none; }
.footer-column li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-column li .material-icons-outlined { font-size: 1rem; }
.footer-column a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-legal-links {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-legal-links a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

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

.footer-attribution {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.footer-attribution a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-attribution a:hover {
    color: var(--accent);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer-attribution {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* ===================================
   Cookie Consent Banner
   =================================== */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--gray-900);
    color: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease-out;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#cookie-consent.hidden {
    transform: translateY(100%);
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: var(--gray-400);
    text-decoration: underline;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.cookie-link:hover {
    color: var(--white);
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }
}

/* ===================================
   Animations
   =================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 991px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    .nav-menu.active { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-200);
    }
    .nav-menu a::after { display: none; }
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .hero { padding: 6rem 1rem 3rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Stats mobile */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.85rem; }

    /* Process mobile */
    .process-timeline { grid-template-columns: 1fr; }
    .process-step { padding: 1.5rem; }

    /* FAQ mobile */
    .faq-question { font-size: 1rem; padding: 1.25rem; }
    .faq-answer p { padding: 0 1.25rem 1.25rem; }
}

/* ===================================
   Lightbox Gallery (Mobile Swipe Support)
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    text-align: center;
    max-width: 80%;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}
.lightbox-counter {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Gallery item hover effects */
.gallery-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-item .zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
}
.gallery-item:hover .zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Swipe indicator for mobile */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .lightbox-swipe-hint {
        position: fixed;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

/* ===================================
   SVG Background Patterns
   =================================== */
.pattern-dots {
    background-image: radial-gradient(var(--gray-300) 1px, transparent 1px);
    background-size: 20px 20px;
}
.pattern-grid {
    background-image: linear-gradient(var(--gray-200) 1px, transparent 1px),
                      linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
    background-size: 40px 40px;
}
.pattern-waves {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f3f4f6' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
}
.bg-gradient-subtle {
    background: linear-gradient(135deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 100%);
}
.bg-gradient-primary {
    background: var(--gradient);
    color: white;
}

/* Decorative shapes */
.shape-blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    animation: blob-morph 15s ease-in-out infinite;
}
@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* ===================================
   Enhanced Menu Section
   =================================== */
.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.menu-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-300);
    background: transparent;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.menu-category-btn:hover,
.menu-category-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.menu-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.menu-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
}
.menu-item-content {
    flex: 1;
}
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.menu-item-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-900);
}
.menu-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
.menu-item-description {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}
.menu-item-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.menu-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: var(--gray-100);
    border-radius: 20px;
    color: var(--gray-600);
}
.menu-tag.spicy { background: #fee2e2; color: #dc2626; }
.menu-tag.popular { background: #fef3c7; color: #d97706; }
.menu-tag.new { background: #d1fae5; color: #059669; }
