/* SendMe - Modern Food Delivery Website */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #5B4FD9;
    --primary-dark: #4A3FC8;
    --primary-light: #7B6FE9;
    --secondary: #FF6B6B;
    --accent: #00D9A5;
    --gradient-primary: linear-gradient(135deg, #5B4FD9 0%, #7B6FE9 100%);
    --gradient-hero: linear-gradient(135deg, #5B4FD9 0%, #7B6FE9 50%, #A594F9 100%);
    --text-dark: #1A1A2E;
    --text-medium: #4A4A68;
    --text-light: #9E9E9E;
    --bg-light: #FAFAFA;
    --bg-cream: #FFF8F6;
    --white: #FFFFFF;
    --border: #EEEEEE;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-primary: 0 8px 30px rgba(91, 79, 217, 0.3);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
.gradient-text {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 14px 28px; border: none; border-radius: 12px;
    font-weight: 600; font-size: 1rem; text-decoration: none;
    cursor: pointer; transition: all 0.3s ease; font-family: inherit;
}
.btn-primary { background: var(--gradient-primary); color: white; box-shadow: var(--shadow-primary); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(91, 79, 217, 0.4); }
.btn-secondary { background: linear-gradient(135deg, #00D9A5, #00F5C4); color: white; }
.btn-secondary:hover { transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-glass:hover { background: rgba(255,255,255,0.25); }
.btn-large { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-primary-nav { background: var(--gradient-primary); color: white; padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    padding: 0.8rem 0; box-shadow: var(--shadow-sm);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo .logo { height: 42px; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--primary); }
.nav-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.nav-toggle .bar { width: 24px; height: 2.5px; background: var(--text-dark); border-radius: 2px; transition: 0.3s; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 0.95rem; font-weight: 500; color: var(--text-dark); transition: color 0.3s; }
.dropdown-toggle:hover { color: var(--primary); }
.dropdown-toggle i { font-size: 0.7rem; transition: transform 0.3s; }
.nav-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: -40px; background: white; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 0.5rem; min-width: 260px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(5px); }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 0.8rem; border-radius: 12px; text-decoration: none; color: var(--text-dark); transition: background 0.3s; }
.dropdown-item:hover { background: var(--bg-light); }
.dropdown-item i { width: 36px; height: 36px; background: var(--gradient-primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; }
.dropdown-item div { display: flex; flex-direction: column; }
.dropdown-item strong { font-size: 0.9rem; }
.dropdown-item span { font-size: 0.75rem; color: var(--text-light); }

/* Hero */
.hero {
    min-height: 100vh; background: var(--gradient-hero);
    position: relative; display: flex; align-items: center;
    padding: 100px 0 80px; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-title { font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 1.5rem; line-height: 1.15; }
.hero-description { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 2rem; }

.trust-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.trust-badge i { width: 32px; height: 32px; background: rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; }

/* Phone Mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup { position: relative; }
.phone-screen {
    max-width: 280px; border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: phoneFloat 4s ease-in-out infinite;
}
.mockup-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%; z-index: -1;
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; }
.hero-wave svg { display: block; width: 100%; }
.wave-fill { fill: white; transition: fill 0.3s; }
body.dark .wave-fill { fill: #0F0F1A; }

/* Stats Banner */
.stats-banner { background: white; padding: 50px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.9rem; color: var(--text-medium); }

/* Section Styles */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; background: rgba(91, 79, 217, 0.1); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.section-tag.light { background: rgba(255,255,255,0.2); color: white; }
.section-title { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-medium); font-size: 1.05rem; }

/* Cuisine Categories */
.cuisines-section { padding: 60px 0 40px; background: white; overflow: hidden; }
.cuisine-scroll { overflow-x: auto; padding: 0 20px 20px; scrollbar-width: none; }
.cuisine-scroll::-webkit-scrollbar { display: none; }
.cuisine-track { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.cuisine-item { text-decoration: none; text-align: center; transition: transform 0.3s; }
.cuisine-item:hover { transform: translateY(-5px); }
.cuisine-img { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 0.5rem; box-shadow: var(--shadow-sm); border: 3px solid transparent; transition: border-color 0.3s; }
.cuisine-item:hover .cuisine-img { border-color: var(--primary); }
.cuisine-img img { width: 100%; height: 100%; object-fit: cover; }
.cuisine-item span { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }

/* Services */
.services { padding: 80px 0; background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
    background: white; border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.service-image { position: relative; height: 160px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-time { position: absolute; bottom: 10px; left: 10px; background: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.service-time i { color: var(--primary); }
.service-content { padding: 1.2rem; }
.service-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-content p { font-size: 0.85rem; color: var(--text-medium); line-height: 1.5; }

/* Features Ticker */
.app-features { padding: 80px 0; background: white; overflow: hidden; }
.ticker-wrapper {
    overflow: hidden; padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker-track { display: flex; gap: 1.5rem; width: max-content; animation: ticker 25s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.feature-card-mini { background: var(--bg-light); padding: 1.5rem 2rem; border-radius: 16px; text-align: center; min-width: 150px; flex-shrink: 0; transition: all 0.3s; }
.feature-card-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feature-icon-box { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.8rem; font-size: 1.2rem; color: white; }
.feature-icon-box.green { background: linear-gradient(135deg, #00D9A5, #00F5C4); }
.feature-icon-box.red { background: linear-gradient(135deg, #FF6B6B, #FF8E8E); }
.feature-icon-box.blue { background: linear-gradient(135deg, #5B4FD9, #7B6FE9); }
.feature-icon-box.purple { background: linear-gradient(135deg, #9B59B6, #BE90D4); }
.feature-icon-box.yellow { background: linear-gradient(135deg, #F9CA24, #F0E130); }
.feature-icon-box.teal { background: linear-gradient(135deg, #00CEC9, #81ECEC); }
.feature-icon-box.orange { background: linear-gradient(135deg, #FF9F43, #FECA57); }
.feature-icon-box.pink { background: linear-gradient(135deg, #FD79A8, #FDCBDF); }
.feature-card-mini span { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }

/* How It Works - Clean Minimal Style */
.how-it-works { padding: 80px 0; background: #FAF9F7; }
body.dark .how-it-works { background: #1A1A2E; }

.how-subtitle { font-size: 1rem; color: var(--text-medium); margin-bottom: 0.3rem; }
.how-title { font-size: 2.2rem; font-weight: 800; color: var(--secondary); }

.steps-row { display: flex; justify-content: center; gap: 4rem; margin-top: 3rem; }

.step-simple { text-align: center; max-width: 280px; }

.step-icon-line {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.step-simple h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.8rem; }
.step-simple p { color: var(--text-medium); font-size: 0.9rem; line-height: 1.6; }

/* Partner Section */
.partner-section { padding: 80px 0; background: white; }
.partner-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.partner-card { background: var(--bg-light); padding: 2rem; border-radius: 20px; text-align: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
.partner-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: white; }
.partner-card.featured { border: 2px solid var(--primary); background: white; }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.partner-icon { display: none; }
.partner-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.partner-card > p { color: var(--text-medium); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; }
.partner-emoji { font-size: 3rem; margin-bottom: 1rem; }
.partner-perks { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.partner-perks li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.9rem; color: var(--text-medium); }
.partner-perks i { color: #00D9A5; font-size: 0.85rem; }

/* Testimonials */
.testimonials { padding: 80px 0; background: var(--bg-light); }
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: white; padding: 2rem; border-radius: 16px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #F9CA24; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card > p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 45px; height: 45px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* Download Section - Zomato Style */
.download-section { padding: 80px 0; background: var(--bg-light); }

.download-card {
    background: #FFF0ED;
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
}
body.dark .download-card { background: #16213E; }

.download-left h2 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 1rem; }
.download-left p { color: var(--text-medium); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; }

.store-buttons { display: flex; gap: 1rem; }

.store-img-btn {
    display: inline-block;
    transition: all 0.3s;
    border-radius: 12px;
    overflow: hidden;
}
.store-img-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.store-img-btn img { height: 50px; display: block; border-radius: 10px; }
body.dark .store-img-btn { background: #000; border-radius: 10px; }
body.dark .store-img-btn img { border: 1px solid #333; }

/* Phone Mockup */
.download-right { display: flex; justify-content: center; }

.phone-mockup-dl {
    width: 280px;
    background: #0F2B46;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    animation: phoneBob 3s ease-in-out infinite;
}
body.dark .phone-mockup-dl { background: #0F0F1A; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }

@keyframes phoneBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.phone-notch {
    width: 100px; height: 25px;
    background: #0F2B46;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
body.dark .phone-notch { background: #0F0F1A; }

.phone-inner {
    background: white;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
body.dark .phone-inner { background: #1A1A2E; }

.qr-text { font-size: 1rem; font-weight: 600; color: #0F2B46; line-height: 1.4; }
body.dark .qr-text { color: #F0F0F0; }

.qr-image {
    width: 170px; height: 170px;
    border-radius: 12px;
    background: white;
    padding: 5px;
    animation: qrPulse 2s ease-in-out infinite;
}

@keyframes qrPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 111, 97, 0.3); }
    50% { box-shadow: 0 0 0 15px rgba(255, 111, 97, 0); }
}

/* Cities */
.cities-section { padding: 80px 0; background: white; }
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.city-card { background: var(--bg-light); padding: 1.5rem; border-radius: 16px; text-align: center; transition: all 0.3s; }
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.city-status { font-size: 0.75rem; font-weight: 600; color: #00D9A5; margin-bottom: 0.5rem; }
.city-status.coming { color: var(--secondary); }
.city-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.city-card p { font-size: 0.85rem; color: var(--text-medium); }
.city-card.coming { border: 2px dashed var(--border); background: white; }

/* Our Story */
.story-section { padding: 80px 0; background: white; }
.story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-text p { color: var(--text-medium); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 3px; background: var(--border); border-radius: 3px; }
.timeline-item { position: relative; margin-bottom: 1.5rem; }
.timeline-dot { position: absolute; left: -26px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--border); border: 3px solid white; box-shadow: 0 0 0 2px var(--border); }
.timeline-item:hover .timeline-dot, .timeline-dot.active { background: var(--primary); box-shadow: 0 0 0 2px var(--primary); }
.timeline-year { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.timeline-content p { color: var(--text-medium); font-size: 0.9rem; margin: 0; }

.story-visual { display: flex; justify-content: center; }
.story-image-placeholder { width: 100%; max-width: 400px; height: 350px; background: linear-gradient(135deg, rgba(91,79,217,0.1) 0%, rgba(123,111,233,0.1) 100%); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; border: 2px dashed var(--border); }
.placeholder-icon { font-size: 4rem; }
.story-image-placeholder span { color: var(--text-light); font-weight: 600; }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--bg-light); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; cursor: pointer; font-weight: 600; color: var(--text-dark); transition: all 0.3s; }
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s; color: var(--text-light); font-size: 0.9rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1.2rem; color: var(--text-medium); line-height: 1.7; }

/* Contact */
.contact-section { padding: 80px 0; background: var(--text-dark); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 2rem; color: white; margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: rgba(255,255,255,0.05); border-radius: 12px; text-decoration: none; transition: all 0.3s; }
.contact-method:hover { background: rgba(255,255,255,0.1); transform: translateX(5px); }
.contact-method i { width: 45px; height: 45px; background: var(--gradient-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }
.contact-method.whatsapp i { background: #25D366; }
.contact-method strong { display: block; color: white; font-size: 0.95rem; }
.contact-method span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.contact-form { background: white; padding: 2rem; border-radius: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 1rem; font-family: inherit; transition: all 0.3s; background: var(--bg-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Footer */
.footer { background: #0F0F1A; color: white; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-logo { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-links h4 { font-size: 1rem; margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* 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: white; font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 999; }

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-cards { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .download-card { grid-template-columns: 1fr; text-align: center; padding: 2rem; }
    .store-buttons { justify-content: center; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; left: -100%; top: 65px; flex-direction: column; background: white; width: 100%; padding: 2rem; transition: 0.3s; box-shadow: var(--shadow-lg); gap: 1rem; }
    .nav-menu.active { left: 0; }
    .nav-toggle { display: flex; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-visual { order: -1; margin-bottom: 1rem; }
    .phone-screen { max-width: 200px; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .trust-badges { justify-content: center; }
    .stats-grid { gap: 2rem; }
    .cuisine-track { justify-content: flex-start; flex-wrap: nowrap; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; gap: 2.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .story-content { grid-template-columns: 1fr; }
    .story-visual { order: -1; }
    .form-row { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .stat-number { font-size: 1.8rem; }
    .store-buttons { flex-direction: column; }
    .cities-grid { grid-template-columns: 1fr; }
    .cuisine-img { width: 80px; height: 80px; }
}

/* Theme Controls */
.theme-controls { display: flex; align-items: center; gap: 0.5rem; }

/* Color Picker */
.color-picker-wrap { position: relative; }

.color-picker-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-light); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; color: var(--secondary);
    transition: all 0.3s;
}
.color-picker-btn:hover { border-color: var(--secondary); }
body.dark .color-picker-btn { background: #2A2A3E; border-color: #3A3A4E; }

.color-dropdown {
    position: absolute; top: 50px; right: 0;
    background: white; border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);
    padding: 0.8rem; min-width: 230px;
    max-height: 420px; overflow-y: auto;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}
.color-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
body.dark .color-dropdown { background: #1A1A2E; box-shadow: 0 10px 50px rgba(0,0,0,0.4); }

.color-dropdown-title {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-light);
    padding: 0.3rem 0.8rem 0.6rem; border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem;
}
body.dark .color-dropdown-title { border-color: #2A2A3E; }

.color-option {
    display: flex; align-items: center; gap: 8px;
    padding: 0.6rem 0.8rem; border-radius: 10px;
    cursor: pointer; font-size: 0.85rem; font-weight: 500;
    color: var(--text-dark); transition: all 0.2s;
}
.color-option:hover { background: var(--bg-light); }
body.dark .color-option { color: #F0F0F0; }
body.dark .color-option:hover { background: #2A2A3E; }
.color-option.active { background: var(--bg-light); font-weight: 600; }
body.dark .color-option.active { background: #2A2A3E; }

.color-dropdown-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
body.dark .color-dropdown-divider { background: #2A2A3E; }

.color-dot {
    width: 16px; height: 16px; border-radius: 50%;
    display: inline-block; flex-shrink: 0;
    border: 2px solid rgba(0,0,0,0.1);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-light); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; color: var(--text-dark);
    transition: all 0.3s ease;
}
.theme-toggle:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Dark Mode */
body.dark {
    --text-dark: #F0F0F0;
    --text-medium: #B0B0B0;
    --text-light: #777;
    --bg-light: #1A1A2E;
    --bg-cream: #16213E;
    --white: #0F0F1A;
    --border: #2A2A3E;
}

body.dark .navbar { background: rgba(15, 15, 26, 0.95); }
body.dark .nav-link { color: #F0F0F0; }
body.dark .dropdown-toggle { color: #F0F0F0; }
body.dark .dropdown-menu { background: #1A1A2E; }
body.dark .dropdown-item { color: #F0F0F0; }
body.dark .dropdown-item:hover { background: #2A2A3E; }
body.dark .theme-toggle { background: #2A2A3E; border-color: #3A3A4E; color: #FFD93D; }
body.dark .theme-toggle:hover { background: #FFD93D; color: #0F0F1A; }

body.dark .service-card { background: #1A1A2E; border-color: #2A2A3E; }
body.dark .service-content h3 { color: #F0F0F0; }
body.dark .service-time { background: #1A1A2E; color: #F0F0F0; }

body.dark .feature-card-mini { background: #1A1A2E; }
body.dark .feature-card-mini span { color: #F0F0F0; }

body.dark .step-card { background: #1A1A2E; }
body.dark .step-card h3 { color: #F0F0F0; }

body.dark .partner-card { background: #1A1A2E; }
body.dark .partner-card.featured { border-color: var(--secondary); }
body.dark .partner-card h3 { color: #F0F0F0; }

body.dark .testimonial-card { background: #1A1A2E; }
body.dark .city-card { background: #1A1A2E; }
body.dark .city-card h3 { color: #F0F0F0; }
body.dark .city-card.coming { background: #0F0F1A; border-color: #2A2A3E; }

body.dark .faq-item { background: #1A1A2E; }
body.dark .faq-question { color: #F0F0F0; }

body.dark .contact-form { background: #1A1A2E; }
body.dark .form-group input,
body.dark .form-group select,
body.dark .form-group textarea { background: #0F0F1A; border-color: #2A2A3E; color: #F0F0F0; }

body.dark .qr-box { background: #1A1A2E; border-color: #2A2A3E; }
body.dark .qr-box img { background: white; padding: 8px; border-radius: 8px; }
body.dark .qr-box p { color: #B0B0B0; }

body.dark .story-image-placeholder { background: rgba(255,255,255,0.05); border-color: #2A2A3E; }

body.dark .stats-banner { background: #0F0F1A; border-color: #2A2A3E; }
body.dark .section-title { color: #F0F0F0; }
body.dark .section-tag { background: rgba(255, 111, 97, 0.15); }

body.dark .services { background: #1A1A2E; }
body.dark .app-features { background: #0F0F1A; }
body.dark .cuisines-section { background: #0F0F1A; }
body.dark .cuisine-item span { color: #F0F0F0; }
body.dark .partner-section { background: #0F0F1A; }
body.dark .testimonials { background: #1A1A2E; }
body.dark .download-section { background: linear-gradient(135deg, #0F2B46 0%, #1A3D5C 100%); }
body.dark .cities-section { background: #0F0F1A; }
body.dark .faq-section { background: #1A1A2E; }
body.dark .story-section { background: #0F0F1A; }
body.dark .story-text p { color: #B0B0B0; }
body.dark .how-it-works { background: #1A1A2E; }
body.dark .hero { background: linear-gradient(135deg, #0F0F1A 0%, #16213E 50%, #1A1A2E 100%); }
body.dark .hero-title { color: #F0F0F0; }
body.dark .phone-screen { box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
body.dark .mockup-glow { background: radial-gradient(circle, rgba(255, 111, 97, 0.1) 0%, transparent 70%); }

body.dark .contact-section { background: #0F0F1A; }
body.dark .contact-method { background: rgba(255,255,255,0.03); }
body.dark .contact-method:hover { background: rgba(255,255,255,0.06); }

body.dark .download-section { background: #0F0F1A; }

body.dark .nav-menu .nav-link { color: #F0F0F0; }
body.dark .nav-logo .logo { filter: brightness(0) invert(1); }
body.dark .footer-bottom { border-color: #1A1A2E; }

/* Dark Mode - Comprehensive Text Readability Fix */
body.dark h1, body.dark h2, body.dark h3, body.dark h4 { color: #F0F0F0; }
body.dark p { color: #B0B0B0; }
body.dark .section-title { color: #F0F0F0; }
body.dark .section-subtitle { color: #B0B0B0; }
body.dark .stat-number { color: var(--secondary); }
body.dark .stat-label { color: #B0B0B0; }
body.dark .how-subtitle { color: #999; }
body.dark .how-title { color: var(--secondary); }
body.dark .step-simple h3 { color: #F0F0F0; }
body.dark .step-simple p { color: #B0B0B0; }
body.dark .step-icon-line { color: var(--secondary); }
body.dark .service-content h3 { color: #F0F0F0; }
body.dark .service-content p { color: #B0B0B0; }
body.dark .feature-card-mini span { color: #F0F0F0; }
body.dark .partner-card h3 { color: #F0F0F0; }
body.dark .partner-card > p { color: #B0B0B0; }
body.dark .partner-perks li { color: #B0B0B0; }
body.dark .testimonial-card > p { color: #B0B0B0; }
body.dark .testimonial-author strong { color: #F0F0F0; }
body.dark .testimonial-author span { color: #888; }
body.dark .city-card h3 { color: #F0F0F0; }
body.dark .city-card p { color: #B0B0B0; }
body.dark .faq-question span { color: #F0F0F0; }
body.dark .faq-answer p { color: #B0B0B0; }
body.dark .download-left h2 { color: #F0F0F0; }
body.dark .download-left p { color: #B0B0B0; }
body.dark .qr-text { color: #F0F0F0; }
body.dark .story-text p { color: #B0B0B0; }
body.dark .timeline-year { color: var(--secondary); }
body.dark .timeline-content p { color: #B0B0B0; }
body.dark .cuisine-item span { color: #F0F0F0; }
body.dark .contact-info h2 { color: #F0F0F0; }
body.dark .contact-info > p { color: rgba(255,255,255,0.7); }
body.dark .contact-method strong { color: #F0F0F0; }
body.dark .contact-method span { color: #B0B0B0; }
body.dark .nav-link { color: #F0F0F0; }
body.dark .nav-link::after { background: var(--secondary); }
body.dark .dropdown-toggle { color: #F0F0F0; }
body.dark .dropdown-item strong { color: #F0F0F0; }
body.dark .dropdown-item span { color: #888; }
body.dark .featured-badge { color: white; }

/* Color Themes - Previously Used (★) */
body.theme-navy-coral { --primary: #0F2B46; --primary-dark: #0A1F33; --primary-light: #1A3D5C; --secondary: #FF6F61; --gradient-primary: linear-gradient(135deg, #0F2B46 0%, #1A3D5C 100%); --gradient-hero: linear-gradient(135deg, #0F2B46 0%, #1A3D5C 50%, #2D5F8A 100%); --shadow-primary: 0 8px 30px rgba(15,43,70,0.3); }
body.theme-purple-blue { --primary: #5B4FD9; --primary-dark: #4A3FC8; --primary-light: #7B6FE9; --secondary: #FF6B6B; --gradient-primary: linear-gradient(135deg, #5B4FD9 0%, #7B6FE9 100%); --gradient-hero: linear-gradient(135deg, #5B4FD9 0%, #7B6FE9 50%, #A594F9 100%); --shadow-primary: 0 8px 30px rgba(91,79,217,0.3); }
body.theme-orange-teal { --primary: #FF6B35; --primary-dark: #E55A2B; --primary-light: #FF8C5A; --secondary: #00B894; --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%); --gradient-hero: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB088 100%); --shadow-primary: 0 8px 30px rgba(255,107,53,0.3); }
body.theme-orange-purple { --primary: #FF6B35; --primary-dark: #E55A2B; --primary-light: #FF8C5A; --secondary: #764BA2; --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%); --gradient-hero: linear-gradient(135deg, #764BA2 0%, #667eea 50%, #FF6B35 100%); --shadow-primary: 0 8px 30px rgba(255,107,53,0.3); }

/* Light text for light-primary themes */
body.theme-orange-teal .hero-title,
body.theme-orange-purple .hero-title,
body.theme-charcoal-lime .hero-title,
body.theme-espresso-cream .hero-title { color: white; }

body.theme-orange-teal .hero-description,
body.theme-orange-purple .hero-description,
body.theme-charcoal-lime .hero-description,
body.theme-espresso-cream .hero-description { color: rgba(255,255,255,0.85); }

body.theme-orange-teal .trust-badge,
body.theme-orange-purple .trust-badge,
body.theme-charcoal-lime .trust-badge,
body.theme-espresso-cream .trust-badge { color: rgba(255,255,255,0.85); }

/* Ensure hero text is always white on dark hero gradients */
.hero-title { color: white; }
.hero-description { color: rgba(255,255,255,0.85); }
.trust-badge { color: rgba(255,255,255,0.85); }

/* Color Themes - New */
body.theme-midnight-coral { --primary: #1B1B3A; --primary-dark: #12122A; --primary-light: #2D2D5E; --secondary: #FF6B6B; --gradient-primary: linear-gradient(135deg, #1B1B3A 0%, #2D2D5E 100%); --gradient-hero: linear-gradient(135deg, #1B1B3A 0%, #2D2D5E 50%, #3D3D7E 100%); --shadow-primary: 0 8px 30px rgba(27,27,58,0.3); }
body.theme-forest-peach { --primary: #1A4D2E; --primary-dark: #133D23; --primary-light: #2A7A47; --secondary: #FF8C69; --gradient-primary: linear-gradient(135deg, #1A4D2E 0%, #2A7A47 100%); --gradient-hero: linear-gradient(135deg, #1A4D2E 0%, #2A7A47 50%, #3AA85F 100%); --shadow-primary: 0 8px 30px rgba(26,77,46,0.3); }
body.theme-charcoal-lime { --primary: #2C2C2C; --primary-dark: #1A1A1A; --primary-light: #444; --secondary: #C6F135; --gradient-primary: linear-gradient(135deg, #2C2C2C 0%, #444 100%); --gradient-hero: linear-gradient(135deg, #2C2C2C 0%, #3A3A3A 50%, #4A4A4A 100%); --shadow-primary: 0 8px 30px rgba(44,44,44,0.3); }
body.theme-plum-gold { --primary: #4A1942; --primary-dark: #3A1035; --primary-light: #6B2D63; --secondary: #FFB830; --gradient-primary: linear-gradient(135deg, #4A1942 0%, #6B2D63 100%); --gradient-hero: linear-gradient(135deg, #4A1942 0%, #6B2D63 50%, #8B4183 100%); --shadow-primary: 0 8px 30px rgba(74,25,66,0.3); }
body.theme-ocean-tangerine { --primary: #0A2647; --primary-dark: #071B33; --primary-light: #144272; --secondary: #FF7B54; --gradient-primary: linear-gradient(135deg, #0A2647 0%, #144272 100%); --gradient-hero: linear-gradient(135deg, #0A2647 0%, #144272 50%, #205295 100%); --shadow-primary: 0 8px 30px rgba(10,38,71,0.3); }
body.theme-slate-mint { --primary: #2F3645; --primary-dark: #232933; --primary-light: #3D4556; --secondary: #00E5A0; --gradient-primary: linear-gradient(135deg, #2F3645 0%, #3D4556 100%); --gradient-hero: linear-gradient(135deg, #2F3645 0%, #3D4556 50%, #4D5566 100%); --shadow-primary: 0 8px 30px rgba(47,54,69,0.3); }
body.theme-wine-rose { --primary: #5B0E2D; --primary-dark: #450A22; --primary-light: #7A1E42; --secondary: #FF9EAA; --gradient-primary: linear-gradient(135deg, #5B0E2D 0%, #7A1E42 100%); --gradient-hero: linear-gradient(135deg, #5B0E2D 0%, #7A1E42 50%, #9A3E62 100%); --shadow-primary: 0 8px 30px rgba(91,14,45,0.3); }
body.theme-ink-electric { --primary: #0D1117; --primary-dark: #080B0F; --primary-light: #161B22; --secondary: #58A6FF; --gradient-primary: linear-gradient(135deg, #0D1117 0%, #161B22 100%); --gradient-hero: linear-gradient(135deg, #0D1117 0%, #161B22 50%, #21262D 100%); --shadow-primary: 0 8px 30px rgba(13,17,23,0.3); }
body.theme-espresso-cream { --primary: #3C2415; --primary-dark: #2C1A0E; --primary-light: #5C3A25; --secondary: #F5E6CC; --gradient-primary: linear-gradient(135deg, #3C2415 0%, #5C3A25 100%); --gradient-hero: linear-gradient(135deg, #3C2415 0%, #5C3A25 50%, #7C5A45 100%); --shadow-primary: 0 8px 30px rgba(60,36,21,0.3); }
body.theme-sapphire-sunset { --primary: #1B2A4A; --primary-dark: #131E36; --primary-light: #2A3F6A; --secondary: #FF6B35; --gradient-primary: linear-gradient(135deg, #1B2A4A 0%, #2A3F6A 100%); --gradient-hero: linear-gradient(135deg, #1B2A4A 0%, #2A3F6A 50%, #3A5F8A 100%); --shadow-primary: 0 8px 30px rgba(27,42,74,0.3); }

/* Gradient text adapts to secondary color */
body[class*="theme-"] .gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
body.theme-espresso-cream .gradient-text {
    background: linear-gradient(135deg, #D4A574 0%, #F5E6CC 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
body.theme-charcoal-lime .btn-secondary { color: #1A1A1A; }
body.theme-espresso-cream .btn-secondary { color: #3C2415; }
body.theme-espresso-cream .featured-badge { color: #3C2415; }
body.theme-charcoal-lime .featured-badge { color: #1A1A1A; }

/* Accessibility */
.btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.btn:focus:not(:focus-visible), a:focus:not(:focus-visible), input:focus:not(:focus-visible), select:focus:not(:focus-visible), textarea:focus:not(:focus-visible) { outline: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
