@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #0a0f1f;
    --panel: #111827;
    --accent: #00e5ff;
    --accent-purple: #a78bfa;
    --accent-coral: #f472b6;
    --accent-lime: #34d399;
    --accent-amber: #fbbf24;
    --muted: rgba(255, 255, 255, 0.6);
    --panel-glow: rgba(0, 229, 255, 0.12);
    --card-border: rgba(0, 229, 255, 0.25);
    --text-primary: #eef2ff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --gradient-primary: linear-gradient(135deg, #00e5ff 0%, #6366f1 50%, #a855f7 100%);
    --gradient-secondary: linear-gradient(160deg, #1a1f3a 0%, var(--panel) 40%, var(--bg) 100%);
    --gradient-warm: linear-gradient(135deg, #f472b6 0%, #fb923c 100%);
    --gradient-cool: linear-gradient(135deg, #34d399 0%, #00e5ff 100%);
    --shadow-glow: 0 0 24px rgba(0, 229, 255, 0.35), 0 0 48px rgba(99, 102, 241, 0.15);
    --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 229, 255, 0.08);
    --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 229, 255, 0.2);
    --accent-customer: #a78bfa;
    --accent-driver: #22c55e;
    --safe-top: env(safe-area-inset-top, 0);
    --safe-right: env(safe-area-inset-right, 0);
    --safe-bottom: env(safe-area-inset-bottom, 0);
    --safe-left: env(safe-area-inset-left, 0);
    --touch-min: 44px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 120% 80% at 10% 90%, rgba(0, 229, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 90% 10%, rgba(167, 139, 250, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(244, 114, 182, 0.06) 0%, transparent 40%),
        url('https://www.transparenttextures.com/patterns/stardust.png');
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
}

/* Mobile tap highlight */
a, button {
    -webkit-tap-highlight-color: rgba(0, 229, 255, 0.2);
    touch-action: manipulation;
}

/* Body scroll lock when mobile menu open */
body.menu-open {
    overflow: hidden;
    touch-action: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-left: max(2rem, calc(1rem + var(--safe-left)));
    padding-right: max(2rem, calc(1rem + var(--safe-right)));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98) 0%, rgba(17, 24, 39, 0.92) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 229, 255, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
    padding-top: var(--safe-top);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-left: max(2rem, var(--safe-left));
    padding-right: max(2rem, var(--safe-right));
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #00e5ff 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

.logo i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
    -webkit-text-fill-color: initial;
    background: none;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
    text-shadow: 0 0 5px var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.nav-app-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.35rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
}

.nav-app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25), 0 0 16px rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.4);
}

.nav-app-badge img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.75rem;
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s ease;
}

/* Language Toggle Styles */
.language-toggle {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    min-height: 38px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: var(--accent);
    color: var(--bg);
    box-shadow: var(--shadow-glow);
}

.lang-btn:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.current-lang {
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

.lang-btn i:last-child {
    transition: transform 0.3s ease;
}

.lang-btn[aria-expanded="true"] i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 0;
}

.lang-option:first-child {
    border-radius: 15px 15px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 15px 15px;
}

.lang-option:only-child {
    border-radius: 15px;
}

.lang-option:hover {
    background: var(--panel-glow);
    color: var(--accent);
}

.lang-option.active {
    background: var(--accent);
    color: var(--bg);
}

.flag-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Language-specific typography */
[data-lang="bn"] {
    font-family: 'Hind Siliguri', sans-serif;
}

[data-lang="bn"] .hero-title,
[data-lang="bn"] .section-header h2,
[data-lang="bn"] .feature-card h3,
[data-lang="bn"] .step-content h3,
[data-lang="bn"] .safety-feature h3,
[data-lang="bn"] .cta-content h2,
[data-lang="bn"] .footer-section h3 {
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 600;
}

[data-lang="bn"] .logo span,
[data-lang="bn"] .footer-logo span {
    font-family: 'Orbitron', sans-serif;
}

/* RTL Support for Bengali */
[data-lang="bn"] {
    direction: ltr; /* Bengali is LTR, not RTL */
}

/* Smooth transitions for language switching */
[data-translate] {
    transition: opacity 0.3s ease;
}

.lang-switching [data-translate] {
    opacity: 0.7;
}

/* Language toggle animation */
@keyframes langSwitchPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.lang-switching .language-toggle {
    animation: langSwitchPulse 0.6s ease-in-out;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(70px + var(--safe-top));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 70% 60%, rgba(167, 139, 250, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(244, 114, 182, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
    width: 100%;
}

.hero-copy {
    min-width: 0;
}

.hero-cta-more {
    grid-column: 1 / -1;
    justify-content: center;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00e5ff 0%, #a78bfa 40%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.4));
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
}

.stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00e5ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: linear-gradient(135deg, #00e5ff 0%, #6366f1 50%, #a855f7 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35), 0 0 0 1px rgba(255,255,255,0.08);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 32px rgba(0, 229, 255, 0.5), 0 0 64px rgba(167, 139, 250, 0.25);
}

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

.cta-secondary:hover {
    background: var(--accent);
    color: var(--bg);
    box-shadow: var(--shadow-glow);
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 16 / 10;
    min-height: 280px;
    display: block;
}

.hero-image-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 229, 255, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--panel) 0%, #0d1322 40%, var(--bg) 100%);
    z-index: 0;
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 31, 0.85) 0%, transparent 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-image-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 2;
}

/* Floating bid card – centered, larger, live auction style */
.floating-bid-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: linear-gradient(160deg, rgba(26, 31, 58, 0.97) 0%, rgba(17, 24, 39, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 229, 255, 0.12), 0 0 24px rgba(167, 139, 250, 0.08);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    animation: card-float 4s ease-in-out infinite;
}

@keyframes card-float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 6px)); }
}

.bid-card-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.bid-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 0;
}

.bid-card-vehicle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}

.bid-card-vehicle-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(167, 139, 250, 0.12) 100%);
    border: 1px solid rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
}

.bid-card-vehicle-info {
    min-width: 0;
}

.bid-card-vehicle-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.15rem 0;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bid-card-meta {
    font-size: 0.8rem;
    color: var(--muted);
}

.bid-card-bid {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    flex-shrink: 0;
}

.bid-card-price {
    text-align: right;
}

.bid-card-label {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.bid-card-amount {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #00e5ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bid-card-unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}

.bid-card-timer {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.bid-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #00e5ff 0%, #6366f1 50%, #a855f7 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.35), 0 0 0 1px rgba(255,255,255,0.1);
}

.bid-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.45), 0 0 32px rgba(167, 139, 250, 0.2);
}

/* Live bid sections – same style as hero-visual */
.live-bid-section {
    padding: 3rem 0;
}

.live-bid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.live-bid-section .hero-visual {
    width: 100%;
    max-width: min(560px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.live-bid-section .hero-image {
    width: 100%;
}

/* Legacy price/timer selectors for any remaining use */
.price { color: var(--accent); font-weight: 700; }
.bid-timer { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.9rem; }

/* Scroll margin for anchor links (fixed nav) */
section[id] {
    scroll-margin-top: calc(70px + var(--safe-top) + 1rem);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00e5ff 0%, #a78bfa 60%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.35));
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.25), rgba(167,139,250,0.2), transparent);
    opacity: 0.9;
}

/* Features showcase banner */
.features-showcase {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 229, 255, 0.15), 0 0 24px rgba(167, 139, 250, 0.06);
    aspect-ratio: 21 / 9;
    min-height: 180px;
}

.features-showcase img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, transparent 40%, rgba(167, 139, 250, 0.08) 70%, rgba(10, 15, 31, 0.5) 100%);
    pointer-events: none;
}

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

.feature-card {
    background: var(--gradient-secondary);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 229, 255, 0.4);
}

.feature-card:nth-child(1)::before { background: linear-gradient(90deg, #00e5ff, #6366f1); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, #a78bfa, #f472b6); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, #34d399, #00e5ff); }

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.35), 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 229, 255, 0.45), 0 0 0 1px rgba(255,255,255,0.15);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #eef2ff 0%, #00e5ff 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.feature-benefits {
    list-style: none;
    position: relative;
    z-index: 2;
}

.feature-benefits li {
    color: var(--muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f1425 0%, #111827 30%, #0a0f1f 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), rgba(167,139,250,0.3), transparent);
    opacity: 0.8;
}

.steps-container {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.step:nth-child(even) {
    grid-template-columns: 1fr auto;
}

.step:nth-child(even) .step-content {
    order: -1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.35), 0 0 0 1px rgba(255,255,255,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:nth-child(1) .step-number { background: linear-gradient(135deg, #00e5ff, #6366f1); }
.step:nth-child(2) .step-number { background: linear-gradient(135deg, #a78bfa, #ec4899); }
.step:nth-child(3) .step-number { background: linear-gradient(135deg, #34d399, #00e5ff); }
.step:nth-child(4) .step-number { background: linear-gradient(135deg, #fbbf24, #f472b6); }

.step:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 229, 255, 0.4), 0 0 0 1px rgba(255,255,255,0.2);
}

.step-content {
    background: linear-gradient(160deg, rgba(26,31,58,0.6) 0%, var(--panel) 100%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 229, 255, 0.08);
}

.step-image-wrap {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    aspect-ratio: 16 / 10;
    min-height: 140px;
}

.step-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.step-content:hover .step-image-wrap img {
    transform: scale(1.04);
}

.step-visual {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00e5ff, #a78bfa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.45), 0 0 0 2px rgba(255,255,255,0.2);
    border: none;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #00e5ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.bidding-tips {
    background: linear-gradient(160deg, rgba(26,31,58,0.6) 0%, var(--panel) 100%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bidding-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00e5ff, #a78bfa, #f472b6);
    opacity: 0.8;
}

.bidding-tips h3 {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #00e5ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.tip {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.tip i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.2), rgba(244,114,182,0.2), transparent);
    opacity: 0.8;
}

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

.testimonial-card {
    background: var(--gradient-secondary);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00e5ff, #a78bfa, #f472b6);
    opacity: 0.7;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 229, 255, 0.35);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
    flex-shrink: 0;
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.author-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Safety Section */
.safety-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f1425 0%, #111827 40%, #0a0f1f 100%);
    position: relative;
    overflow: hidden;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52,211,153,0.25), rgba(0,229,255,0.2), transparent);
    opacity: 0.8;
}

.safety-accent-img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: min(420px, 40%);
    max-height: 320px;
    opacity: 0.12;
    pointer-events: none;
}

.safety-accent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

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

.safety-feature {
    text-align: center;
    padding: 2rem;
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #34d399 0%, #00e5ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(52, 211, 153, 0.35), 0 0 0 1px rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-feature:hover .safety-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(52, 211, 153, 0.45), 0 0 0 1px rgba(255,255,255,0.15);
}

.safety-feature h3 {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #34d399, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.safety-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Digital Payment Methods Section */
.payments-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #0a0f1f 0%, #0f1425 25%, #121a2f 50%, #0f1425 75%, #0a0f1f 100%);
    overflow: hidden;
}

.payments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), rgba(247,148,29,0.2), rgba(226,19,110,0.2), rgba(0,229,255,0.3), transparent);
    opacity: 0.9;
    animation: paymentShimmer 4s ease-in-out infinite;
}

@keyframes paymentShimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.payments-section .section-header {
    animation: paymentFadeInDown 0.8s ease-out;
}

.payments-section .section-header h2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.payments-section .section-header h2 i {
    -webkit-text-fill-color: initial;
    color: #00e5ff;
    animation: paymentIconPulse 2s ease-in-out infinite;
}

@keyframes paymentIconPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

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

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Staggered entrance animation for payment cards */
.payment-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: paymentCardEnter 0.6s ease-out forwards;
}

.payment-card:nth-child(1) { animation-delay: 0.1s; }
.payment-card:nth-child(2) { animation-delay: 0.2s; }
.payment-card:nth-child(3) { animation-delay: 0.3s; }
.payment-card:nth-child(4) { animation-delay: 0.4s; }
.payment-card:nth-child(5) { animation-delay: 0.5s; }
.payment-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes paymentCardEnter {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Colorful card backgrounds (subtle brand tint) */
.payment-bkash { --payment-glow: rgba(226, 19, 110, 0.25); --payment-bg: linear-gradient(145deg, rgba(226, 19, 110, 0.08) 0%, rgba(255,255,255,0.02) 50%); }
.payment-nagad { --payment-glow: rgba(247, 148, 29, 0.3); --payment-bg: linear-gradient(145deg, rgba(247, 148, 29, 0.08) 0%, rgba(255,255,255,0.02) 50%); }
.payment-rocket { --payment-glow: rgba(0, 102, 179, 0.3); --payment-bg: linear-gradient(145deg, rgba(0, 102, 179, 0.08) 0%, rgba(255,255,255,0.02) 50%); }
.payment-tap { --payment-glow: rgba(0, 166, 81, 0.3); --payment-bg: linear-gradient(145deg, rgba(0, 166, 81, 0.08) 0%, rgba(255,255,255,0.02) 50%); }
.payment-upay { --payment-glow: rgba(107, 76, 230, 0.3); --payment-bg: linear-gradient(145deg, rgba(107, 76, 230, 0.08) 0%, rgba(255,255,255,0.02) 50%); }
.payment-okwallet { --payment-glow: rgba(34, 197, 94, 0.3); --payment-bg: linear-gradient(145deg, rgba(34, 197, 94, 0.08) 0%, rgba(255,255,255,0.02) 50%); }

.payment-card {
    background: var(--payment-bg, rgba(255, 255, 255, 0.04));
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease, height 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.payment-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.payment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 40px var(--payment-glow, rgba(0, 229, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--payment-bg);
}

.payment-card:hover::before {
    opacity: 1;
    height: 5px;
}

.payment-card:hover::after {
    opacity: 1;
}

.payment-bkash::before { background: linear-gradient(90deg, #e2136e, #ff2d8a, #b10d52); }
.payment-nagad::before { background: linear-gradient(90deg, #f7941d, #ffb347, #e67e0a); }
.payment-rocket::before { background: linear-gradient(90deg, #0066b3, #3399ff, #004d8c); }
.payment-tap::before { background: linear-gradient(90deg, #00a651, #00e676, #008c44); }
.payment-upay::before { background: linear-gradient(90deg, #6b4ce6, #9f7aea, #5a3fd4); }
.payment-okwallet::before { background: linear-gradient(90deg, #22c55e, #4ade80, #16a34a); }

.payment-icon {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.25s ease;
}

/* Logo variant: neutral background so MFS logos show clearly */
.payment-icon--logo {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15);
    padding: 10px;
}

.payment-icon--logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.payment-card:hover .payment-icon {
    transform: scale(1.08) translateY(-2px);
}

.payment-card:hover .payment-icon--logo {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 24px var(--payment-glow, rgba(0, 229, 255, 0.2));
}

.payment-card:hover .payment-badge {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

.payment-card:hover h3 {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback colored icon (when no logo image) */
.payment-bkash .payment-icon:not(.payment-icon--logo) { background: linear-gradient(135deg, #e2136e, #b10d52); box-shadow: 0 6px 20px rgba(226, 19, 110, 0.35); }
.payment-nagad .payment-icon:not(.payment-icon--logo) { background: linear-gradient(135deg, #f7941d, #e67e0a); box-shadow: 0 6px 20px rgba(247, 148, 29, 0.35); }
.payment-rocket .payment-icon:not(.payment-icon--logo) { background: linear-gradient(135deg, #0066b3, #004d8c); box-shadow: 0 6px 20px rgba(0, 102, 179, 0.35); }
.payment-tap .payment-icon:not(.payment-icon--logo) { background: linear-gradient(135deg, #00a651, #008c44); box-shadow: 0 6px 20px rgba(0, 166, 81, 0.35); }
.payment-upay .payment-icon:not(.payment-icon--logo) { background: linear-gradient(135deg, #6b4ce6, #5a3fd4); box-shadow: 0 6px 20px rgba(107, 76, 230, 0.35); }
.payment-okwallet .payment-icon:not(.payment-icon--logo) { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35); }

.payment-initial {
    font-family: 'Orbitron', 'Roboto', sans-serif;
    letter-spacing: 0.02em;
}

.payment-okwallet .payment-initial {
    font-size: 1rem;
}

.payment-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: background 0.4s ease, -webkit-text-fill-color 0.4s ease, background-clip 0.4s ease;
}

.payment-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.payment-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.payment-cta {
    text-align: center;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(167, 139, 250, 0.06) 50%, rgba(34, 197, 94, 0.06) 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    animation: paymentCtaGlow 6s ease-in-out infinite;
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.08);
}

@keyframes paymentCtaGlow {
    0%, 100% { box-shadow: 0 4px 24px rgba(0, 229, 255, 0.08); border-color: rgba(0, 229, 255, 0.2); }
    50% { box-shadow: 0 8px 32px rgba(0, 229, 255, 0.12); border-color: rgba(0, 229, 255, 0.3); }
}

.payment-cta p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-cta i {
    color: #34d399;
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(52, 197, 153, 0.4));
}

@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .payments-section {
        padding: 4rem 0;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.25), rgba(167,139,250,0.2), transparent);
    opacity: 0.85;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(160deg, rgba(26,31,58,0.5) 0%, var(--panel) 100%);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 229, 255, 0.06);
}

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

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

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    max-height: 800px;
}

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

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-bg-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 31, 0.92) 0%, rgba(10, 15, 31, 0.82) 40%, rgba(0, 229, 255, 0.1) 70%, rgba(167, 139, 250, 0.08) 100%);
    pointer-events: none;
}

.cta-container-inner {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00e5ff 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary.large, .cta-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.app-badge img {
    height: 60px;
    transition: transform 0.3s ease;
}

.app-badge:hover img {
    transform: scale(1.05);
}

.cta-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
    background: rgba(15, 20, 37, 0.85);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.cta-stat .stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00e5ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f1425 0%, var(--panel) 30%, #0a0f1f 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    padding: 3rem 0 calc(1rem + var(--safe-bottom));
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.35), rgba(167,139,250,0.3), transparent);
    opacity: 0.9;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #00e5ff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

.footer-logo i {
    -webkit-text-fill-color: initial;
    background: none;
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a.social-facebook {
    background: #1877f2;
}

.social-links a.social-facebook:hover {
    background: #3d8bf5;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.5);
}

.social-links a.social-youtube {
    background: #ff0000;
}

.social-links a.social-youtube:hover {
    background: #ff3333;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
}

.footer-section h3 {
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    min-height: var(--touch-min);
}

.footer-section ul li a:hover {
    color: var(--accent);
}

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

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    min-height: var(--touch-min);
    transition: all 0.25s ease;
}

a.contact-row:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--text-primary);
    transform: translateX(4px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

a.contact-row:hover .contact-icon {
    transform: scale(1.08);
}

.contact-tel .contact-icon {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 153, 204, 0.15));
    color: var(--accent);
}

a.contact-tel:hover {
    border-color: rgba(0, 229, 255, 0.4);
}

.contact-whatsapp .contact-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(37, 211, 102, 0.15));
    color: #25d366;
}

a.contact-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

a.contact-whatsapp:hover .contact-text {
    color: #25d366;
}

.contact-email .contact-icon {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 153, 204, 0.15));
    color: var(--accent);
}

a.contact-email:hover {
    border-color: rgba(0, 229, 255, 0.4);
}

.contact-place {
    cursor: default;
}

.contact-place .contact-icon {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 153, 204, 0.15));
    color: var(--accent);
}

.contact-text {
    font-weight: 500;
    flex: 1;
}

/* Fallback for Privacy/Terms footer (old .contact-info p structure) */
.contact-info > p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: var(--text-secondary);
}

.footer-play-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-play-section .footer-play-title {
    margin-bottom: 0.75rem;
}

.footer-play-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
}

.footer-play-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.35);
}

.footer-play-badge img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content p {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.footer-bottom-content a {
    color: var(--accent);
    text-decoration: none;
}

.footer-tagline {
    font-family: 'Hind Siliguri', sans-serif;
    color: var(--accent);
    font-weight: 600;
}

/* Hero audience split (Customer vs Driver) */
.hero-audience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-content .hero-audience-split {
    margin-bottom: 0;
}

.audience-card {
    position: relative;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid transparent;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.audience-customer {
    background: linear-gradient(160deg, rgba(167, 139, 250, 0.08) 0%, rgba(17, 24, 39, 0.95) 50%, var(--bg) 100%);
    border-color: rgba(167, 139, 250, 0.25);
}

.audience-customer::before {
    background: linear-gradient(90deg, var(--accent-customer), #7c3aed);
}

.audience-customer:hover {
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(167, 139, 250, 0.15);
}

.audience-driver {
    background: linear-gradient(160deg, rgba(34, 197, 94, 0.08) 0%, rgba(17, 24, 39, 0.95) 50%, var(--bg) 100%);
    border-color: rgba(34, 197, 94, 0.25);
}

.audience-driver::before {
    background: linear-gradient(90deg, var(--accent-driver), #16a34a);
}

.audience-driver:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(34, 197, 94, 0.15);
}

.audience-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audience-customer .audience-title {
    color: var(--accent-customer);
}

.audience-driver .audience-title {
    color: var(--accent-driver);
}

.audience-title i {
    flex-shrink: 0;
    font-size: 1.15em;
    opacity: 1;
    color: inherit;
}

.audience-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: inherit;
    line-height: 1;
}

.audience-title-icon svg {
    width: 1.15em;
    height: 1.15em;
    display: block;
}

.audience-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.35rem;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-cta-group .cta-primary,
.hero-cta-group .cta-secondary {
    padding: 0.65rem 1.15rem;
    font-size: 0.9rem;
    min-height: 44px;
    width: fit-content;
    box-sizing: border-box;
    justify-content: center;
    white-space: nowrap;
}

.hero-cta-group .cta-primary {
    border: 2px solid transparent;
}

.hero-cta-group a {
    text-decoration: none;
}

.audience-customer .cta-primary {
    background: linear-gradient(135deg, var(--accent-customer), #7c3aed);
    color: #fff;
    box-shadow: 0 4px 14px rgba(167, 139, 250, 0.35);
}

.audience-customer .cta-primary:hover {
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.5);
}

.audience-customer .cta-secondary {
    color: var(--accent-customer);
    border-color: var(--accent-customer);
}

.audience-customer .cta-secondary:hover {
    background: var(--accent-customer);
    color: var(--bg);
}

.audience-driver .cta-primary {
    background: linear-gradient(135deg, var(--accent-driver), #16a34a);
    color: #0a0f1f;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.audience-driver .cta-primary:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.audience-driver .cta-secondary {
    color: var(--accent-driver);
    border-color: var(--accent-driver);
}

.audience-driver .cta-secondary:hover {
    background: var(--accent-driver);
    color: var(--bg);
}

.hero-cta-more {
    margin-top: 0;
}

/* For Drivers section */
.for-drivers-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f1425 0%, #111827 35%, #0a0f1f 100%);
    border-top: 1px solid transparent;
    position: relative;
}

.for-drivers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), rgba(0,229,255,0.2), transparent);
    opacity: 0.9;
}

.for-drivers-section .section-header h2 {
    background: linear-gradient(135deg, #34d399 0%, #00e5ff 60%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drivers-showcase {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 21 / 9;
    min-height: 160px;
}

.drivers-showcase img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drivers-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 15, 31, 0.55) 0%, transparent 40%, rgba(34, 197, 94, 0.08) 70%, rgba(0, 229, 255, 0.06) 100%);
    pointer-events: none;
}

.drivers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.driver-benefit-card {
    background: linear-gradient(160deg, rgba(26,31,58,0.5) 0%, var(--panel) 100%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.driver-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #34d399, #00e5ff);
    opacity: 0.75;
}

.driver-benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: var(--shadow-card-hover);
}

.driver-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #34d399 0%, #00e5ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.driver-benefit-card:hover .driver-benefit-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(52, 211, 153, 0.45);
}

.driver-benefit-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #34d399, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

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

.drivers-how-steps {
    margin-bottom: 2.5rem;
}

.drivers-how-steps h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.drivers-steps-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.driver-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

.driver-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.driver-step h4 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.driver-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.for-drivers-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.for-drivers-cta a {
    text-decoration: none;
}

/* CTA section audience split */
.cta-audience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-audience-card {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.cta-audience-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-audience-card > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-audience-card .cta-buttons {
    margin-bottom: 1rem;
}

.cta-audience-card .cta-buttons a {
    text-decoration: none;
}

.app-badges-inline {
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-stats + .app-badges-inline {
    margin-top: 2rem;
}

.app-badges-inline .app-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-badges-inline .app-badge:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(0, 229, 255, 0.2), 0 0 20px rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.35);
}

.app-badges-inline .app-badge img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    transition: none;
}

.app-badges-inline .app-badge:hover img {
    transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-copy {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-audience-split {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .audience-card {
        text-align: center;
        width: 100%;
        max-width: min(360px, 88vw);
        margin-inline: auto;
    }
    
    .audience-title {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .drivers-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .drivers-steps-inner {
        grid-template-columns: 1fr;
    }
    
    .cta-audience-split {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .step:nth-child(even) .step-content {
        order: 0;
    }
    
    .hero-visual {
        align-items: center;
    }
    
    .hero-container .hero-image {
        width: 100%;
        max-width: min(360px, 88vw);
        min-width: 0;
        height: 255px !important;
        min-height: 255px !important;
        aspect-ratio: unset;
        margin-inline: auto;
    }
    
    .floating-bid-card {
        max-width: min(340px, calc(100% - 2rem));
        width: min(340px, calc(100% - 2rem));
        padding: 1rem 1.15rem;
        gap: 0.7rem;
    }
    
    .live-bid-section .hero-image {
        max-width: min(360px, 88vw);
        width: 100%;
        min-width: 0;
        height: 255px !important;
        min-height: 255px !important;
        aspect-ratio: unset;
        margin-inline: auto;
    }
    
    .live-bid-section .floating-bid-card {
        max-width: min(340px, calc(100% - 2rem));
        width: min(340px, calc(100% - 2rem));
        padding: 1rem 1.15rem;
        gap: 0.7rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: calc(70px + var(--safe-top));
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px - var(--safe-top));
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 2rem 1rem 2rem;
        padding-bottom: calc(2rem + var(--safe-bottom));
        transition: left 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        padding: 0.85rem 1rem;
        min-height: var(--touch-min);
    }
    
    .nav-cta {
        min-height: var(--touch-min);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-app-badge {
        min-height: var(--touch-min);
        min-width: var(--touch-min);
        padding: 0.25rem 0.5rem;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .nav-app-badge img {
        height: 34px;
    }
    
    /* Mobile language toggle adjustments */
    .lang-btn {
        min-height: var(--touch-min);
        padding: 0.65rem 1rem;
    }
    
    .language-toggle {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 0.5rem;
    }
    
    .lang-option {
        justify-content: center;
        padding: 0.75rem 1rem;
        min-height: var(--touch-min);
        border-radius: 10px;
        margin-bottom: 0.25rem;
    }
    
    .lang-option:first-child,
    .lang-option:last-child {
        border-radius: 10px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-more {
        flex-direction: row;
        justify-content: center;
    }
    
    .floating-bid-card {
        max-width: min(300px, calc(100% - 2rem));
        width: min(300px, calc(100% - 2rem));
        padding: 0.85rem 1rem;
        gap: 0.55rem;
    }
    
    .bid-card-vehicle-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .bid-card-vehicle-info h4 {
        font-size: 1rem;
    }
    
    .bid-card-amount {
        font-size: 1.1rem;
    }
    
    .hero-container .hero-image {
        max-width: min(320px, 88vw);
        min-width: 0;
        height: 240px !important;
        min-height: 240px !important;
        aspect-ratio: unset;
    }
    
    .live-bid-section .hero-image {
        max-width: min(320px, 88vw);
        min-width: 0;
        height: 240px !important;
        min-height: 240px !important;
        aspect-ratio: unset;
    }
    
    .live-bid-section .floating-bid-card {
        max-width: min(300px, calc(100% - 2rem));
        width: min(300px, calc(100% - 2rem));
        padding: 0.85rem 1rem;
        gap: 0.55rem;
    }
    
    .live-bid-section {
        padding: 2rem 0;
    }
    
    .for-drivers-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-showcase {
        min-height: 140px;
        aspect-ratio: 2 / 1;
        margin-bottom: 2rem;
    }
    
    .drivers-showcase {
        min-height: 130px;
        aspect-ratio: 2 / 1;
        margin-bottom: 2rem;
    }
    
    .safety-accent-img {
        display: none;
    }
    
    .step-image-wrap {
        min-height: 120px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .container {
        padding: 0 max(1rem, var(--safe-left), var(--safe-right));
    }
    
    .hero-container {
        padding: 0 max(1rem, var(--safe-left), var(--safe-right));
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }
    
    .hero-audience-split {
        gap: 1.25rem;
        justify-items: center;
    }
    
    .audience-card {
        padding: 1.5rem 1.25rem;
        width: 100%;
        max-width: min(320px, 90vw);
        margin-inline: auto;
    }
    
    .hero-cta-more {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-cta-more .cta-secondary {
        min-height: var(--touch-min);
    }
    
    .faq-question {
        min-height: var(--touch-min);
        padding: 1rem 1.25rem;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-container .hero-image {
        max-width: min(300px, 90vw);
        min-width: 0;
        height: 228px !important;
        min-height: 228px !important;
        aspect-ratio: unset;
    }
    
    .floating-bid-card {
        max-width: min(280px, calc(100% - 2rem));
        width: min(280px, calc(100% - 2rem));
        padding: 0.75rem 0.9rem;
        gap: 0.5rem;
    }
    
    .bid-card-live {
        font-size: 0.65rem;
    }
    
    .bid-card-vehicle-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .bid-card-vehicle-info h4 {
        font-size: 0.95rem;
    }
    
    .bid-card-meta {
        font-size: 0.7rem;
    }
    
    .bid-card-amount {
        font-size: 1.05rem;
    }
    
    .bid-card-timer {
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.85rem;
    }
    
    .cta-audience-split {
        gap: 1.25rem;
    }
    
    .cta-audience-card {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .step {
        gap: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .features-showcase {
        min-height: 110px;
        margin-bottom: 1.5rem;
    }
    
    .drivers-showcase {
        min-height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .step-image-wrap {
        min-height: 100px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.65rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-height: var(--touch-min);
    }
    
    .hero-cta-group .cta-primary,
    .hero-cta-group .cta-secondary {
        min-height: var(--touch-min);
    }
    
    .hero-container .hero-image {
        max-width: min(280px, 92vw);
        min-width: 0;
        height: 222px !important;
        min-height: 222px !important;
        aspect-ratio: unset;
    }
    
    .floating-bid-card {
        max-width: min(260px, calc(100% - 2rem));
        width: min(260px, calc(100% - 2rem));
        padding: 0.65rem 0.85rem;
        gap: 0.45rem;
    }
    
    .live-bid-section .hero-image {
        max-width: min(280px, 92vw);
        min-width: 0;
        height: 222px !important;
        min-height: 222px !important;
        aspect-ratio: unset;
    }
    
    .live-bid-section .floating-bid-card {
        max-width: min(260px, calc(100% - 2rem));
        width: min(260px, calc(100% - 2rem));
        padding: 0.65rem 0.85rem;
        gap: 0.45rem;
    }
    
    .live-bid-section {
        padding: 1.5rem 0;
    }
    
    .bid-card-main {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .bid-card-bid {
        align-items: flex-start;
    }
    
    .bid-card-price {
        text-align: left;
    }
    
    .bid-card-cta {
        min-height: var(--touch-min);
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .bid-card-live {
        font-size: 0.65rem;
    }
    
    .bid-card-vehicle-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .bid-card-vehicle-info h4 {
        font-size: 0.9rem;
    }
    
    .bid-card-meta {
        font-size: 0.7rem;
    }
    
    .bid-card-amount {
        font-size: 1rem;
    }
    
    .bid-card-timer {
        font-size: 0.7rem;
    }
    
    .audience-card {
        padding: 1.25rem 1rem;
        max-width: min(300px, 92vw);
    }
    
    .audience-title {
        font-size: 1.1rem;
    }
    
    .audience-desc {
        font-size: 0.875rem;
    }
    
    .features,
    .how-it-works,
    .testimonials,
    .safety-section,
    .faq-section,
    .cta-section,
    .for-drivers-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-section h3 {
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0;
    }
    
    .footer-bottom-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer-bottom-content a {
        padding: 0.4rem 0.25rem;
    }
    
    .cta-audience-card .cta-primary.large,
    .cta-audience-card .cta-secondary.large {
        min-height: var(--touch-min);
        width: 100%;
        justify-content: center;
    }
    
    .app-badge {
        min-width: var(--touch-min);
        min-height: var(--touch-min);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .container,
    .hero-container {
        padding-inline: max(0.75rem, var(--safe-left), var(--safe-right));
    }
    
    .nav-container {
        padding-inline: max(1rem, var(--safe-left), var(--safe-right));
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .audience-card {
        max-width: min(280px, 94vw);
    }
    
    .hero-container .hero-image {
        max-width: min(260px, 94vw);
        min-width: 0;
        height: 212px !important;
        min-height: 212px !important;
        aspect-ratio: unset;
    }
    
    .floating-bid-card {
        max-width: min(240px, calc(100% - 2rem));
        width: min(240px, calc(100% - 2rem));
        padding: 0.6rem 0.75rem;
        gap: 0.4rem;
    }
    
    .bid-card-vehicle-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .bid-card-vehicle-info h4 {
        font-size: 0.85rem;
    }
    
    .bid-card-amount {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --bg: #000000;
        --panel: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --card-border: rgba(0, 229, 255, 0.5);
    }
}