/* ═══════════════════════════════════════════════════════════════
   Zomato Delivery Partner - Mobile-First Responsive Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────────────────────────── */
:root {
    --zomato-red: #E23744;
    --zomato-red-dark: #CB2D3E;
    --zomato-red-light: #FF6B6B;
    --zomato-dark: #1C1C1C;
    --zomato-secondary: #2D2D2D;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A5A;
    --text-muted: #8A8A9A;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FC;
    --bg-subtle: #F0F2F5;
    --border-light: #E8EAF0;
    --border-subtle: #F0F2F5;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
    --shadow-red: 0 8px 30px rgba(226,55,68,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', 'Noto Sans', 'Noto Sans Devanagari', 'Noto Sans Tamil', 'Noto Sans Telugu', 'Noto Sans Kannada', 'Noto Sans Malayalam', 'Noto Sans Bengali', system-ui, -apple-system, sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ─── Container ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container { padding: 0 24px; }
}

/* ─── Top Banner ───────────────────────────────────────────── */
.top-banner {
    background: linear-gradient(135deg, var(--zomato-dark), #2D1F3D);
    color: #fff;
    padding: 8px 0;
    font-size: 0.8rem;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.top-banner p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.top-banner a {
    color: var(--zomato-red-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ─── Navbar ───────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 12px 0;
}

.navbar.scrolled {
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.logo-icon svg { width: 32px; height: 32px; }
.logo-text { letter-spacing: -0.5px; }
.logo-accent { color: var(--zomato-red); font-weight: 600; }
.logo-img { height: 36px; width: auto; object-fit: contain; }
.footer-logo-img { height: 28px; width: auto; object-fit: contain; }

/* ─── Sticky Floating Apply Button ─────────────────────────── */
.sticky-apply {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    padding: 12px 16px 14px;
    background: rgba(255,255,255,0.96);
    border-top: 1px solid var(--border-light);
    transform: translateY(100%);
    animation: slideUpSticky 0.5s ease 1s forwards;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100vw;
}

.sticky-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--zomato-red), var(--zomato-red-dark));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 12px rgba(226,55,68,0.3);
    transition: var(--transition);
    min-height: 48px;
    box-sizing: border-box;
}

.sticky-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(226,55,68,0.5), 0 4px 12px rgba(0,0,0,0.15);
}

@keyframes slideUpSticky {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* On desktop, make it a pill at bottom-right instead of full-width */
@media (min-width: 768px) {
    .sticky-apply {
        left: auto;
        right: 24px;
        bottom: 24px;
        padding: 0;
        background: none;
        border-top: none;
        width: auto;
    }
    
    .sticky-apply-btn {
        width: auto;
        padding: 14px 28px;
        border-radius: var(--radius-full);
    }
}

.nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-xl);
    gap: 8px;
}

.nav-links.active { right: 0; display: flex; }

.nav-link {
    padding: 12px 16px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover { color: var(--zomato-red); background: rgba(226,55,68,0.05); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--zomato-red);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 44px;
}

.nav-cta:hover {
    background: var(--zomato-red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.nav-overlay.active { display: block; }

/* Hamburger */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1000;
}

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

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Language Dropdown */
.lang-dropdown { position: relative; }

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

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

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
}

.lang-menu.show { display: block; }

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-option:hover { background: var(--bg-light); }
.lang-option.active { color: var(--zomato-red); font-weight: 600; }
.lang-name-en { font-size: 0.75rem; color: var(--text-muted); }

/* ─── Breadcrumbs ──────────────────────────────────────────── */
.breadcrumb-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.breadcrumbs a:hover { color: var(--zomato-red); }
.breadcrumb-sep { margin: 0 2px; color: var(--text-muted); }
.breadcrumb-current { color: var(--zomato-red); font-weight: 500; white-space: nowrap; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 48px; /* touch target */
    text-align: center;
}

.btn-primary {
    background: var(--zomato-red);
    color: #fff;
    border-color: var(--zomato-red);
}

.btn-primary:hover {
    background: var(--zomato-red-dark);
    border-color: var(--zomato-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

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

.btn-white {
    background: #fff;
    color: var(--zomato-red);
    border-color: #fff;
}

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

.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* Pulse Animation for CTA */
.pulse-btn {
    position: relative;
    overflow: visible;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px solid var(--zomato-red);
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.15); }
}

/* ─── Hero Section ─────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 60px 0 48px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF 30%, #F8F9FC 60%, #FFF5F5 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(226,55,68,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(226,55,68,0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(226,55,68,0.03) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(226,55,68,0.08);
    border: 1px solid rgba(226,55,68,0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--zomato-red);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--zomato-red);
    border-radius: 50%;
    animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 100%;
}

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

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--zomato-red);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
}

/* ─── Sections ─────────────────────────────────────────────── */
.section {
    padding: 48px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* ─── Earnings ─────────────────────────────────────────────── */
.earnings-section { background: var(--bg-light); }

.earnings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.earning-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.earning-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.earning-card.featured {
    background: linear-gradient(135deg, var(--zomato-red), var(--zomato-red-dark));
    color: #fff;
    border-color: transparent;
    transform: scale(1.02);
}

.earning-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.earning-card.featured .earning-label { color: rgba(255,255,255,0.85); }

.earning-icon { margin-bottom: 12px; }
.earning-card.featured .earning-icon svg { stroke: #fff; }

.earning-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.earning-amount {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
}

.earnings-bonus {
    text-align: center;
    margin-top: 20px;
    color: var(--zomato-red);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ─── How It Works / Steps ─────────────────────────────────── */
.how-section { background: var(--bg-white); }

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.step-connector { display: none; }

.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    width: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(226,55,68,0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--zomato-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.step-icon { margin-bottom: 12px; }

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.steps-cta { text-align: center; margin-top: 32px; }

/* ─── Benefits ─────────────────────────────────────────────── */
.benefits-section { background: var(--bg-light); }

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(226,55,68,0.2);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(226,55,68,0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--zomato-red);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ─── Requirements ─────────────────────────────────────────── */
.requirements-section { background: var(--bg-white); }

.req-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.req-content .section-title { text-align: left; }
.req-content .section-subtitle { text-align: left; margin: 0 0 20px; }

.req-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.req-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.req-check {
    width: 24px;
    height: 24px;
    background: rgba(226,55,68,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zomato-red);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.req-cta-card {
    background: linear-gradient(135deg, var(--zomato-red), var(--zomato-red-dark));
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    color: #fff;
}

.req-cta-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.req-cta-card p {
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Requirement cards for area page */
.req-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.req-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.req-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ─── States Grid ──────────────────────────────────────────── */
.states-section { background: var(--bg-light); }

.states-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
}

.state-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.state-card:hover {
    border-color: var(--zomato-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.state-card:hover .state-arrow { color: var(--zomato-red); transform: translateX(4px); }

.state-name {
    font-weight: 600;
    font-size: 0.85rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.state-type {
    font-size: 0.65rem;
    padding: 2px 8px;
    background: var(--bg-subtle);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-weight: 500;
    margin: 0 8px;
    flex-shrink: 0;
}

.state-arrow {
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}

/* ─── Cities Grid ──────────────────────────────────────────── */
.cities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.city-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.city-card:hover {
    border-color: var(--zomato-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.city-card-content { padding: 24px; }

.city-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.city-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.city-link {
    font-size: 0.85rem;
    color: var(--zomato-red);
    font-weight: 600;
    transition: var(--transition);
}

.city-card:hover .city-link { letter-spacing: 0.5px; }

/* ─── Areas Grid ───────────────────────────────────────────── */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--zomato-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.area-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(226,55,68,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.area-card-content { flex: 1; min-width: 0; }

.area-name {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.area-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.area-arrow {
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}

.area-card:hover .area-arrow { color: var(--zomato-red); transform: translateX(4px); }

/* ─── Page Hero (State/City) ───────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #FFF5F5 0%, #F8F9FC 100%);
    padding: 48px 0;
    text-align: center;
}

.page-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Area Hero ────────────────────────────────────────────── */
.area-hero {
    background: linear-gradient(135deg, var(--zomato-red), #CB2D3E, #A02334);
    color: #fff;
    padding: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.area-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(0,0,0,0.1) 0%, transparent 60%);
}

.area-hero-content { position: relative; z-index: 1; }

.area-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.area-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.area-hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.area-hero-actions { margin-bottom: 24px; }

.area-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trust-badge {
    padding: 4px 12px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ─── Area Info Grid ───────────────────────────────────────── */
.area-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.area-info-card {
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.area-info-card h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.area-info-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.area-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.area-perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.perk-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.area-earnings-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.area-earnings-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.area-earning-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.area-earning-row span { color: var(--text-secondary); }
.area-earning-row strong { color: var(--text-primary); font-size: 1.05rem; }

.area-earning-row.highlight {
    background: rgba(226,55,68,0.05);
    margin: 0 -28px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
}

.area-earning-row.highlight strong {
    color: var(--zomato-red);
    font-size: 1.2rem;
}

.area-earning-bonus {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--zomato-red);
    font-weight: 600;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--bg-light); }

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(226,55,68,0.2); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    gap: 12px;
}

.faq-chevron { transition: var(--transition); flex-shrink: 0; color: var(--text-muted); }

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--zomato-red);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 16px;
}

.faq-answer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── CTA Section ──────────────────────────────────────────── */
.cta-section { padding: 48px 0; }

.cta-card {
    background: linear-gradient(135deg, var(--zomato-red), #CB2D3E, #A02334);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-card .btn { position: relative; }

/* ─── Empty State ──────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-secondary);
}

.empty-state p { margin-bottom: 16px; }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--zomato-dark);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 0;
    padding-bottom: 80px; /* Space for sticky Apply button on mobile */
}

@media (min-width: 768px) {
    .footer { padding-bottom: 0; }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon svg { width: 28px; height: 28px; }
.footer-logo .logo-text { color: #fff; font-weight: 800; font-size: 1.2rem; }
.footer-logo .logo-accent { color: var(--zomato-red); }

.footer-about-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-links a:hover { color: var(--zomato-red); }

.footer-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

.footer-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-lang-link {
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-lang-link:hover, .footer-lang-link.active {
    border-color: var(--zomato-red);
    color: var(--zomato-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-credit {
    margin-top: 4px;
}

.digiphins-link {
    color: var(--zomato-red-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition);
}

.digiphins-link:hover { color: #fff; }

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

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.states-grid .animate-on-scroll:nth-child(even) { transition-delay: 0.05s; }
.benefits-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.benefits-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.benefits-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.benefits-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.earnings-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.earnings-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* ─── Responsive: Mobile (up to 767px) ─────────────────────── */
@media (max-width: 767px) {
    .states-grid { grid-template-columns: 1fr !important; }
    .cities-grid { grid-template-columns: 1fr !important; }
    .areas-grid { grid-template-columns: 1fr !important; }
    .req-cards-grid { grid-template-columns: 1fr !important; }
    .earnings-grid { grid-template-columns: 1fr !important; }
    .benefits-grid { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr !important; }
    .state-card { max-width: 100%; box-sizing: border-box; }
}

/* ─── Responsive: Tablet (768px+) ──────────────────────────── */
@media (min-width: 768px) {
    .hero { padding: 80px 0; min-height: 80vh; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-actions { flex-direction: row; justify-content: center; }
    
    .section { padding: 64px 0; }
    .section-title { font-size: 2rem; }
    
    .earnings-grid { grid-template-columns: repeat(3, 1fr); }
    
    .steps-grid {
        flex-direction: row;
        align-items: stretch;
    }
    .step-connector { display: flex; align-items: center; }
    .step-card { width: auto; flex: 1; }
    
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    
    .req-wrapper { flex-direction: row; align-items: flex-start; }
    .req-content { flex: 1; }
    .req-cta { flex: 0 0 300px; }
    
    .states-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .req-cards-grid { grid-template-columns: repeat(2, 1fr); }
    
    .page-hero { padding: 64px 0; }
    .page-hero-title { font-size: 2.2rem; }
    
    .area-hero { padding: 64px 0; }
    .area-hero-title { font-size: 2.2rem; }
    .area-info-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        box-shadow: none;
        align-items: center;
        gap: 4px;
    }
    
    .nav-hamburger { display: none; }
    .nav-overlay { display: none !important; }
    
    .cta-card { padding: 56px 40px; }
}

/* ─── Responsive: Desktop (1024px+) ────────────────────────── */
@media (min-width: 1024px) {
    .hero-title { font-size: 3.5rem; letter-spacing: -1px; }
    .section-title { font-size: 2.2rem; }
    
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .states-grid { grid-template-columns: repeat(4, 1fr); }
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .req-cards-grid { grid-template-columns: repeat(3, 1fr); }
    
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    
    .page-hero-title { font-size: 2.6rem; }
    .area-hero-title { font-size: 2.6rem; }
    
    .cta-card h2 { font-size: 2rem; }
}

/* ─── Print Styles ─────────────────────────────────────────── */
@media print {
    .top-banner, .navbar, .nav-hamburger, .nav-overlay, .lang-dropdown,
    .cta-section, .pulse-btn::after { display: none; }
    .hero { min-height: auto; padding: 32px 0; }
    body { color: #000; }
}
