/* ============================================
   BEETAXI - Landing Page Styles
   Your Journey, Our Priority
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #F5C518;
    --primary-dark: #D4A800;
    --primary-light: #FFD93D;
    --secondary: #1a1a1a;
    --dark: #111111;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --border: #e5e5e5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 30px rgba(245, 197, 24, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Utilities ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-label::before {
    left: -20px;
}

.section-label::after {
    right: -20px;
}

.section-label.light {
    color: var(--primary-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--white);
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.8);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 197, 24, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    width: 120px;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    background: rgba(245, 197, 24, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF9E0 0%, #FFF3C4 30%, var(--primary-light) 70%, var(--primary) 100%);
    padding-top: 100px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -100px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-dark);
    top: 50%;
    left: 40%;
    animation: float 10s ease-in-out infinite;
}

.hero-road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #e0e0e0;
    opacity: 0.3;
}

.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--primary-dark), var(--primary-dark) 30px, transparent 30px, transparent 60px);
    animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(3deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(245, 197, 24, 0.2);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--primary-dark);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 197, 24, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 20px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxi-illustration {
    width: 100%;
    max-width: 500px;
}

.taxi-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: carBounce 3s ease-in-out infinite;
    object-fit: contain;
}

@keyframes carBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-card i {
    color: var(--primary);
    font-size: 18px;
}

.hero-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: fadeInUp 1.5s ease;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-icon-large svg {
    width: 200px;
    height: 200px;
    animation: beeBounce 3s ease-in-out infinite;
}

@keyframes beeBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(2deg); }
    75% { transform: translateY(5px) rotate(-2deg); }
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
}

.about-features {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--light-bg);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(245, 197, 24, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 20px;
    transition: var(--transition);
}

.about-feature:hover .feature-icon {
    background: var(--primary);
    color: var(--secondary);
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--secondary);
    border-color: transparent;
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured p {
    opacity: 0.8;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 197, 24, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 30px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-card.featured .service-icon {
    background: rgba(245, 197, 24, 0.2);
    color: var(--primary);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-card.featured .service-link {
    color: var(--primary);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 12px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    font-size: 60px;
    font-weight: 900;
    color: rgba(245, 197, 24, 0.15);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--secondary);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(245, 197, 24, 0.5);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    right: -60px;
    top: 45%;
    width: 100px;
    z-index: 0;
    opacity: 0.5;
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-section {
    background: var(--light-bg);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.fleet-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.fleet-image {
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    padding: 40px;
    text-align: center;
}

.fleet-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(245, 197, 24, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 40px;
    color: var(--secondary);
    transition: var(--transition);
}

.fleet-icon-wrapper.premium {
    background: var(--primary);
}

.fleet-card:hover .fleet-icon-wrapper {
    transform: scale(1.1);
    background: var(--primary);
}

.fleet-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.fleet-info {
    padding: 30px;
}

.fleet-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.fleet-features {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fleet-features span {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-features i {
    color: var(--primary-dark);
    font-size: 12px;
}

.fleet-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 13px;
    color: var(--text-muted);
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
}

.price-value small {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.05;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-content {
    color: var(--white);
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.b-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.b-highlight i {
    color: var(--primary);
    font-size: 16px;
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.booking-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    font-size: 16px;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--text);
    background: var(--light-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.1);
}

.form-textarea {
    padding-left: 16px;
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

select.form-input {
    cursor: pointer;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--primary);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(245, 197, 24, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 28px;
    color: var(--primary-dark);
}

.author-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.test-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.test-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download-section {
    background: linear-gradient(135deg, #FFF9E0 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.app-feature i {
    color: var(--primary-dark);
    font-size: 18px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-btn i {
    font-size: 28px;
}

.store-text small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.store-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/* Phone Mockup */
.download-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--secondary);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--secondary);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-preview {
    background: var(--primary);
    padding: 30px 20px 15px;
    text-align: center;
}

.app-logo-preview {
    height: 40px;
    margin: 0 auto;
}

.app-map-preview {
    flex: 1;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--text-muted);
    position: relative;
}

.app-map-preview::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px dashed var(--border);
    border-radius: 10px;
    opacity: 0.5;
}

.app-booking-preview {
    padding: 15px;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.app-input-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.app-btn-preview {
    background: var(--primary);
    color: var(--secondary);
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    z-index: 1;
}

/* ============================================
   DRIVER APP SECTION
   ============================================ */
.driver-app-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.driver-app-section .section-label {
    color: #2e7d32;
}

.driver-app-section .section-title .highlight {
    color: #2e7d32;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(245, 197, 24, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: var(--secondary);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form .form-input {
    background: var(--white);
    padding-left: 16px;
}

.contact-form .form-textarea {
    padding-left: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
}

.footer-wave {
    position: relative;
    margin-bottom: -2px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-main {
    background: var(--secondary);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '›';
    font-size: 18px;
    line-height: 1;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .section {
        padding: 120px 0;
    }

    .hero {
        min-height: 100vh;
        padding-top: 120px;
    }
}

/* Desktop (1025px - 1439px) */
@media (min-width: 1025px) and (max-width: 1439px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

/* Large Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: clamp(28px, 3.5vw, 36px);
    }

    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .taxi-illustration {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-card {
        display: none;
    }

    .hero-title {
        font-size: clamp(32px, 5vw, 48px);
    }

    .nav-logo img {
        height: 50px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-connector {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .testimonial-card {
        min-width: calc(50% - 15px);
        padding: 28px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 15px;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        display: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-experience-badge {
        bottom: -14px;
        right: -14px;
        padding: 16px 22px;
    }

    .exp-number {
        font-size: 28px;
    }

    .booking-content {
        text-align: center;
    }

    .booking-highlights {
        text-align: left;
        display: inline-block;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Tablet (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(26px, 3vw, 32px);
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 0 auto 28px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-direction: row;
        gap: 24px;
    }

    .taxi-illustration {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-card {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .btn-lg {
        padding: 13px 28px;
        font-size: 14px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 12px 0;
        font-size: 15px;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .step-number {
        font-size: 48px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .step-connector {
        display: none;
    }

    .fleet-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

    .form-input {
        padding: 12px 14px 12px 44px;
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form h3 {
        font-size: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .about-image-card {
        min-height: 300px;
        padding: 40px;
    }

    .about-experience-badge {
        bottom: -12px;
        right: -12px;
        padding: 14px 20px;
    }

    .exp-number {
        font-size: 26px;
    }

    .booking-content {
        text-align: center;
    }

    .booking-highlights {
        text-align: left;
        display: inline-block;
    }

    .testimonial-controls {
        gap: 12px;
        margin-top: 30px;
    }

    .test-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Small Tablet / Large Mobile (481px - 599px) */
@media (min-width: 481px) and (max-width: 599px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 50px 0;
    }

    .section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 30px);
    }

    .hero {
        padding-top: 75px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .taxi-illustration {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-card {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-title {
        font-size: clamp(26px, 6vw, 36px);
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin: 0 auto 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
        align-items: center;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 20px;
        padding: 16px 0;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        display: block;
        height: 30px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 40px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 14px;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 18px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .step-connector {
        display: none;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .form-input {
        padding: 11px 12px 11px 40px;
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 28px;
    }

    .booking-form h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 24px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .about-image-card {
        min-height: 280px;
        padding: 40px;
    }

    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 16px auto 0;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 12px 20px;
    }

    .about-visual {
        text-align: center;
    }

    .exp-number {
        font-size: 24px;
    }

    .booking-content {
        text-align: center;
    }

    .booking-highlights {
        text-align: left;
        display: inline-block;
    }

    .about-icon-large svg {
        width: 140px;
        height: 140px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}

/* Mobile Landscape (769px width - horizontal) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .scroll-indicator {
        display: none !important;
    }

    .hero-title {
        font-size: clamp(24px, 4vw, 32px);
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .hero-buttons {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-stats {
        font-size: 12px;
        gap: 15px;
        padding: 12px 0;
    }
}

/* Mobile (481px - 599px already covered above) */

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
        padding: 0 12px;
    }

    .section-label::before,
    .section-label::after {
        width: 20px;
    }

    .section-title {
        font-size: clamp(22px, 5.5vw, 28px);
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-description {
        font-size: 14px;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .taxi-illustration {
        max-width: 220px;
        margin: 0 auto;
    }

    .hero-card {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-bg-shapes {
        opacity: 0.5;
    }

    .shape {
        opacity: 0.05 !important;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        gap: 6px;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 13px;
        margin: 0 auto 20px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
        align-items: center;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
        border-radius: 8px;
        min-height: 44px;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .btn-sm {
        padding: 10px 20px;
        font-size: 12px;
    }

    .btn-primary {
        min-height: 44px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 16px;
        padding: 16px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .stat-item {
        text-align: center;
        flex: 1;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-divider {
        display: block;
        height: 28px;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .nav-logo {
        flex: 1;
    }

    .logo-img {
        height: 45px;
    }

    .navbar.scrolled .logo-img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: none;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 40px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 14px;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        gap: 4px;
    }

    .mobile-toggle .bar {
        width: 24px;
        height: 2.5px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 16px;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-link {
        font-size: 12px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 24px 16px;
    }

    .step-number {
        font-size: 40px;
        margin-bottom: -10px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 14px;
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 13px;
    }

    .step-connector {
        display: none !important;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-image-card {
        min-height: 220px;
        padding: 30px;
    }

    .about-visual {
        text-align: center;
    }

    .about-icon-large svg {
        width: 120px;
        height: 120px;
    }

    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 12px auto 0;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 18px;
    }

    .exp-number {
        font-size: 22px;
    }

    .exp-text {
        font-size: 11px;
    }

    .about-feature {
        padding: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .feature-text h4 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 13px;
    }

    /* Fleet */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fleet-card {
        border-radius: 12px;
    }

    .fleet-image {
        padding: 30px 20px;
    }

    .fleet-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .fleet-info {
        padding: 20px;
    }

    .fleet-info h3 {
        font-size: 16px;
    }

    .fleet-features {
        font-size: 12px;
        gap: 10px;
        margin-bottom: 14px;
    }

    .price-value {
        font-size: 24px;
    }

    /* Booking */
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-content {
        text-align: center;
    }

    .booking-highlights {
        text-align: left;
        margin-top: 16px;
        display: inline-block;
    }

    .booking-form-wrapper {
        padding: 20px;
        border-radius: 12px;
    }

    .booking-form h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-input {
        padding: 11px 12px 11px 38px;
        font-size: 14px;
        border-radius: 8px;
        min-height: 44px;
    }

    .form-icon {
        left: 14px;
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    select.form-input {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 18px;
        padding-right: 38px;
        appearance: none;
        cursor: pointer;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-card {
        min-width: calc(100% - 0px);
        padding: 20px;
        border-radius: 12px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .testimonial-author {
        gap: 10px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .author-avatar i {
        font-size: 24px;
    }

    .author-info h4 {
        font-size: 13px;
    }

    .author-info span {
        font-size: 12px;
    }

    .testimonial-controls {
        gap: 12px;
        margin-top: 24px;
    }

    .test-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .testimonial-dots .dot {
        width: 8px;
        height: 8px;
    }

    .testimonial-dots .dot.active {
        width: 24px;
    }

    /* Download */
    .download-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .app-features {
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: flex-start;
    }

    .app-feature {
        font-size: 13px;
        gap: 8px;
    }

    .app-feature i {
        font-size: 16px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .store-btn {
        padding: 11px 14px;
        gap: 10px;
        width: 100%;
        border-radius: 8px;
    }

    .store-btn i {
        font-size: 24px;
    }

    .store-text small {
        font-size: 10px;
    }

    .store-text strong {
        font-size: 14px;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
    }

    .phone-frame::before {
        width: 100px;
        height: 20px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card {
        padding: 16px;
        gap: 12px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

    .contact-details h4 {
        font-size: 14px;
    }

    .contact-details p {
        font-size: 12px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    /* Footer */
    .footer-wave svg {
        height: 60px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo-img {
        height: 40px;
        margin-bottom: 12px;
    }

    .footer-tagline {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-links h4,
    .footer-newsletter h4 {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 13px;
        padding: 6px 0;
    }

    .footer-newsletter p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .newsletter-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .newsletter-btn {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 12px;
        justify-content: center;
        font-size: 11px;
    }

    /* Back to top */
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    /* Hero cards */
    .hero-card {
        display: none;
    }

    /* AOS animations for mobile */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---- Mobile-specific: disable hover transforms ---- */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
    }

    .fleet-card:hover {
        transform: none;
    }

    .contact-card:hover {
        transform: none;
    }

    .about-feature:hover {
        transform: none;
    }

    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }

    .store-btn:hover {
        transform: none;
    }

    .nav-cta:hover {
        transform: none;
    }

    .back-to-top:hover {
        transform: none;
    }

    .social-link:hover {
        transform: none;
    }

    .newsletter-btn:hover {
        transform: none;
    }
}

/* Extra Small Mobile (< 320px) */
@media (max-width: 319px) {
    .container {
        padding: 0 12px;
    }

    .section-title {
        font-size: 20px;
    }

    .hero-title {
        font-size: 20px;
    }

    .btn-lg {
        padding: 10px 16px;
        font-size: 12px;
    }

    .form-input {
        padding: 10px 10px 10px 36px;
        font-size: 13px;
    }

    .service-card {
        padding: 16px 12px;
    }

    .fleet-info {
        padding: 16px;
    }

    .booking-form-wrapper {
        padding: 16px;
    }

    .contact-form-wrapper {
        padding: 16px;
    }
}

/* ---- Mobile menu overlay ---- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
