/* FlottTaxi Web - Main Styles */
/* Theme support with green accent - FlottTaxi design */

/* Burger menu button */
.burger-btn {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    color: #fff;
    cursor: pointer;
}
[data-theme="light"] .burger-btn {
    background: rgba(0,0,0,.07);
    color: #333;
}

:root {
    /* Colors - Dark Theme (default) */
    --color-background: #0a0a0a;
    --color-surface: #141414;
    --color-surface-variant: #1a1a1a;
    --color-border: #2a2a2a;
    
    /* Accent - FlottTaxi Green */
    --color-accent: #00C853;
    --color-accent-hover: #00a344;
    --color-accent-light: rgba(0, 200, 83, 0.15);
    
    /* Text */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;
    
    /* Status Colors */
    --color-error: #F85149;
    --color-warning: #D29922;
    --color-info: #58A6FF;
    --color-success: #22C55E;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-accent: 0 4px 20px rgba(0, 200, 83, 0.4);
    
    /* Input backgrounds */
    --color-input-bg: #1a1a1a;
    --color-input-border: #333;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Light Theme */
[data-theme="light"] {
    --color-background: #f5f5f5;
    --color-surface: #ffffff;
    --color-surface-variant: #f0f0f0;
    --color-border: #e0e0e0;
    
    /* Accent stays the same */
    --color-accent: #00C853;
    --color-accent-hover: #00a344;
    --color-accent-light: rgba(0, 200, 83, 0.1);
    
    /* Text - inverted */
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555555;
    --color-text-muted: #888888;
    
    /* Status Colors - slightly adjusted for light bg */
    --color-error: #dc3545;
    --color-warning: #f59e0b;
    --color-info: #0ea5e9;
    --color-success: #16a34a;
    
    /* Shadows - lighter */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 4px 20px rgba(0, 200, 83, 0.25);
    
    /* Input backgrounds */
    --color-input-bg: #ffffff;
    --color-input-border: #d0d0d0;
}

/* System preference detection (when no manual preference is set) */
@media (prefers-color-scheme: light) {
    :root:not([data-theme]) {
        --color-background: #f5f5f5;
        --color-surface: #ffffff;
        --color-surface-variant: #f0f0f0;
        --color-border: #e0e0e0;
        
        --color-accent: #00C853;
        --color-accent-hover: #00a344;
        --color-accent-light: rgba(0, 200, 83, 0.1);
        
        --color-text-primary: #1a1a1a;
        --color-text-secondary: #555555;
        --color-text-muted: #888888;
        
        --color-error: #dc3545;
        --color-warning: #f59e0b;
        --color-info: #0ea5e9;
        --color-success: #16a34a;
        
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
        --shadow-accent: 0 4px 20px rgba(0, 200, 83, 0.25);
        
        --color-input-bg: #ffffff;
        --color-input-border: #d0d0d0;
    }
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-primary);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-sm { max-width: 600px; }
.container-md { max-width: 800px; }

/* Card */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.card-header {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 200, 83, 0.5);
}

.btn-secondary {
    background: var(--color-surface-variant);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--color-border);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline:hover:not(:disabled) {
    background: var(--color-accent-light);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 14px;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

/* Hero Button - Gradient version */
.btn-hero {
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    box-shadow: var(--shadow-accent);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 200, 83, 0.6);
}

.btn-glass {
    background: var(--color-surface-variant);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
}

.btn-glass:hover {
    background: var(--color-border);
}

/* Form Elements */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--spacing-md);
    font-size: var(--font-size-base);
    font-family: inherit;
    color: var(--color-text-primary);
    background: var(--color-surface-variant);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-surface);
    box-shadow: 0 0 0 4px var(--color-accent-light);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input-lg {
    padding: var(--spacing-lg);
    font-size: var(--font-size-lg);
}

.input-group {
    display: flex;
    gap: var(--spacing-sm);
}

.input-group .form-input {
    flex: 1;
}

.input-icon {
    position: relative;
}

.input-icon .form-input {
    padding-left: 3rem;
}

.input-icon .icon {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-inner {
    background: var(--color-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-accent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #000;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
}

.logo-text p {
    font-size: 0.625rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-top: -0.25rem;
}

.nav-desktop {
    display: none;
    gap: 0.25rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--color-text-primary);
    background: var(--color-surface-variant);
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-surface-variant);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    color: var(--color-text-primary);
    font-size: 0.875rem;
    cursor: pointer;
}

.lang-select svg {
    width: 1rem;
    height: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 0;
}
.hero > .container {
    margin-top: auto;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--color-background);
}

.glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 3s ease-in-out infinite;
}

.glow-1 {
    top: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 200, 83, 0.15);
}

.glow-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 200, 83, 0.1);
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2.5rem);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 80rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h2 {
        font-size: 4.5rem;
    }
}

.gradient-text {
    color: var(--color-accent);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 200, 83, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 200, 83, 0.6));
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-description span {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Button Styles */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
}

.trust-text {
    text-align: left;
}

.trust-text p:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0;
}

.trust-text p:last-child {
    font-size: 0.8rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 0;
}
[data-theme="light"] .trust-text p:last-child {
    color: rgba(0,0,0,.6);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* Pricing Section */
.pricing-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
    padding: 0.5rem;
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
}

@media (max-width: 640px) {
    .pricing-tabs {
        grid-template-columns: 1fr;
    }
}

.pricing-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
    background: transparent;
}

.pricing-tab svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pricing-tab.active {
    background: var(--color-accent-light);
    border-color: rgba(0, 200, 83, 0.3);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.6s ease-out;
}

.pricing-card {
    position: relative;
    padding: 3rem;
    border-radius: 1.5rem;
    background: var(--color-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    transition: all 0.5s;
}

.pricing-card:hover {
    border-color: rgba(0, 200, 83, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-info h3 {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .pricing-info h3 {
        font-size: 2.5rem;
    }
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.pricing-desc {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.pricing-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

.pricing-features {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--color-surface-variant);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
}

.pricing-features h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-accent);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    transition: border-color 0.3s;
    cursor: default;
    -webkit-tap-highlight-color: transparent;
}

.feature-card:hover {
    border-color: rgba(0, 200, 83, 0.15);
}

.feature-card::before {
    display: none;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.feature-card > p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.feature-list svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 87.5rem;
    margin: 0 auto 4rem;
}

.benefit-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    transition: all 0.5s;
}

.benefit-card:hover {
    border-color: rgba(0, 200, 83, 0.3);
    transform: scale(1.05);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: rgba(0, 200, 83, 0.2);
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.benefit-desc {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-details {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* CTA Card */
.cta-card {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 1.5rem;
    background: var(--color-accent-light);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 200, 83, 0.2);
    overflow: hidden;
    text-align: center;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-glow-1 {
    top: 0;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 200, 83, 0.2);
}

.cta-glow-2 {
    bottom: 0;
    right: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 200, 83, 0.15);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h3 {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-content h3 {
        font-size: 2.5rem;
    }
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    padding: 3rem 0;
}

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

.footer-brand {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #000;
}

.footer-logo-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-accent);
}

.footer-logo-text p {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.footer-brand > p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.footer-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-verified svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-accent);
}

.footer-verified span {
    color: var(--color-text-secondary);
}

.footer-section h4 {
    color: var(--color-text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-accent);
}

.footer-contact span {
    color: var(--color-text-secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 80vw;
    background: var(--color-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--color-border);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu-nav {
    padding: 1rem;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 0.75rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.mobile-menu-nav a:hover {
    background: var(--color-accent-light);
    color: var(--color-accent);
}

.mobile-menu-nav .nav-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.5rem;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.mobile-menu-nav a:hover .nav-dot {
    opacity: 1;
}

.mobile-menu-nav .nav-dot-inner {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--color-accent);
}

.mobile-menu-cta {
    padding: 1rem;
    margin: 1rem;
    border-radius: 1rem;
    background: var(--color-accent-light);
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.mobile-menu-cta .trust-icon {
    margin-bottom: 1rem;
}

.mobile-menu-contact {
    padding: 2rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    margin-bottom: 0.5rem;
}

.mobile-menu-contact a:hover {
    color: var(--color-text-primary);
}

.mobile-menu-contact .contact-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-contact .contact-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-accent);
}

/* Utility Classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.hidden { display: none !important; }

/* Responsive */
@media (max-width: 640px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .btn-group {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    :root {
        --spacing-md: 0.875rem;
        --spacing-lg: 1.25rem;
    }
    
    h1 { font-size: var(--font-size-2xl); }
    h2 { font-size: var(--font-size-xl); }
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-background);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--spacing-lg);
    z-index: 1000;
}

/* Alerts */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.alert-error {
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--color-success);
    color: var(--color-success);
}

.alert-info {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid var(--color-info);
    color: var(--color-info);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.badge-accent {
    background: var(--color-accent);
    color: #000;
}

.badge-warning {
    background: var(--color-warning);
    color: white;
}

.badge-info {
    background: var(--color-info);
    color: white;
}

.badge-error {
    background: var(--color-error);
    color: white;
}

/* =============================================
   Mobile App Section & Phone Mockup
   ============================================= */

#mobile-app {
    padding: var(--spacing-2xl) 0;
}

.mobile-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (max-width: 768px) {
    .mobile-app-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.app-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.app-content > p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-accent-light);
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent);
    width: fit-content;
}

.app-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.app-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.app-dot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 50%;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-dot-inner {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--color-accent);
}

.app-feature-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-primary);
}

.app-feature-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-top: 0.125rem;
}

.app-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

@media (max-width: 480px) {
    .app-buttons {
        flex-direction: column;
    }
}

/* Phone Mockup — base styles overridden by inline <style> in index.php */
.phone-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.phone-shadow {
    position: absolute;
    inset: 5%;
    filter: blur(70px);
    border-radius: 50%;
    z-index: 0;
}

.phone-body {
    position: relative;
    z-index: 1;
    width: 100%;
    background: linear-gradient(180deg, #333, #1a1a1a);
    border: 3px solid #444;
    border-radius: 3.2rem;
    padding: 0.6rem;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.4);
}

.phone-notch {
    position: absolute;
    top: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7.5rem;
    height: 1.6rem;
    background: #111;
    border-bottom-left-radius: .9rem;
    border-bottom-right-radius: .9rem;
    z-index: 10;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 0.35rem;
    background: linear-gradient(90deg, #333, #444);
    border-radius: 9999px;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    width: .45rem;
    height: .45rem;
    background: #222;
    border-radius: 50%;
    border: 1px solid #444;
}

.phone-body::before {
    content: '';
    position: absolute;
    top: 6rem;
    right: -3px;
    width: 3px;
    height: 2.5rem;
    background: linear-gradient(180deg, #555, #333);
    border-radius: 0 2px 2px 0;
    z-index: 2;
}

.phone-body::after {
    content: '';
    position: absolute;
    top: 4rem;
    left: -3px;
    width: 3px;
    height: 1.5rem;
    background: linear-gradient(180deg, #555, #333);
    border-radius: 2px 0 0 2px;
    z-index: 2;
}

.phone-screen {
    position: relative;
    overflow: hidden;
    border-radius: 2.6rem;
    background: #000;
    aspect-ratio: 9 / 19.5;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .phone-mockup {
        order: -1;
        max-width: 300px;
    }
    
    .app-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .app-content {
        align-items: center;
        text-align: center;
    }
    
    .app-features li {
        text-align: left;
    }
}

/* ============================================================
   LIGHT THEME — comprehensive overrides for hardcoded dark UI
   ============================================================ */

/* Header inner — override inline PHP gradient backgrounds */
[data-theme="light"] .header-inner {
    background: rgba(255,255,255,0.85) !important;
    border-color: rgba(0,0,0,0.1) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
}

/* Header logo text (inline style uses rgba white) */
[data-theme="light"] .header-inner span[style*="rgba(255,255,255"] {
    color: rgba(0,0,0,0.55) !important;
}
[data-theme="light"] .header-inner div[style*="rgba(255,255,255"] {
    color: rgba(0,0,0,0.45) !important;
}

/* Language button */
[data-theme="light"] .lang-btn {
    background: rgba(0,0,0,0.06) !important;
    border-color: rgba(0,0,0,0.12) !important;
    color: #1a1a1a !important;
}
[data-theme="light"] .lang-btn:hover {
    background: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] .lang-popover {
    background: rgba(255,255,255,0.97) !important;
    border-color: rgba(0,0,0,0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
}
[data-theme="light"] .lang-item {
    color: #1a1a1a !important;
}
[data-theme="light"] .lang-item:hover {
    background: rgba(0,0,0,0.05) !important;
}
[data-theme="light"] .lang-item.active {
    background: rgba(0,200,83,0.1) !important;
}

/* Hero section overlay */
[data-theme="light"] .hero-bg {
    background: linear-gradient(180deg, rgba(245,245,245,.75), rgba(245,245,245,.30)) !important;
}

/* Glow effects — softer for light */
[data-theme="light"] .glow-1,
[data-theme="light"] .glow-2 {
    opacity: 0.4;
}

/* Hero description text */
[data-theme="light"] .hero-description {
    color: #555 !important;
}
[data-theme="light"] .hero-description span {
    color: #1a1a1a !important;
}

/* Trust indicators on light */
[data-theme="light"] .trust-text p:last-child {
    color: #666 !important;
}

/* Glass buttons */
[data-theme="light"] .btn-glass {
    background: rgba(0,0,0,0.06) !important;
    border-color: rgba(0,0,0,0.12) !important;
    color: #1a1a1a !important;
}
[data-theme="light"] .btn-glass:hover {
    background: rgba(0,0,0,0.1) !important;
}

/* Hire banner */
[data-theme="light"] .hire-banner {
    background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.02)) !important;
    border-color: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] .hire-banner div[style*="rgba(255,255,255"] {
    background: rgba(0,0,0,0.06) !important;
}

/* Pricing cards — light theme */
[data-theme="light"] .pricing-card {
    background: rgba(255,255,255,0.95) !important;
    border: 1px solid rgba(0,0,0,.08) !important;
}

/* Pricing table in light */
[data-theme="light"] .pricing-table th,
[data-theme="light"] .pricing-table td {
    border-color: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] .pricing-table thead th {
    background: rgba(0,200,83,0.08) !important;
    color: #1a1a1a !important;
}

/* Modal */
[data-theme="light"] .modal {
    background: rgba(255,255,255,0.97) !important;
    border-color: rgba(0,0,0,0.1) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}
[data-theme="light"] .modal-header {
    border-color: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] .modal-header h4 {
    color: #1a1a1a !important;
}
[data-theme="light"] .modal-close {
    background: rgba(0,0,0,0.06) !important;
    border-color: rgba(0,0,0,0.1) !important;
    color: #1a1a1a !important;
}
[data-theme="light"] .modal-close:hover {
    background: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] #pricing-modal .pricing-table tr {
    background: rgba(0,0,0,0.02) !important;
}

/* Feature cards */
[data-theme="light"] .feature-card {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .feature-card:hover {
    border-color: rgba(0,200,83,0.4) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
}

/* Benefits cards */
[data-theme="light"] .benefit-card {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}

/* CTA card */
[data-theme="light"] .cta-card {
    background: linear-gradient(180deg, rgba(245,245,245,.75), rgba(245,245,245,.45)), url('img/block4.png') center/cover no-repeat !important;
    border-color: rgba(0,200,83,0.2) !important;
}

/* App content — heading gradient for light */
[data-theme="light"] .app-content h2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #555 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
[data-theme="light"] .app-content > p {
    color: #555 !important;
}

/* App features list */
[data-theme="light"] .app-features li {
    background: rgba(0,0,0,0.02) !important;
    border-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .app-features li:hover {
    background: rgba(0,0,0,0.04) !important;
}
[data-theme="light"] .app-feature-title {
    color: #1a1a1a !important;
}
[data-theme="light"] .app-feature-desc {
    color: #555 !important;
}

/* Store buttons */
[data-theme="light"] .btn-store {
    background: linear-gradient(135deg, #fff, #f5f5f5) !important;
    border-color: rgba(0,0,0,0.12) !important;
    color: #1a1a1a !important;
}
[data-theme="light"] .btn-store:hover {
    border-color: rgba(0,200,83,0.4) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}
[data-theme="light"] .store-name {
    color: #1a1a1a !important;
}
[data-theme="light"] .progress-bar {
    background: #e0e0e0 !important;
}
[data-theme="light"] .progress-label {
    color: #888 !important;
}

/* Phone mockup stays dark (it's depicting a phone screen) */

/* Accent bar stripe pattern */
[data-theme="light"] .accent-bar {
    background: repeating-linear-gradient(45deg, var(--color-accent), var(--color-accent) 10px, #f5f5f5 10px, #f5f5f5 20px) !important;
}

/* Footer */
[data-theme="light"] footer {
    background: #fff !important;
    border-top-color: rgba(0,0,0,0.08) !important;
}

/* Mobile menu in light (use #mobileMenu ID to match inline style specificity) */
[data-theme="light"] #mobileMenu {
    background: rgba(255,255,255,0.97) !important;
    border-right-color: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] .mobile-menu-overlay {
    background: rgba(0,0,0,0.3) !important;
}
[data-theme="light"] #mobileMenu .logo span[style*="rgba(255,255,255"] {
    color: rgba(0,0,0,0.55) !important;
}
[data-theme="light"] #mobileMenu .logo div[style*="rgba(255,255,255"] {
    color: rgba(0,0,0,0.4) !important;
}
[data-theme="light"] #mobileMenu .mobile-menu-nav a {
    color: #1a1a1a !important;
}
[data-theme="light"] #mobileMenu .mobile-menu-nav a:hover {
    background: rgba(0,200,83,0.08) !important;
    color: var(--color-accent) !important;
}
[data-theme="light"] #mobileMenu .mobile-menu-contact a {
    color: #555 !important;
}
[data-theme="light"] #mobileMenu .mobile-menu-contact a:hover {
    color: #1a1a1a !important;
}
[data-theme="light"] #mobileMenu .mobile-menu-header {
    border-bottom-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] #mobileMenu .mobile-menu-contact {
    border-top-color: rgba(0,0,0,0.08) !important;
}

/* Payment icons — remove invert filter in light mode */
[data-theme="light"] .payment-icons-row img[alt="Apple Pay"] {
    filter: none !important;
}

/* WhatsApp button text */
[data-theme="light"] .btn-glass svg {
    color: inherit !important;
}

/* Pricing tab text */
[data-theme="light"] .pricing-tab {
    color: #1a1a1a !important;
}

/* Cookie banner */
[data-theme="light"] .cookie-banner,
[data-theme="light"] [class*="cookie"] {
    background: #fff !important;
    border-color: rgba(0,0,0,0.1) !important;
    color: #1a1a1a !important;
}

/* Section headers */
[data-theme="light"] .section-header p {
    color: #555 !important;
}

/* ============================================================
   LIGHT THEME — cross-page generic overrides
   Targets inline PHP styles used on all pages
   ============================================================ */

/* Body background & text for pages that set them inline */
[data-theme="light"] body {
    background-color: #f5f5f5 !important;
    color: #1a1a1a !important;
}

/* Header: logo subtitle text (set inline as rgba white) */
[data-theme="light"] header a span[style*="rgba(255,255,255"] {
    color: rgba(0,0,0,0.5) !important;
}
[data-theme="light"] header a div[style*="rgba(255,255,255"] {
    color: rgba(0,0,0,0.4) !important;
}

/* Brand row subtitle (airport-order, etc.) */
[data-theme="light"] .brand-sub,
[data-theme="light"] .brand-row .brand-sub {
    color: rgba(0,0,0,0.5) !important;
}
[data-theme="light"] .brand-tag {
    color: rgba(0,0,0,0.4) !important;
}

/* Lang panel inline style overrides */
[data-theme="light"] #lang-panel,
[data-theme="light"] .lang-popover {
    background: rgba(255,255,255,0.97) !important;
    border-color: rgba(0,0,0,0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}
[data-theme="light"] #lang-panel a,
[data-theme="light"] .lang-item {
    color: #1a1a1a !important;
}

/* Footer (shared structure across pages) */
[data-theme="light"] .footer-logo-text p {
    color: rgba(0,0,0,0.5) !important;
}
[data-theme="light"] .footer-verified {
    color: #555 !important;
}
[data-theme="light"] .footer-links a {
    color: #555 !important;
}
[data-theme="light"] .footer-links a:hover {
    color: var(--color-accent) !important;
}
[data-theme="light"] .footer-contact span {
    color: #555 !important;
}
[data-theme="light"] .footer-bottom {
    color: #888 !important;
    border-top-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .footer-legal a {
    color: #555 !important;
}

/* Contact page cards */
[data-theme="light"] .contact-card {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .contact-card h3 {
    color: #1a1a1a !important;
}
[data-theme="light"] .contact-card p {
    color: #555 !important;
}
[data-theme="light"] .contact-card a:hover {
    color: #1a1a1a !important;
}
[data-theme="light"] .contact-btn {
    background: #1a1a1a !important;
    color: #fff !important;
}
[data-theme="light"] .contact-btn:hover {
    background: var(--color-accent) !important;
    color: #000 !important;
}

/* Info sections (contacts, drivers, etc.) */
[data-theme="light"] .info-section {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .info-item h4 {
    color: #888 !important;
}
[data-theme="light"] .info-item p {
    color: #1a1a1a !important;
}

/* Page subtitle */
[data-theme="light"] .page-subtitle {
    color: #555 !important;
}

/* Currency select (airport form) */
[data-theme="light"] #currency-select {
    background: rgba(0,0,0,0.04) !important;
    color: #1a1a1a !important;
    border-color: rgba(0,0,0,0.12) !important;
}

/* Airport form light overrides */
[data-theme="light"] .ao-sidebar-card {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
    color: #1a1a1a !important;
}

/* Terms/Privacy page */
[data-theme="light"] .prose,
[data-theme="light"] .prose h2,
[data-theme="light"] .prose h3,
[data-theme="light"] .prose h4 {
    color: #1a1a1a !important;
}
[data-theme="light"] .prose p,
[data-theme="light"] .prose li {
    color: #333 !important;
}

/* Become driver form elements */
[data-theme="light"] .form-card,
[data-theme="light"] [class*="form-container"] {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}

/* Common muted text across pages */
[data-theme="light"] [style*="color:#a8a8b8"],
[data-theme="light"] [style*="color: #a8a8b8"] {
    color: #777 !important;
}

/* Inline dark background overrides */
[data-theme="light"] [style*="background:#0a0a0f"],
[data-theme="light"] [style*="background: #0a0a0f"] {
    background: #f5f5f5 !important;
}

/* Inline modals (airport-order, etc.) */
[data-theme="light"] [style*="background:#1a1a24"] {
    background: #fff !important;
    border-color: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] [style*="rgba(255,255,255,.12)"] {
    border-color: rgba(0,0,0,0.1) !important;
}

/* Hero gap spacer (used on sub-pages) */
[data-theme="light"] .hero-gap {
    background: transparent !important;
}

/* Book tour page */
[data-theme="light"] .tour-card {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}

/* Complaint page */
[data-theme="light"] .complaint-form {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}

/* Driver cards */
[data-theme="light"] .driver-card {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}
