/* Taxi Page - Professional Design matching Home Page */

/* Use Home Page Color Variables */
:root {
    --primary-color: #2E86AB;
    --secondary-color: #A23B72;
    --accent-color: #F18F01;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFB;
    --text-primary: #2C3E50;
    --text-secondary: #5A6C7D;
    --text-light: #8492A6;
    --text-dark: #2C3E50;
    --text-muted: #5A6C7D;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(46, 134, 171, 0.18);
    --shadow-light: 0 8px 32px rgba(46, 134, 171, 0.12);
    --shadow-medium: 0 12px 40px rgba(46, 134, 171, 0.15);
    --shadow-heavy: 0 20px 60px rgba(46, 134, 171, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

/* Body styling to match home page with proper text contrast */
body {
    background: rgba(20, 28, 38, 0.85);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Light sections with dark text */
.services-section,
.fleet-section,
.booking-section,
.why-choose-section {
    color: var(--text-primary);
}

.services-section h1,
.services-section h2,
.services-section h3,
.services-section h4,
.services-section h5,
.services-section h6,
.fleet-section h1,
.fleet-section h2,
.fleet-section h3,
.fleet-section h4,
.fleet-section h5,
.fleet-section h6,
.booking-section h1,
.booking-section h2,
.booking-section h3,
.booking-section h4,
.booking-section h5,
.booking-section h6,
.why-choose-section h1,
.why-choose-section h2,
.why-choose-section h3,
.why-choose-section h4,
.why-choose-section h5,
.why-choose-section h6 {
    color: var(--text-primary);
}

.services-section p,
.services-section li,
.services-section span,
.fleet-section p,
.fleet-section li,
.fleet-section span,
.booking-section p,
.booking-section li,
.booking-section span,
.why-choose-section p,
.why-choose-section li,
.why-choose-section span {
    color: var(--text-secondary);
}

/* Dark sections and background - ensure white text */
.taxi-hero,
.taxi-hero *:not(.btn):not(.btn *) {
    color: rgba(255, 255, 255, 0.9);
}

.taxi-hero .hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    display: block;
    word-wrap: break-word;
    letter-spacing: -0.02em;
    position: relative;
}

/* Title Glow Effect for Taxi */
.taxi-hero .hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.3), rgba(241, 143, 1, 0.3));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(2px);
    z-index: -1;
    animation: titleGlowTaxi 4s ease-in-out infinite;
}

@keyframes titleGlowTaxi {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.taxi-hero .hero-subtitle {
    color: rgba(255,255,255,0.85) !important;
}

.taxi-hero .section-subtitle {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section - Optimized spacing */
.taxi-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding-top: 170px; /* Increased to clear navbar */
    padding-bottom: 3rem;
}

@media (max-width: 900px) {
  .taxi-hero {
    padding-top: 110px !important;
  }
}
@media (max-width: 600px) {
  .taxi-hero {
    padding-top: 90px !important;
  }
}

.taxi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 134, 171, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(241, 143, 1, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(162, 59, 114, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.taxi-hero .hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.taxi-hero .hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(241, 143, 1, 0.1);
    backdrop-filter: blur(10px);
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(241, 143, 1, 0.3);
    box-shadow: 0 8px 32px rgba(241, 143, 1, 0.1);
}

.hero-badge::before {
    content: '';
    font-size: 1.2rem;
}

.taxi-hero .hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 auto 2rem auto;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    display: block;
    word-wrap: break-word;
    letter-spacing: -0.02em;
    position: relative;
}

.taxi-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 85%;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--accent-color), #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taxi-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.taxi-hero .hero-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 550px;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1), rgba(241, 143, 1, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-170px);
}

.taxi-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 64, 0.3) 0%, rgba(46, 134, 171, 0.1) 100%);
    z-index: 1;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.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: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 134, 171, 0.4);
    background: linear-gradient(135deg, #3498db, #e91e63);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Professional Section Styling with Better UX Spacing */
.section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

/* Override gradient for section titles - make them black */
.section-title.text-gradient {
    display: inline-block !important;
    width: auto !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #000000 !important;
    animation: none !important;
}

/* Make hero title white */
.hero-title.text-gradient {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #ffffff !important;
    animation: none !important;
    word-wrap: break-word !important;
    font-weight: 900 !important;
    position: relative !important;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section - Reduced spacing */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f7ff 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(46, 134, 171, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(241, 143, 1, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(46, 134, 171, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 80px rgba(46, 134, 171, 0.15),
        0 10px 30px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.95);
}

.service-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem auto;
    box-shadow: 0 15px 35px rgba(46, 134, 171, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(46, 134, 171, 0.3);
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
}

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

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

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

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
    background: rgba(46, 134, 171, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-top: 1px solid rgba(46, 134, 171, 0.1);
    padding-top: 2rem;
}

/* Fleet Section - Better spacing */
.fleet-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fffbe7 0%, #f8fafb 100%);
    position: relative;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(46, 134, 171, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(241, 143, 1, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.fleet-section .section-title {
    color: var(--text-primary);
}

.fleet-section .section-description {
    color: var(--text-secondary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-card {
    background: var(--bg-white);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
    box-shadow: var(--shadow-light);
}

.fleet-card:hover {
    transform: translateY(-10px);
    background: var(--bg-white);
    box-shadow: var(--shadow-heavy);
}

.fleet-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.fleet-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.2) 0%, rgba(241, 143, 1, 0.2) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.fleet-card:hover .fleet-image::before {
    opacity: 0.5;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-info {
    padding: 2.5rem;
}

.fleet-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.fleet-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.fleet-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fleet-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 134, 171, 0.2);
    color: rgba(255,255,255,0.9);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(46, 134, 171, 0.3);
}

.fleet-features i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Booking Section - Optimized spacing */
.booking-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0eafc 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 134, 171, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(241, 143, 1, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-features {
    margin-top: 3rem;
}

.booking-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    border: 1px solid rgba(46, 134, 171, 0.1);
    transition: all 0.3s ease;
}

.booking-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.1);
}

.booking-features .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(46, 134, 171, 0.2);
}

.booking-features .feature-icon i {
    color: white;
    font-size: 1.4rem;
}

.booking-features .feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.booking-features .feature-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.booking-form-container {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(46, 134, 171, 0.1);
    box-shadow: 0 25px 60px rgba(46, 134, 171, 0.1);
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form .form-group:last-child {
    grid-column: 1 / -1;
}

/* Special styling for single form group in a row (like special requests) */
.booking-form .form-row:has(.form-group:only-child) .form-group {
    grid-column: 1 / -1;
}

/* Fallback for browsers that don't support :has() */
.booking-form .form-row .form-group:only-child {
    grid-column: 1 / -1;
}

/* Modal form styling for single form group */
.modal-body .form-row:has(.form-group:only-child) .form-group {
    grid-column: 1 / -1;
}

.modal-body .form-row .form-group:only-child {
    grid-column: 1 / -1;
}

.booking-form label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(46, 134, 171, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

/* Specific styling for textarea to ensure proper alignment */
.booking-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}

/* Modal textarea styling */
.modal-body textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(46, 134, 171, 0.1);
    background: white;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 15px;
    font-weight: 700;
}

/* Why Choose Section - Professional & Perfectly Aligned */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #fffbe7 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(46, 134, 171, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(241, 143, 1, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Professional Grid Layout with Perfect Alignment */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Modern Feature Cards with Perfect Spacing */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(46, 134, 171, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(46, 134, 171, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%; /* Ensures equal height cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Elegant Top Border Animation */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

/* Professional Hover Effects */
.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(46, 134, 171, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(46, 134, 171, 0.15);
}

/* Perfectly Aligned Icon Container */
.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 
        0 8px 25px rgba(46, 134, 171, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(46, 134, 171, 0.25),
        0 6px 15px rgba(0, 0, 0, 0.12);
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Typography with Perfect Spacing */
.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    text-align: center;
    flex-shrink: 0; /* Prevents title from shrinking */
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    text-align: center;
    flex-grow: 1; /* Allows text to fill remaining space */
    display: flex;
    align-items: flex-start;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .taxi-hero .hero-container,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .taxi-hero .hero-image {
        height: 450px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .taxi-hero {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .taxi-hero .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #000000 !important;
    }
    
    .section-title .text-gradient {
        color: #000000 !important;
        background: none !important;
        animation: none !important;
    }
    
    .hero-features {
        gap: 1rem;
        flex-direction: column;
    }
    
    .hero-features .feature-item {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
    
    .taxi-hero .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .services-grid,
    .fleet-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Ensure special requests field spans full width on mobile */
    .booking-form .form-row .form-group:only-child {
        grid-column: 1 / -1;
    }
    
    .booking-form-container {
        padding: 2.5rem;
    }
    
    .section {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .taxi-hero .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }
    
    .taxi-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        color: #000000 !important;
    }
    
    .section-title .text-gradient {
        color: #000000 !important;
        background: none !important;
        animation: none !important;
    }
    
    .service-card,
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 0;
    }
    
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .feature-card .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .feature-card .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .booking-form-container {
        padding: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
} 

/* Vehicle Categories - Improved spacing */
.vehicle-category {
    margin-bottom: 3.5rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-align: center;
}

.category-description {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Enhanced Fleet Cards */
.fleet-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 134, 171, 0.3);
    border-color: rgba(46, 134, 171, 0.4);
}

.fleet-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-info {
    padding: 1.5rem;
    text-align: center;
}

.vehicle-brand {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.fleet-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.fleet-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.fleet-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.3rem 0.8rem;
    background: rgba(46, 134, 171, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(46, 134, 171, 0.2);
}

.fleet-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.btn-book {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 25px !important;
    min-width: 120px;
}

/* Booking Modal - Mobile-First Design */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(46, 134, 171, 0.15);
    margin: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.close-modal {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    margin-left: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 1.5rem;
    background: #ffffff;
}

.modal-body .form-group {
    margin-bottom: 1.5rem;
}

.modal-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-body label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.modal-body input,
.modal-body textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-body input:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(46, 134, 171, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.modal-body input::placeholder,
.modal-body textarea::placeholder {
    color: var(--text-muted);
}

.modal-body input[readonly] {
    background: rgba(46, 134, 171, 0.1);
    border-color: rgba(46, 134, 171, 0.3);
    color: var(--primary-color);
    font-weight: 500;
}

/* Grid responsive behavior */
@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Modal styles moved to dedicated mobile section to prevent conflicts */
    
    .fleet-features {
        gap: 0.5rem;
    }
    
    .fleet-features span {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fleet grid responsive styling */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Additional animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Duplicate booking-modal rule removed to prevent conflicts */

/* Enhanced button styling for book now buttons */
.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 134, 171, 0.3);
} 

/* Base typography - will be overridden by section-specific rules */
h1, h2, h3, h4, h5, h6 {
    color: inherit;
}

p, li, span {
    color: inherit;
}

.hero-title {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.9) !important;
}

/* Ensure consistent button colors */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Professional spacing and typography */
.section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
}

/* Ensure consistent link colors */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive spacing and improved UX */
@media (max-width: 768px) {
    /* Mobile-first spacing adjustments */
    .section {
        padding: 3rem 0;
    }
    
    .taxi-hero {
        min-height: 70vh;
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .taxi-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .category-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .category-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .services-grid,
    .fleet-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vehicle-category {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet spacing adjustments */
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #000000 !important;
    }
    
    .section-title .text-gradient {
        color: #000000 !important;
        background: none !important;
        animation: none !important;
    }
    
    .services-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Improved visual hierarchy and content flow */
.section:nth-child(even) {
    background: var(--bg-light);
}

.section:nth-child(odd) {
    background: var(--bg-white);
}

/* Better content spacing within cards */
.service-card {
    padding: 2.5rem 2rem;
}

.fleet-card {
    margin-bottom: 0;
}

.fleet-info {
    padding: 1.2rem;
}

.feature-card {
    padding: 2rem 1.5rem;
}

/* Improved visual breathing room */
.hero-features {
    margin: 2rem 0;
    gap: 1.5rem;
}

.hero-buttons {
    margin-top: 2.5rem;
    gap: 1rem;
}

/* Better form spacing */
.booking-form .form-row {
    margin-bottom: 1.2rem;
}

.booking-form .form-group {
    margin-bottom: 1.2rem;
}

/* Enhanced list spacing */
.service-features {
    margin-bottom: 1.8rem;
    gap: 0.8rem;
}

.fleet-features {
    margin-bottom: 1.2rem;
    gap: 0.8rem;
}

/* Improved section transitions */
.section {
    transition: all 0.3s ease;
}

/* Better content rhythm for long pages */
.taxi-hero + .services-section {
    padding-top: 4rem;
}

.services-section + .fleet-section {
    padding-top: 4rem;
}

.fleet-section + .booking-section {
    padding-top: 4rem;
}

.booking-section + .why-choose-section {
    padding-top: 4rem;
} 

/* Modal content - ensure proper contrast */
.modal-content h3 {
    color: var(--text-primary);
}

.modal-content label {
    color: var(--text-primary);
}

.modal-content input,
.modal-content textarea {
    color: var(--text-primary);
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: var(--text-light);
}

/* Vehicle category titles on light backgrounds */
.vehicle-category .category-title {
    color: var(--text-primary) !important;
}

.vehicle-category .category-description {
    color: var(--text-secondary) !important;
}

/* Fleet card content on light backgrounds */
.fleet-card .vehicle-brand {
    color: var(--primary-color) !important;
}

.fleet-card h4 {
    color: var(--text-primary) !important;
}

.fleet-card .fleet-features span {
    color: var(--text-secondary) !important;
}

/* Service card content on light backgrounds */
.service-card h3 {
    color: var(--text-primary) !important;
}

.service-card p {
    color: var(--text-secondary) !important;
}

/* Feature card content */
.feature-card h3 {
    color: var(--text-primary) !important;
}

.feature-card p {
    color: var(--text-secondary) !important;
}

/* Booking form content */
.booking-info h4 {
    color: var(--text-primary) !important;
}

.booking-info p {
    color: var(--text-secondary) !important;
}


/* Footer Styles for Taxi Page - Match Home Page Exactly */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
}

.footer-logo .logo-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: #f0ad4e;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 1rem;
}

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

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

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #f0ad4e !important;
    text-decoration: underline;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
}

.whatsapp-link {
    color: #25D366 !important;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: #128c7e !important;
    text-decoration: underline;
}

/* Social Media Brand Colors */
.footer-facebook i {
    color: #1877f3 !important;
}

.footer-instagram i {
    color: #e4405f !important;
}

.footer-twitter i {
    color: #1da1f2 !important;
}

.footer-youtube i {
    color: #ff0000 !important;
}

/* Footer Layout - Centered for professional look */
.footer-section,
.footer-section h4,
.footer-section p,
.footer-section ul,
.footer-section ul li,
.footer-section ul li a,
.footer-logo,
.footer-bottom {
    text-align: center !important;
}

.footer,
.footer-section,
.footer-section h4,
.footer-section p,
.footer-section ul li a,
.footer-bottom {
    color: #e0e0e0 !important;
}

.footer-section ul li a:hover {
    color: #f0ad4e !important;
}

/* WhatsApp and Scroll to Top buttons */
.whatsapp-simple {
    position: fixed;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 1002;
}

.whatsapp-btn {
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128c7e;
}

.scroll-top {
    position: fixed;
    bottom: 8rem;
    right: 2.5rem;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(46, 134, 171, 0.18), 0 0 0 4px rgba(46,134,171,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    border: 1.5px solid rgba(46,134,171,0.18);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.3s, background 0.3s, opacity 0.3s, visibility 0.3s, transform 0.18s;
    overflow: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}



/* Enhanced Form Grid Layout */
.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.booking-form .form-row {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.booking-form .form-group:last-child {
    grid-column: span 2;
}

.booking-form .btn-large {
    grid-column: span 2;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo .logo-icon img {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo .logo-icon img {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    /* Add bottom padding to prevent overlap with floating buttons */
    .footer {
        padding-bottom: 6rem !important;
    }
    
    .footer-bottom {
        padding-bottom: 1rem;
    }
    


    
    /* Form Grid Mobile */
    .booking-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form .form-group:last-child {
        grid-column: span 1;
    }
    
    .booking-form .btn-large {
        grid-column: span 1;
        max-width: 100%;
    }
}
    
    .whatsapp-simple {
        bottom: 1.5rem;
        right: 1rem;
    }
    
    .whatsapp-btn {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
    }
    
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 6rem;
        right: 1rem;
    }
}

/* Modal Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Enhanced Modal Form Styling */
.modal-body .form-group {
    margin-bottom: 1.2rem;
}

.modal-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.modal-body label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.modal-body input,
.modal-body textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-body input:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
    background: #ffffff;
    transform: translateY(-1px);
}

.modal-body input::placeholder,
.modal-body textarea::placeholder {
    color: #9ca3af;
}

.modal-body input[readonly] {
    background: rgba(46, 134, 171, 0.1);
    border-color: rgba(46, 134, 171, 0.3);
    color: var(--primary-color);
    font-weight: 600;
}

.modal-body .btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-body .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
}

.modal-body .btn-large:active {
    transform: translateY(0);
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .booking-modal {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: calc(100vh - 2rem);
        margin: 0;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close-modal {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-body .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Ensure modal single form group spans full width on mobile */
    .modal-body .form-row .form-group:only-child {
        grid-column: 1 / -1;
    }
    
    .modal-body .form-group {
        margin-bottom: 1rem;
    }
    
    .modal-body input,
    .modal-body textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .modal-body label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .modal-body .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
        margin-top: 1.5rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .booking-modal {
        padding: 0.25rem;
        padding-top: 1rem;
    }
    
    .modal-content {
        border-radius: 8px;
        max-height: calc(100vh - 1rem);
    }
    
    .modal-header {
        padding: 0.75rem;
        border-radius: 8px 8px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .modal-body input,
    .modal-body textarea {
        padding: 0.6rem;
    }
}

/* Improved Modal Accessibility */
.booking-modal[aria-hidden="true"] {
    display: none;
}

.booking-modal[aria-hidden="false"] {
    display: flex;
}

/* Touch-friendly interactions */
@media (pointer: coarse) {
    .modal-body input,
    .modal-body textarea {
        min-height: 44px; /* iOS touch target minimum */
    }
    
    .close-modal {
        min-width: 44px;
        min-height: 44px;
    }
    
    .modal-body .btn-large {
        min-height: 48px;
    }
} 

/* Additional Professional Responsive Rules for Why Choose Us Section */

/* Tablet View - 768px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .feature-card {
        padding: 2.2rem 1.8rem;
    }
    
    .feature-card .feature-icon {
        width: 75px;
        height: 75px;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
}

/* Large Desktop - Better spacing */
@media (min-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
        gap: 3rem;
    }
    
    .feature-card {
        padding: 3rem 2.5rem;
    }
    
    .feature-card .feature-icon {
        width: 85px;
        height: 85px;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .feature-card p {
        font-size: 1.1rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
    .why-choose-section {
        padding: 8rem 0;
    }
    
    .features-grid {
        max-width: 1600px;
    }
}

/* Professional Section Header Styling */
.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.why-choose-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.why-choose-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.why-choose-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Enhanced Mobile Experience */
@media (max-width: 480px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-section .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
    
    .why-choose-section .section-subtitle {
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
    }
    
    .features-grid {
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 1.8rem 1.2rem;
        border-radius: 16px;
    }
    
    .feature-card .feature-icon {
        width: 65px;
        height: 65px;
        border-radius: 16px;
        margin-bottom: 1.2rem;
    }
    
    .feature-card .feature-icon i {
        font-size: 1.6rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Accessibility and Performance Improvements */
.feature-card {
    /* Hardware acceleration for smooth animations */
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    perspective: 1000px;
}

.feature-card:hover {
    /* Smooth hardware-accelerated transforms */
    transform: translateY(-8px) translateZ(0);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card {
        border: 2px solid var(--primary-color);
    }
    
    .feature-card .feature-icon {
        border: 2px solid #ffffff;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-card .feature-icon,
    .feature-card::before {
        transition: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
} 



/* Navigation - ensure contrast with dark body background */
.navbar {
    color: white;
}

/* Any remaining dark text elements that might appear on dark background */
.container > h1,
.container > h2,
.container > h3,
.container > p {
    color: inherit;
} 

/* UPDATED MOBILE HERO POSITIONING - Cache Bust v2.1 */
/* Force browser to recognize changes with higher specificity */

@media screen and (max-width: 768px) {
    body .taxi-hero .hero-image {
        transform: translateY(10px) !important; /* Move image down to reduce gap with text */
        height: 400px !important;
        margin-bottom: 1rem !important; /* Reduce bottom margin */
        /* Force re-render */
        will-change: transform;
    }
}

@media screen and (max-width: 480px) {
    body .taxi-hero .hero-image {
        transform: translateY(20px) !important; /* Move image further down for small screens */
        height: 350px !important;
        border-radius: 20px !important;
        margin-bottom: 0.5rem !important; /* Minimal bottom margin */
        /* Force re-render */
        will-change: transform;
    }
}

/* Original desktop positioning preserved */
@media screen and (min-width: 769px) {
    .taxi-hero .hero-image {
        transform: translateY(-170px); /* Original desktop position */
    }
} 

/* Mobile Badge and Container Fixes */
@media screen and (max-width: 768px) {
    /* Fix "Most Popular" badge size for mobile user-friendliness */
    .featured-badge {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.75rem !important;
        top: -10px !important;
        border-radius: 30px !important;
        box-shadow: 0 5px 15px rgba(46, 134, 171, 0.25) !important;
    }
    
    /* Ensure hero container spacing is proper on mobile */
    .taxi-hero .hero-container {
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    /* Reduce hero content spacing on mobile */
    .taxi-hero .hero-content {
        padding-bottom: 1rem !important;
    }
}

/* Small mobile specific fixes */
@media screen and (max-width: 480px) {
    /* Make "Most Popular" badge even more mobile-friendly */
    .featured-badge {
        padding: 0.4rem 1rem !important;
        font-size: 0.7rem !important;
        top: -8px !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
    }
    
    /* Ensure proper spacing on very small screens */
    .taxi-hero .hero-container {
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    /* Adjust hero section padding for small screens */
    .taxi-hero {
        padding-top: 90px !important;
        min-height: 85vh !important;
    }
} 

/* Ensure all booking buttons have consistent background styling */

/* Book My Taxi button in booking section */
.booking-section .btn-large,
.booking-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.3) !important;
}

.booking-section .btn-large:hover,
.booking-section .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(46, 134, 171, 0.4) !important;
    background: linear-gradient(135deg, #3498db, #e91e63) !important;
}

/* Modal submit booking button */
.modal-body .btn-large,
.modal-body .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.3) !important;
}

.modal-body .btn-large:hover,
.modal-body .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(46, 134, 171, 0.4) !important;
    background: linear-gradient(135deg, #3498db, #e91e63) !important;
} 

/* Comprehensive White Text Color for All Button Elements */

/* Ensure all text elements inside primary buttons are white */
.btn-primary,
.btn-primary span,
.btn-primary i,
.booking-section .btn-large,
.booking-section .btn-large span,
.booking-section .btn-large i,
.booking-section .btn-primary,
.booking-section .btn-primary span,
.booking-section .btn-primary i,
.modal-body .btn-large,
.modal-body .btn-large span,
.modal-body .btn-large i,
.modal-body .btn-primary,
.modal-body .btn-primary span,
.modal-body .btn-primary i,
.btn-book,
.btn-book span,
.btn-book i {
    color: white !important;
}

/* Ensure white text on hover states */
.btn-primary:hover,
.btn-primary:hover span,
.btn-primary:hover i,
.booking-section .btn-large:hover,
.booking-section .btn-large:hover span,
.booking-section .btn-large:hover i,
.booking-section .btn-primary:hover,
.booking-section .btn-primary:hover span,
.booking-section .btn-primary:hover i,
.modal-body .btn-large:hover,
.modal-body .btn-large:hover span,
.modal-body .btn-large:hover i,
.modal-body .btn-primary:hover,
.modal-body .btn-primary:hover span,
.modal-body .btn-primary:hover i,
.btn-book:hover,
.btn-book:hover span,
.btn-book:hover i {
    color: white !important;
}

/* Ensure white text on focus and active states */
.btn-primary:focus,
.btn-primary:active,
.booking-section .btn-large:focus,
.booking-section .btn-large:active,
.modal-body .btn-large:focus,
.modal-body .btn-large:active {
    color: white !important;
}

/* Specific targeting for nested elements */
.btn-primary * {
    color: white !important;
}

.booking-section .btn-large *,
.booking-section .btn-primary * {
    color: white !important;
}

.modal-body .btn-large *,
.modal-body .btn-primary * {
    color: white !important;
} 

@media (max-width: 900px) {
  .booking-section,
  .booking-form-container {
    margin-top: 80px !important;
  }
}

@media (max-width: 900px) {
  .booking-modal {
    margin-top: 80px !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .modal-content {
    max-height: none !important;
  }
}