/* Ultra-Premium Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Premium Removal Services Section Styles */
.removal-services {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.removal-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
    z-index: 0;
}

.removal-services::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="removal-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.3" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23removal-grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.removal-services .container {
    position: relative;
    z-index: 1;
}

.removal-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.removal-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 2px;
}

.removal-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.removal-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.removal-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.removal-header h2 i {
    color: var(--accent-color);
    font-size: 2.5rem;
    animation: truckBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

@keyframes truckBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.removal-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.removal-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    position: relative;
    visibility: visible;
    opacity: 1;
}

.removal-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.removal-stats .stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    min-width: 200px;
    min-height: 120px;
}

.removal-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 25px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.removal-stats .stat-item:hover::before {
    opacity: 1;
}

.removal-stats .stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.removal-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
    animation: countUp 2s ease-out;
    color: #f59e0b;
    opacity: 1;
    visibility: visible;
}

@keyframes countUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.removal-stats .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    color: #374151;
}

.removal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
}

.removal-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(10px);
}

.removal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 30px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.removal-card:hover::before {
    opacity: 1;
}

.removal-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.removal-card-header {
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.removal-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.removal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
}

.removal-card:hover .removal-img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.2) contrast(1.2) saturate(1.1);
}

.removal-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 8px 25px rgba(245, 158, 11, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

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

.removal-rating {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    padding: 12px 16px;
    border-radius: 25px;
    display: flex;
    gap: 3px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.removal-rating i {
    color: #fbbf24;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: starTwinkle 2s ease-in-out infinite;
}

.removal-rating i:nth-child(2) { animation-delay: 0.2s; }
.removal-rating i:nth-child(3) { animation-delay: 0.4s; }
.removal-rating i:nth-child(4) { animation-delay: 0.6s; }
.removal-rating i:nth-child(5) { animation-delay: 0.8s; }

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

.removal-card-content {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.removal-card-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.removal-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 2px;
}

.removal-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.removal-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.removal-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.removal-specs .spec-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.removal-specs .spec-item i {
    color: var(--accent-color);
    width: 25px;
    text-align: center;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(245, 158, 11, 0.3);
}

.removal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.removal-features .feature-tag {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.removal-features .feature-tag:hover {
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.removal-services-list {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 80px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.removal-services-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 30px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.1;
    z-index: 0;
}

.service-category {
    position: relative;
    z-index: 1;
}

.service-category h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 2px;
}

.service-category h3 i {
    color: var(--accent-color);
    font-size: 1.8rem;
    animation: listPulse 2s ease-in-out infinite;
}

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

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

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.6));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: white;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(245, 158, 11, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.service-item i {
    font-size: 1.4rem;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(245, 158, 11, 0.3);
}

.service-item:hover i {
    color: white;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-item span {
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.removal-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #334155, #1e293b);
    color: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.removal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.removal-cta > * {
    position: relative;
    z-index: 1;
}

.removal-cta h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.removal-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.removal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: white;
    padding: 22px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(245, 158, 11, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.removal-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.removal-cta-btn:hover::before {
    left: 100%;
}

.removal-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(245, 158, 11, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #d97706, #b45309);
}

.removal-cta-btn i {
    font-size: 1.4rem;
    animation: truckMove 2s ease-in-out infinite;
}

@keyframes truckMove {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(3px); }
}

/* Mobile Responsive Styles for Removal Services */
@media (max-width: 768px) {
    .removal-services {
        padding: 80px 0;
        margin: 40px 0;
    }
    
    .removal-header {
        margin-bottom: 60px;
    }
    
    .removal-header h2 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .removal-header h2::before,
    .removal-header h2::after {
        display: none;
    }
    
    .removal-header .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .removal-stats {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        margin-top: 50px;
    }
    
    .removal-stats .stat-item {
        width: 250px;
        padding: 35px 25px;
    }
    
    .removal-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .removal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .removal-card-content {
        padding: 30px 25px;
    }
    
    .removal-card-content h3 {
        font-size: 1.6rem;
    }
    
    .removal-services-list {
        padding: 40px 25px;
        margin-bottom: 60px;
    }
    
    .service-category h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 20px;
        gap: 15px;
    }
    
    .service-item i {
        font-size: 1.2rem;
        width: 25px;
    }
    
    .service-item span {
        font-size: 0.95rem;
    }
    
    .removal-cta {
        padding: 50px 30px;
    }
    
    .removal-cta h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .removal-cta p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .removal-cta-btn {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .removal-services {
        padding: 60px 0;
    }
    
    .removal-header h2 {
        font-size: 1.8rem;
    }
    
    .removal-stats .stat-item {
        width: 200px;
        padding: 30px 20px;
    }
    
    .removal-stats .stat-number {
        font-size: 2rem;
    }
    
    .removal-card-content {
        padding: 25px 20px;
    }
    
    .removal-card-content h3 {
        font-size: 1.4rem;
    }
    
    .removal-services-list {
        padding: 30px 20px;
    }
    
    .service-category h3 {
        font-size: 1.6rem;
    }
    
    .removal-cta {
        padding: 40px 20px;
    }
    
    .removal-cta h3 {
        font-size: 1.8rem;
    }
    
    .removal-cta-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Hero Sales Banner Styles */
.hero-sales-banner {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    animation: heroPulse 3s infinite;
}

.hero-sales-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.hero-sales-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-sales-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
}

.hero-sales-left i {
    font-size: 20px;
    animation: bounce 2s infinite;
    color: #fff;
}

.hero-sales-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-sales-discount {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-sales-cta {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-sales-cta:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-sales-cta i {
    transition: transform 0.3s ease;
}

.hero-sales-cta:hover i {
    transform: translateX(4px);
}

/* Form Sales Banner Styles */
.sales-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

.sales-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

.sales-banner i {
    font-size: 18px;
    animation: bounce 1s infinite;
}

@keyframes heroPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* Prevent horizontal scrolling globally */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Ensure all containers respect viewport width */
.container, .nav-container, .hero-content, .booking-form {
    max-width: 100%;
    overflow-x: hidden;
}

/* Desktop specific - allow proper content display */
@media (min-width: 769px) {
    html, body {
        overflow-x: visible;
    }
    
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
        overflow-x: visible;
    }
    
    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        overflow-x: visible;
    }
    
    .booking-form {
        max-width: 100%;
        overflow-x: visible;
    }
    
    /* Ensure sections don't get cut off */
    section {
        overflow-x: visible;
        max-width: 100%;
    }
    
    /* Fix any potential cutoff issues */
    .section-title, .section-subtitle {
        overflow-x: visible;
        word-wrap: break-word;
    }
}

:root {
    --primary-color: #1e293b;
    --secondary-color: #475569;
    --accent-color: #f59e0b;
    --accent-secondary: #d97706;
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-dark: #f8fafc;
    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    --border-light: rgba(148, 163, 184, 0.2);
	--border-dark: rgba(0, 0, 0, 0.08);
	/* Mobile Navbar sizing */
	--mobile-header-height: 52px;
	--mobile-header-height-sm: 48px;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1008px;
    margin: 0 auto;
    padding: 0 14px;
}

/* Ultra-Premium Navigation */
.navbar {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 80%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0.25;
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1152px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 43px;
    height: 43px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 23px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 13px;
}

.logo-icon i {
    font-size: 1.44rem;
    color: white;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
}

.logo-text {
    font-size: 1.73rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1.08px;
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.61rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.9px;
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-right .nav-menu {
    display: flex;
    list-style: none;
    gap: 0.36rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.74rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.72rem 1.1rem;
    border-radius: 14px;
    opacity: 0.8;
    letter-spacing: 0.22px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before {
    opacity: 1;
}

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

.nav-link:hover {
    color: var(--text-dark);
    opacity: 1;
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.12);
}

.nav-link:active {
    transform: translateY(-1px);
}

/* Active state from scroll tracking */
.nav-link.active {
    color: var(--text-dark);
    opacity: 1;
    font-weight: 700;
}
.nav-link.active::after { width: 70%; }

/* Keyboard focus */
.nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
    border-radius: 14px;
}

/* Hero dark tint overlay - ensure photo remains visible but content is readable */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.25) 100%) !important;
    pointer-events: none;
}

/* Navbar scroll effect - enhanced premium look */
.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.10), 0 8px 22px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 0.72rem 0;
}

.navbar.scrolled .nav-container {
    padding: 0.72rem 2.16rem;
}

.navbar.scrolled .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
}

.navbar.scrolled .logo-icon i {
    font-size: 1.22rem;
}

.navbar.scrolled .logo-text {
    font-size: 1.51rem;
}

.navbar.scrolled .logo-tagline {
    font-size: 0.58rem;
}

/* Ultra-Premium Hero Section - ENHANCED */
.hero {
    /* Photo-forward hero - clear image, minimal overlays */
    background: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--text-white);
    padding: 101px 14px 24px; /* Slightly reduced bottom padding for a tighter handoff to the next section */
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before { content: none; }

.hero::after { content: none; }

/* Hero Content Container - Enhanced Full Width Layout */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem 0;
}

/* Left Side - Enhanced Form and Title */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.04) 100%);
    border-radius: 30px;
    z-index: -1;
    filter: blur(20px);
}

.hero-title {
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    margin-bottom: 1rem;
}

.hero-title h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 23px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 3px 14px rgba(245, 158, 11, 0.3));
}

.hero-title p {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ultra-Compact Booking Form - Completely Redesigned */
.booking-form {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04);
    color: #1a202c;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    z-index: 1;
}

.booking-form:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Form Header - Modern & Clean */
.form-header {
    text-align: center;
    padding: 1.5rem 2rem 1rem;
    background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
    border-bottom: 3px solid #f59e0b;
    position: relative;
    z-index: 2;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.form-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

.form-icon i {
    font-size: 1rem;
    color: white;
}

.form-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-header p {
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Container */
.ultra-compact-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Form Rows - Modern Grid Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

/* Form Groups - Clean & Modern */
.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.form-group label i {
    margin-right: 0.4rem;
    color: #f59e0b;
    font-size: 0.7rem;
}

/* Required field styling */
.form-group label:has(input[required])::after {
    content: ' *';
    color: #e53e3e;
    font-weight: 700;
}

/* Small text styling */
.small-text {
    font-size: 0.6rem;
    color: #a0aec0;
    font-weight: 400;
    margin-left: 0.25rem;
}

/* Input Wrappers - Modern Styling */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input,
.input-wrapper select,
.select-wrapper select {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.875rem;
    background: #ffffff;
    color: #2d3748;
    transition: all 0.2s ease;
    font-weight: 500;
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.select-wrapper select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    transform: translateY(-1px);
}

.input-wrapper input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Select Wrappers */
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.select-wrapper select {
    padding-right: 2.25rem;
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 0.75rem;
    color: #f59e0b;
    font-size: 0.75rem;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.select-wrapper select:focus + .select-arrow {
    transform: rotate(180deg);
}

/* Radio Groups - Modern Design */
.radio-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: #f7fafc;
    border: 2px solid transparent;
    position: relative;
}

.radio-option:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    background: white;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #f59e0b;
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.radio-option input[type="radio"]:checked ~ .radio-text {
    color: #f59e0b;
    font-weight: 600;
}

.radio-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

/* Button Section */
.button-column {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0.75rem;
}

.book-button-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.book-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.5s ease;
}

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

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.book-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    grid-column: 1 / -1;
    padding-top: 0.75rem;
}

.map-section label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-section label i {
    margin-right: 0.4rem;
    color: #f59e0b;
    font-size: 0.7rem;
}

.route-map {
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.route-map:hover {
    border-color: #f59e0b;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Comprehensive Mobile Optimization */
@media (max-width: 768px) {
    /* Hero Sales Banner Mobile */
    .hero-sales-content {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
        text-align: center;
    }
    
    .hero-sales-left {
        font-size: 16px;
    }
    
    .hero-sales-right {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-sales-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* Navigation Mobile Optimization */
    .nav-container {
        padding: 0.25rem 0.75rem;
        position: relative;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .logo {
        gap: 0.5rem;
        flex-shrink: 0;
        position: relative;
        z-index: 1000;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }
    
    .logo-icon i {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.5rem;
    }
    
    /* Ensure navbar stays compact on mobile */
    .navbar {
        overflow: hidden !important;
    }
    
    .nav-container {
        overflow: hidden !important;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        cursor: pointer;
    }
    
    /* Mobile Form Header Optimization */
    .form-header {
        padding: 1rem 1.5rem 0.75rem;
        border-radius: 8px 8px 0 0;
        margin: 0 -0.5rem;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
    }
    
    .booking-form {
        border-radius: 8px;
        margin: 0 0.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .form-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin: 0 auto 0.5rem;
    }
    
    .form-header h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .form-header p {
        font-size: 0.7rem;
    }
    
    /* Mobile Navigation Menu */
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .nav-right.active {
        right: 0;
    }
    
    .nav-right .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-right .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-right .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 15px 0;
        width: 100%;
        display: block;
        text-align: left;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(245, 158, 11, 0.1);
        color: var(--accent-color);
        transform: none;
    }
    
    /* Overlay for mobile menu */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        padding: 0.1rem 0 2rem;
        min-height: auto !important;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-left {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-title p {
        font-size: 1rem;
    }
    
    /* Booking Form Mobile Optimization */
    .booking-form {
        margin: 0;
        max-width: 100%;
        border-radius: 16px;
    }
    
    .form-header {
        padding: 0.875rem 1.5rem 0.5rem;
    }
    
    .ultra-compact-form {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .book-button-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .book-btn {
        width: 100%;
        min-width: auto;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1rem;
    }
    
    .form-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }
    
    .route-map {
        height: 180px;
        border-radius: 12px;
    }
    
    /* Fleet Section Mobile Optimization - FIXED */
    .fleet {
        padding: 2rem 0 0.2rem; /* Increased top padding to move section down */
        margin-top: 10px; /* Minimal gap */
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .fleet-header {
        margin-bottom: 0.1rem; /* Minimal spacing */
        padding-top: 1rem; /* Increased top padding to move text down */
    }
    
    .fleet-header h2 {
        font-size: 2rem; /* Slightly reduced for better fit */
        margin-bottom: 0.3rem; /* Further reduced */
        line-height: 1.1;
    }
    
    .fleet-header h2 i {
        font-size: 1.8rem; /* Adjusted icon size */
    }
    
    .section-subtitle {
        font-size: 0.95rem; /* Slightly reduced */
        margin-bottom: 0.1rem; /* Minimal margin */
        line-height: 1.4;
        padding: 0 0.3rem;
    }
    
    .fleet-stats {
        flex-direction: row; /* Keep horizontal on mobile */
        gap: 0.2rem; /* Minimal gap */
        margin-bottom: 0.2rem; /* Minimal margin */
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        padding: 0.5rem; /* Further reduced padding */
        min-width: 70px;
        flex: 1;
        max-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem; /* Further reduced */
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem; /* Further reduced */
        line-height: 1.1;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem; /* Minimal gap */
        margin-top: 0; /* Remove extra margin */
    }
    
    /* Remove top padding from first vehicle */
    .fleet-grid .fleet-card:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
        transform: translateY(0) !important;
    }
    
    /* Ensure first card starts immediately after stats */
    .fleet-grid:first-child {
        margin-top: 0 !important;
    }
    
    .fleet-card {
        margin: 0;
        border-radius: 12px; /* Further reduced */
    }
    
    .fleet-image {
        height: 160px; /* Further reduced */
    }
    
    .fleet-card-content {
        padding: 0.8rem; /* Further reduced */
    }
    
    .fleet-card-content h3 {
        font-size: 1.2rem; /* Slightly reduced */
        margin-bottom: 0.5rem; /* Further reduced */
    }
    
    .fleet-description {
        font-size: 0.85rem; /* Slightly reduced */
        margin-bottom: 0.6rem; /* Further reduced */
        line-height: 1.3;
    }
    
    .fleet-specs {
        gap: 0.3rem; /* Further reduced */
        margin-bottom: 0.6rem; /* Further reduced */
    }
    
    .spec-item {
        font-size: 0.75rem; /* Slightly reduced */
        padding: 0.4rem; /* Further reduced */
        margin-bottom: 0.3rem; /* Further reduced */
    }
    
    .fleet-features {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 0.7rem; /* Increased from 0.65rem */
        padding: 0.4rem 0.7rem;
    }
    
    /* Additional mobile fleet fixes */
    .fleet-card-header {
        position: relative;
    }
    
    .fleet-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .fleet-rating {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        bottom: 0.5rem;
        left: 0.5rem;
    }
    
    .fleet-rating i {
        font-size: 0.7rem;
    }
    
    /* Ensure fleet section is visible and not cut off */
    .fleet {
        min-height: auto !important;
        overflow: visible !important;
        position: relative !important;
    }
    
    .fleet-header {
        position: relative !important;
        z-index: 10 !important;
    }
    
    .fleet-grid {
        position: relative !important;
        z-index: 5 !important;
    }
    
    /* How It Works Section Mobile */
    .how-it-works {
        padding: 3rem 0;
    }
    
    .how-it-works h2 {
        font-size: 1.8rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    /* Why Choose Section Mobile */
    .why-choose {
        padding: 3rem 0;
    }
    
    .why-choose h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    /* Footer Mobile Optimization */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Ultra Mobile Navigation */
    .nav-container {
        padding: 0.2rem 0.5rem;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        position: relative;
    }
    
    /* Reduce navbar height on mobile */
    .navbar {
        min-height: auto;
        overflow: hidden !important;
    }
    
    .nav-container {
        overflow: hidden !important;
    }
    
    /* Ultra Mobile Form Header */
    .form-header {
        padding: 0.75rem 1rem 0.5rem;
        border-radius: 6px 6px 0 0;
        margin: 0 -0.25rem;
        box-shadow: 0 1px 6px rgba(245, 158, 11, 0.1);
    }
    
    .booking-form {
        border-radius: 6px;
        margin: 0 0.25rem;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }
    
    .form-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        margin: 0 auto 0.4rem;
    }
    
    .form-header h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .form-header p {
        font-size: 0.65rem;
    }
    
    .logo {
        gap: 0.4rem;
        position: relative;
        z-index: 1000;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }
    
    .logo-icon i {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 0.45rem;
    }
    
    /* Mobile Navigation Menu - Full width on small screens */
    .nav-right {
        width: 100%;
        right: -100%;
    }
    
    .nav-right .nav-menu {
        padding: 20px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 20px 0;
    }
    
    /* Mobile Menu Toggle - Smaller size */
    .mobile-menu-toggle {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    /* Ultra Mobile Hero */
    .hero {
        padding: 0.05rem 0 2rem;
        min-height: auto !important;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }
    
    .hero-title h1 {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .hero-title p {
        font-size: 0.9rem;
    }
    
    /* Ultra Mobile Booking Form */
    .booking-form {
        margin: 0;
        border-radius: 14px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .form-header {
        padding: 1rem 1.25rem 0.5rem;
    }
    
    .form-header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .form-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .form-icon i {
        font-size: 1rem;
    }
    
    .ultra-compact-form {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group label .small-text {
        font-size: 0.75rem;
    }
    
    .input-wrapper input,
    .select-wrapper select {
        padding: 0.875rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .book-button-group {
        gap: 0.75rem;
    }
    
    .book-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .route-map {
        height: 160px;
        border-radius: 10px;
    }
    
    /* Ultra Mobile Fleet - FIXED */
    .fleet {
        padding: 1.5rem 0 0.1rem; /* Increased top padding to move section down */
        margin-top: 8px; /* Minimal gap */
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .fleet-header {
        margin-bottom: 0.05rem; /* Minimal spacing */
        padding-top: 0.8rem; /* Increased top padding to move text down */
    }
    
    .fleet-header h2 {
        font-size: 1.6rem; /* Slightly reduced */
        margin-bottom: 0.2rem; /* Further reduced */
        line-height: 1.1;
    }
    
    .fleet-header h2 i {
        font-size: 1.4rem; /* Adjusted icon size */
    }
    
    .section-subtitle {
        font-size: 0.85rem; /* Slightly reduced */
        margin-bottom: 0.05rem; /* Minimal margin */
        line-height: 1.3;
        padding: 0 0.2rem;
    }
    
    .fleet-stats {
        gap: 0.1rem; /* Minimal gap */
        margin-bottom: 0.1rem; /* Minimal margin */
        flex-wrap: wrap;
    }
    
    .stat-item {
        padding: 0.4rem; /* Further reduced padding */
        min-width: 60px;
        max-width: 80px;
    }
    
    .stat-number {
        font-size: 1.2rem; /* Further reduced */
        margin-bottom: 0.1rem;
    }
    
    .stat-label {
        font-size: 0.6rem; /* Further reduced */
        line-height: 1.1;
    }
    
    .fleet-grid {
        gap: 0.2rem; /* Minimal gap */
        margin-top: 0;
    }
    
    /* Remove top padding from first vehicle - Ultra Mobile */
    .fleet-grid .fleet-card:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
        transform: translateY(0) !important;
    }
    
    /* Ensure first card starts immediately after stats - Ultra Mobile */
    .fleet-grid:first-child {
        margin-top: 0 !important;
    }
    
    .fleet-card {
        border-radius: 10px; /* Further reduced */
    }
    
    .fleet-image {
        height: 130px; /* Further reduced */
    }
    
    .fleet-card-content {
        padding: 0.6rem; /* Further reduced padding */
    }
    
    .fleet-card-content h3 {
        font-size: 1.1rem; /* Increased from 1rem */
        margin-bottom: 0.6rem;
    }
    
    .fleet-description {
        font-size: 0.8rem; /* Increased from 0.75rem */
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .fleet-specs {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .spec-item {
        font-size: 0.7rem; /* Increased from 0.65rem */
        padding: 0.5rem;
        margin-bottom: 0.4rem;
    }
    
    .fleet-features {
        gap: 0.3rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Force content down to prevent cut-off */
    .fleet {
        padding-top: 2.5rem !important;
    }
    
    .fleet-header {
        padding-top: 1.5rem !important;
        margin-top: 1.5rem !important;
    }
    
    /* Additional ultra-mobile fleet fixes */
    .fleet-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        top: 0.4rem;
        right: 0.4rem;
    }
    
    .fleet-rating {
        font-size: 0.6rem;
        padding: 0.25rem 0.4rem;
        bottom: 0.4rem;
        left: 0.4rem;
    }
    
    .fleet-rating i {
        font-size: 0.6rem;
    }
    
    /* Ensure fleet section is visible and not cut off */
    .fleet {
        min-height: auto !important;
        overflow: visible !important;
        position: relative !important;
    }
    
    .fleet-header {
        position: relative !important;
        z-index: 10 !important;
    }
    
    .fleet-grid {
        position: relative !important;
        z-index: 5 !important;
    }
    
    .feature-tag {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* Ultra Mobile Sections */
    .how-it-works,
    .why-choose {
        padding: 2rem 0;
    }
    
    .how-it-works h2,
    .why-choose h2 {
        font-size: 1.5rem;
    }
    
    .steps-grid,
    .features-grid {
        gap: 1.5rem;
    }
    
    .step,
    .feature {
        padding: 1rem;
    }
    
    .step h3,
    .feature h3 {
        font-size: 1rem;
    }
    
    .step p,
    .feature p {
        font-size: 0.75rem;
    }
    
    /* Ultra Mobile Footer */
    .footer {
        padding: 1.5rem 0 0.75rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.75rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
    
    /* Force content down to prevent cut-off - Ultra Mobile */
    .fleet {
        padding-top: 2rem !important;
    }
    
    .fleet-header {
        padding-top: 1.2rem !important;
        margin-top: 1.2rem !important;
    }
}

/* Vehicle Information Display */
.vehicle-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.vehicle-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.vehicle-details h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vehicle-details h4 i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span:first-child {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-row span:first-child i {
    color: var(--accent-color);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.spec-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.spec-row.description {
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    border-bottom: none;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: var(--accent-color);
}

.spec-row.description span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive vehicle info */
@media (max-width: 768px) {
    .vehicle-info {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .vehicle-details h4 {
        font-size: 0.9rem;
    }
    
    .spec-row {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .spec-row.description {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .vehicle-info {
        padding: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .vehicle-details h4 {
        font-size: 0.8rem;
    }
    
    .spec-row {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .spec-row.description {
        font-size: 0.65rem;
    }
}

/* Google Maps Route Display */
.route-map {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: #f8fafc;
    position: relative;
}

.route-map::before {
    content: 'Loading map...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 0.8rem;
    z-index: 1;
}

.route-map.loaded::before {
    display: none;
}

/* Price Display Section */
.price-display {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.price-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.price-breakdown h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-breakdown h4 i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:first-child {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-row span:first-child i {
    color: var(--accent-color);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.price-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.price-row.total {
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    border-bottom: none;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-row.total span {
    color: var(--accent-color);
    font-weight: 700;
}

/* Responsive price display */
@media (max-width: 768px) {
    .price-display {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .price-breakdown h4 {
        font-size: 0.9rem;
    }
    
    .price-row {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .price-row.total {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .price-display {
        padding: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .price-breakdown h4 {
        font-size: 0.8rem;
    }
    
    .price-row {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .price-row.total {
        font-size: 0.75rem;
    }
}

/* Ultra-Premium Fleet Section */
.fleet {
    padding: 40px 0 60px; /* Reduced top padding from 60px to 40px */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: 20px; /* Minimal gap from hero section */
}

.fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px; /* reduce fade height to avoid large empty-feel area */
    background: linear-gradient(to bottom, var(--bg-white), transparent);
}

.fleet::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

/* Fleet Header */
.fleet-header {
    text-align: center;
    position: relative;
    padding: 0; /* remove extra white space */
    background: transparent; /* remove white box */
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    max-width: none;
    margin: 0 auto 0.75rem; /* subtle space below header */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.fleet h2 {
    font-size: 3.5rem; /* Increased from 3.2rem to 3.5rem */
    margin-bottom: 1rem; /* Reduced from 2rem to 1rem for even tighter spacing */
    color: #000000; /* Changed to pure black as requested */
    font-weight: 900;
    letter-spacing: -1.5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem; /* Increased from 1rem to 1.5rem */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Added subtle text shadow */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

.fleet h2 i {
    color: var(--accent-color);
    font-size: 3.2rem; /* Increased from 2.8rem to 3.2rem */
    filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.4)); /* Enhanced shadow */
    animation: crownGlow 2s ease-in-out infinite alternate; /* Added subtle animation */
}

.fleet h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem; /* Increased from 1.1rem to 1.2rem */
    color: var(--text-dark); /* Changed from var(--text-light) to var(--text-dark) for better visibility */
    margin-bottom: 0.5rem; /* Reduced from 1.5rem to 0.5rem for even tighter spacing */
    max-width: 700px; /* Increased from 600px to 700px */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 600; /* Increased from 500 to 600 */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Added subtle text shadow */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fleet Stats */
.fleet-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 0.5rem; /* Reduced from 1rem to 0.5rem for even tighter spacing */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin: 0.5rem 0 0; /* tidy space under the header */
}

/* Fleet Cards */
.fleet-card {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(245, 158, 11, 0.1);
    height: 100%;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.fleet-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Fleet Card Header */
.fleet-card-header {
    position: relative;
    padding: 0;
}

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

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

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

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    backdrop-filter: blur(10px);
}

.fleet-rating {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.fleet-rating i {
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

/* Fleet Card Content */
.fleet-card-content {
    padding: 2rem;
}

.fleet-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

.fleet-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

/* Fleet Specs */
.fleet-specs {
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span:first-child {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-row span:first-child i {
    color: var(--accent-color);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.spec-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.spec-row.description {
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    border-bottom: none;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: var(--accent-color);
}

.spec-row.description span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive vehicle info */
@media (max-width: 768px) {
    .vehicle-info {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .vehicle-details h4 {
        font-size: 0.9rem;
    }
    
    .spec-row {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .spec-row.description {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .vehicle-info {
        padding: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .vehicle-details h4 {
        font-size: 0.8rem;
    }
    
    .spec-row {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .spec-row.description {
        font-size: 0.65rem;
    }
}

/* Google Maps Route Display */
.route-map {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: #f8fafc;
    position: relative;
}

.route-map::before {
    content: 'Loading map...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 0.8rem;
    z-index: 1;
}

.route-map.loaded::before {
    display: none;
}

/* Price Display Section */
.price-display {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.price-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.price-breakdown h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-breakdown h4 i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:first-child {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-row span:first-child i {
    color: var(--accent-color);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.price-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.price-row.total {
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    border-bottom: none;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-row.total span {
    color: var(--accent-color);
    font-weight: 700;
}

/* Responsive price display */
@media (max-width: 768px) {
    .price-display {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .price-breakdown h4 {
        font-size: 0.9rem;
    }
    
    .price-row {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .price-row.total {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .price-display {
        padding: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .price-breakdown h4 {
        font-size: 0.8rem;
    }
    
    .price-row {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .price-row.total {
        font-size: 0.75rem;
    }
}

/* Ultra-Premium Fleet Section */
.fleet {
    padding: 40px 0 60px; /* Reduced top padding from 60px to 40px */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: 20px; /* Minimal gap from hero section */
}

.fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px; /* reduce fade height to avoid large empty-feel area */
    background: linear-gradient(to bottom, var(--bg-white), transparent);
}

.fleet::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

/* Fleet Header */
.fleet-header {
    text-align: center;
    position: relative;
    padding: 0; /* remove extra white space */
    background: transparent; /* remove white box */
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    max-width: none;
    margin: 0 auto 0.75rem; /* subtle space below header */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.fleet h2 {
    font-size: 3.5rem; /* Increased from 3.2rem to 3.5rem */
    margin-bottom: 1rem; /* Reduced from 2rem to 1rem for even tighter spacing */
    color: #000000; /* Changed to pure black as requested */
    font-weight: 900;
    letter-spacing: -1.5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem; /* Increased from 1rem to 1.5rem */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Added subtle text shadow */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

.fleet h2 i {
    color: var(--accent-color);
    font-size: 3.2rem; /* Increased from 2.8rem to 3.2rem */
    filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.4)); /* Enhanced shadow */
    animation: crownGlow 2s ease-in-out infinite alternate; /* Added subtle animation */
}

.fleet h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem; /* Increased from 1.1rem to 1.2rem */
    color: var(--text-dark); /* Changed from var(--text-light) to var(--text-dark) for better visibility */
    margin-bottom: 0.5rem; /* Reduced from 1.5rem to 0.5rem for even tighter spacing */
    max-width: 700px; /* Increased from 600px to 700px */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 600; /* Increased from 500 to 600 */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Added subtle text shadow */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fleet Stats */
.fleet-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 0.5rem; /* Reduced from 1rem to 0.5rem for even tighter spacing */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin: 0.5rem 0 0; /* tidy space under the header */
}

/* Fleet Cards */
.fleet-card {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(245, 158, 11, 0.1);
    height: 100%;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.fleet-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Fleet Card Header */
.fleet-card-header {
    position: relative;
    padding: 0;
}

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

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

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

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    backdrop-filter: blur(10px);
}

.fleet-rating {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.fleet-rating i {
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

/* Fleet Card Content */
.fleet-card-content {
    padding: 2rem;
}

.fleet-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

.fleet-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

/* Fleet Specs */
.fleet-specs {
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span:first-child {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-row span:first-child i {
    color: var(--accent-color);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.spec-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.spec-row.description {
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    border-bottom: none;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: var(--accent-color);
}

.spec-row.description span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive vehicle info */
@media (max-width: 768px) {
    .vehicle-info {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .vehicle-details h4 {
        font-size: 0.9rem;
    }
    
    .spec-row {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .spec-row.description {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .vehicle-info {
        padding: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .vehicle-details h4 {
        font-size: 0.8rem;
    }
    
    .spec-row {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .spec-row.description {
        font-size: 0.65rem;
    }
}

/* Google Maps Route Display */
.route-map {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: #f8fafc;
    position: relative;
}

.route-map::before {
    content: 'Loading map...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 0.8rem;
    z-index: 1;
}

.route-map.loaded::before {
    display: none;
}

/* Price Display Section */
.price-display {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.price-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.price-breakdown h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-breakdown h4 i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:first-child {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-row span:first-child i {
    color: var(--accent-color);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.price-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.price-row.total {
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    border-bottom: none;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-row.total span {
    color: var(--accent-color);
    font-weight: 700;
}

/* Responsive price display */
@media (max-width: 768px) {
    .price-display {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .price-breakdown h4 {
        font-size: 0.9rem;
    }
    
    .price-row {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .price-row.total {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .price-display {
        padding: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .price-breakdown h4 {
        font-size: 0.8rem;
    }
    
    .price-row {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .price-row.total {
        font-size: 0.75rem;
    }
}

/* Ultra-Premium Fleet Section */
.fleet {
    padding: 40px 0 60px; /* Reduced top padding from 60px to 40px */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: 20px; /* Minimal gap from hero section */
}

.fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px; /* reduce fade height to avoid large empty-feel area */
    background: linear-gradient(to bottom, var(--bg-white), transparent);
}

.fleet::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

/* Fleet Header */
.fleet-header {
    text-align: center;
    position: relative;
    padding: 0; /* remove extra white space */
    background: transparent; /* remove white box */
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    max-width: none;
    margin: 0 auto 0.75rem; /* subtle space below header */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.fleet h2 {
    font-size: 3.5rem; /* Increased from 3.2rem to 3.5rem */
    margin-bottom: 1rem; /* Reduced from 2rem to 1rem for even tighter spacing */
    color: #000000; /* Changed to pure black as requested */
    font-weight: 900;
    letter-spacing: -1.5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem; /* Increased from 1rem to 1.5rem */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Added subtle text shadow */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

.fleet h2 i {
    color: var(--accent-color);
    font-size: 3.2rem; /* Increased from 2.8rem to 3.2rem */
    filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.4)); /* Enhanced shadow */
    animation: crownGlow 2s ease-in-out infinite alternate; /* Added subtle animation */
}

.fleet h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem; /* Increased from 1.1rem to 1.2rem */
    color: var(--text-dark); /* Changed from var(--text-light) to var(--text-dark) for better visibility */
    margin-bottom: 0.5rem; /* Reduced from 1.5rem to 0.5rem for even tighter spacing */
    max-width: 700px; /* Increased from 600px to 700px */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 600; /* Increased from 500 to 600 */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Added subtle text shadow */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fleet Stats */
.fleet-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 0.5rem; /* Reduced from 1rem to 0.5rem for even tighter spacing */
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin: 0.5rem 0 0; /* tidy space under the header */
}

/* Fleet Cards */
.fleet-card {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(245, 158, 11, 0.1);
    height: 100%;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.fleet-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Fleet Card Header */
.fleet-card-header {
    position: relative;
    padding: 0;
}

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

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

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

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    backdrop-filter: blur(10px);
}

.fleet-rating {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.fleet-rating i {
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

/* Fleet Card Content */
.fleet-card-content {
    padding: 2rem;
}

.fleet-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

.fleet-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

/* Fleet Specs */
.fleet-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(5px);
}

.spec-item i {
    margin-right: 0.8rem;
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.spec-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Fleet Features */
.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: var(--accent-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Fleet CTA */
.fleet-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fleet-cta h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.fleet-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.fleet-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.fleet-cta-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .fleet-stats {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .fleet {
        padding: 50px 0;
    }
    
    .fleet h2 {
        font-size: 2.8rem;
    }
    
    .fleet-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        width: 200px;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.8rem;
    }
}

@media (max-width: 768px) {
    .fleet {
        padding: 40px 0;
    }
    
    .fleet h2 {
        font-size: 2.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .fleet h2 i {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .fleet-stats {
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1.2rem;
        width: 180px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .fleet-card-content {
        padding: 1.5rem;
    }
    
    .fleet-cta {
        margin-top: 1.5rem;
        padding: 2rem;
    }
    
    .fleet-cta h3 {
        font-size: 1.8rem;
    }
    
    .fleet-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fleet {
        padding: 60px 0;
    }
    
    .fleet h2 {
        font-size: 2rem;
    }
    
    .fleet h2 i {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-item {
        width: 160px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .fleet-card-content {
        padding: 1.2rem;
    }
    
    .fleet-card h3 {
        font-size: 1.3rem;
    }
    
    .fleet-description {
        font-size: 0.85rem;
    }
    
    .spec-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .spec-item span {
        font-size: 0.8rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .fleet-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .fleet-cta h3 {
        font-size: 1.5rem;
    }
    
    .fleet-cta p {
        font-size: 0.9rem;
    }
    
    .fleet-cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Ultra-Premium How It Works Section */
.how-it-works {
    padding: 101px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    background: linear-gradient(to bottom, var(--bg-white), transparent);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.88rem;
    margin-bottom: 3.6rem;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1.44px;
    position: relative;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
    gap: 2.4rem;
    margin-top: 2.6rem;
}

.step {
    text-align: center;
    padding: 2.5rem 1.8rem 2.2rem;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(148, 163, 184, 0.22);
    overflow: hidden;
}

.step:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 28px 72px rgba(245, 158, 11, 0.22);
    border-color: rgba(245, 158, 11, 0.35);
}

/* Accent bar at the top of each card */
.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--gradient-accent);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.step-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(100% 100% at 50% 0%, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.05) 100%), #fff;
    color: #d97706;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.2), inset 0 0 0 2px rgba(245, 158, 11, 0.25);
    margin: 0 auto 1.25rem;
    font-size: 2rem;
}
.step:hover .step-icon {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.28), inset 0 0 0 2px rgba(245, 158, 11, 0.35);
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 1.1rem;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.36px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 500;
}

/* Decorative background highlights */
.how-it-works::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(closest-side, rgba(245, 158, 11, 0.12), transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .step {
        padding: 2rem 1.25rem 1.75rem;
        border-radius: 20px;
    }
    .step-icon { width: 60px; height: 60px; font-size: 1.7rem; }
}

/* Ultra-Premium Why Choose Section */
.why-choose {
    padding: 101px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -140px;
    width: 520px;
    height: 520px;
    background: radial-gradient(closest-side, rgba(245, 158, 11, 0.12), transparent 70%);
    pointer-events: none;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    background: linear-gradient(to bottom, var(--bg-light), transparent);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.88rem;
    margin-bottom: 3.6rem;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1.44px;
    position: relative;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.4rem;
    margin-top: 2.6rem;
}

.feature {
    text-align: center;
    padding: 2.4rem 1.8rem 2rem;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.22);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--gradient-accent);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.feature:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 28px 72px rgba(245, 158, 11, 0.22);
    border-color: rgba(245, 158, 11, 0.35);
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(100% 100% at 50% 0%, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.05) 100%), #fff;
    color: #d97706;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.2), inset 0 0 0 2px rgba(245, 158, 11, 0.25);
    margin: 0 auto 1.25rem;
    font-size: 2rem;
}

.feature:hover .feature-icon {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.28), inset 0 0 0 2px rgba(245, 158, 11, 0.35);
}

.feature h3 {
    color: var(--text-dark);
    margin-bottom: 1.1rem;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.36px;
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 500;
}

@media (max-width: 768px) {
    .feature { padding: 2rem 1.25rem 1.75rem; border-radius: 20px; }
    .feature-icon { width: 60px; height: 60px; font-size: 1.7rem; }
}

/* Ultra-Premium Footer */
.footer {
    background: #1a2035;
    color: white;
    padding: 40px 0 18px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

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

/* Ensure four columns on wider screens so sections sit side-by-side */
@media (min-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(4, minmax(220px, 1fr));
    }
}

.footer-section h3 {
    margin-bottom: 1.44rem;
    color: #f59e0b;
    font-size: 1.30rem;
    font-weight: 800;
    letter-spacing: -0.36px;
}

.footer-section p {
    margin-bottom: 1.08rem;
    color: white;
    font-size: 0.79rem;
    line-height: 1.7;
    font-weight: 500;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 1.08rem;
    color: #f59e0b;
    width: 17px;
    text-align: center;
    font-size: 0.9rem;
}

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

.social-links a {
    color: #e5e7eb;
    font-size: 1.25rem;
    transition: all 0.25s ease;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* Brand hovers for cleaner look */
.social-links a[aria-label="Facebook"]:hover { background: #1877f2; color: #fff; border-color: transparent; }
.social-links a[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; border-color: transparent; }
.social-links a[aria-label="X (Twitter)"]:hover { background: #000; color: #fff; border-color: transparent; }

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.79rem;
    padding: 0.58rem 0;
    display: inline-block;
    font-weight: 500;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(8px);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.79rem;
    opacity: 0.8;
}

/* Footer Contact Links - Elegant styling */
.footer-contact-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-contact-link:hover {
    color: #ffd700;
    opacity: 1;
    transform: translateX(3px);
}

.footer-contact-link:focus {
    outline: none;
    color: #ffd700;
    opacity: 1;
}

/* Reviews Dropdown Styles - Global */
.navbar, .nav-container, .nav-right, .nav-menu {
    overflow: visible;
    position: relative;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001;
    border: 1px solid #e9ecef;
    display: none;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #1a1a2e;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Ultra-Premium Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.44rem;
        text-align: center;
        min-height: auto;
        max-width: 1008px;
        padding: 0.72rem 0;
    }
    
    .hero-left {
        order: 2;
        align-items: center;
        padding: 0.72rem 0;
    }
    
    .hero-right {
        order: 1;
        justify-content: center;
    }
    
    .car-hero-img {
        max-width: 90%;
        max-height: 70vh;
        right: 0;
        transform: scale(1);
    }
    
    .car-hero-img:hover {
        transform: scale(1.05);
    }
    
    .booking-form {
        max-width: 544px;
        padding: 2.24rem;
        margin: 0 auto;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }
    
    .logo-icon i {
        font-size: 1.22rem;
    }
    
    .logo-text {
        font-size: 1.51rem;
    }
    
    .logo-tagline {
        font-size: 0.58rem;
    }
    
    .nav-right .nav-menu {
        gap: 0.32rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.61rem;
        padding: 0.64rem 1rem;
        border-radius: 10px;
    }
    
    .hero {
        padding: 0.5rem 14px 48px;
        min-height: auto !important;
    }
    
    .hero-content {
        gap: 1.44rem;
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0.2rem 0;
    }
    
    .car-hero-img {
        max-width: 95%;
        max-height: 60vh;
        right: 0;
        transform: scale(1);
    }
    
    .car-hero-img:hover {
        transform: scale(1.03);
    }
    
    .booking-form {
        padding: 2.24rem;
        margin: 0 14px;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }
    
    /* OLD FORM STYLES REMOVED - Replaced with horizontal grid layout */
    
    /* REMOVED DUPLICATE QUANTITY-INPUT RULE */
    
    .fleet h2,
    .how-it-works h2,
    .why-choose h2 {
        font-size: 2.56rem;
    }
    
    .fleet,
    .how-it-works,
    .why-choose {
        padding: 72px 0;
    }
    
    .fleet-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.4rem 0.75rem;
        gap: 0.3rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .logo-icon i {
        font-size: 1.28rem;
    }
    
    .logo-text {
        font-size: 1.51rem;
    }
    
    .logo-tagline {
        font-size: 0.58rem;
    }
    
    .nav-right .nav-menu {
        gap: 0.16rem;
    }
    
    .nav-link {
        font-size: 0.61rem;
        padding: 0.56rem 0.8rem;
        border-radius: 8px;
    }
    
    .hero {
        padding: 0.3rem 8px 32px;
    }
    
    .hero-content {
        gap: 1.08rem;
        padding: 0.1rem 0;
    }
    
    .car-hero-img {
        max-width: 100%;
        max-height: 50vh;
        right: 0;
        transform: scale(1);
    }
    
    .car-hero-img:hover {
        transform: scale(1.02);
    }
    
    .booking-form {
        padding: 2.24rem;
        border-radius: 24px;
        margin: 0 12px;
        overflow: visible;
        box-sizing: border-box;
    }
    
    /* OLD FORM STYLES REMOVED - Replaced with horizontal grid layout */
    
    .fleet-card,
    .step,
    .feature {
        padding: 2.24rem 1.2rem;
    }
}

/* Ultra-Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fleet-card,
.step,
.feature {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fleet-card:nth-child(odd) {
    animation-delay: 0.2s;
}

.fleet-card:nth-child(even) {
    animation-delay: 0.4s;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.6s; }
.feature:nth-child(4) { animation-delay: 0.8s; }

/* Ultra-Premium Scrollbar */
::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 8px;
    border: 3px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

/* Ultra-Premium Selection - Fixed for better visibility */
::selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Enhanced Input Text Selection - Fixed for better visibility */
.form-group input::selection,
.form-group select::selection,
.form-group input::-moz-selection,
.form-group select::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Enhanced Text Selection for all form elements */
.radio-label::selection,
.radio-label::-moz-selection,
.luggage-type::selection,
.luggage-type::-moz-selection,
.quantity-input select::selection,
.quantity-input select::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Additional text selection rules for better coverage */
.booking-form *::selection,
.booking-form *::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Specific text selection for form text */
.booking-form input::selection,
.booking-form select::selection,
.booking-form label::selection,
.booking-form span::selection,
.booking-form input::-moz-selection,
.booking-form select::-moz-selection,
.booking-form label::-moz-selection,
.booking-form span::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Force text selection for all text elements */
*::selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

*::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Specific form element selection with higher specificity */
input::selection,
select::selection,
textarea::selection,
label::selection,
span::selection,
p::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

input::-moz-selection,
select::-moz-selection,
textarea::-moz-selection,
label::-moz-selection,
span::-moz-selection,
p::-moz-selection,
h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
h6::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Enhanced text selection for hero title and subtitle */
.hero-title h1::selection,
.hero-title p::selection,
.hero-title h1::-moz-selection,
.hero-title p::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Enhanced text selection for all hero text */
.hero *::selection,
.hero *::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Force text selection for all elements with maximum specificity */
html *::selection,
html *::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Specific text selection for headings and paragraphs */
h1::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection,
h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, h4::-moz-selection, h5::-moz-selection, h6::-moz-selection,
p::selection, p::-moz-selection,
span::selection, span::-moz-selection,
div::selection, div::-moz-selection {
    background: #f59e0b !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Enhanced Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 1100px;
        padding: 1.5rem 0;
    }
    
    .hero-left {
        max-width: 1000px;
        gap: 1.5rem;
    }
    
    .booking-form {
        max-width: 1000px;
        padding: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 0.5rem 14px 64px;
        min-height: auto !important;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0.2rem 0;
    }
    
    .hero-left {
        max-width: 100%;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .hero-title h1 {
        font-size: 3rem;
    }
    
    .hero-title p {
        font-size: 1.2rem;
    }
    
    .booking-form {
        max-width: 100%;
        padding: 1.8rem;
        border-radius: 20px;
    }
    
    .hero-left::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0.4rem 12px 48px;
        min-height: auto !important;
    }
    
    .hero-content {
        gap: 1rem;
        padding: 0.1rem 0;
    }
    
    .hero-left {
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .hero-title h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-title p {
        font-size: 1.1rem;
    }
    
    .booking-form {
        padding: 1.5rem;
        border-radius: 18px;
        max-width: 100%;
    }
    
    .booking-form h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    /* OLD FORM STYLES REMOVED - Replaced with horizontal grid layout */
    
    .fleet h2,
    .how-it-works h2,
    .why-choose h2 {
        font-size: 2.56rem;
    }
    
    .fleet,
    .how-it-works,
    .why-choose {
        padding: 72px 0;
    }
    
    .fleet-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.3rem 8px 32px;
        min-height: auto !important;
    }
    
    .hero-content {
        gap: 0.8rem;
        padding: 0.05rem 0;
    }
    
    .hero-left {
        gap: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .hero-title h1 {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-title p {
        font-size: 1rem;
    }
    
    .booking-form {
        padding: 1.2rem;
        border-radius: 16px;
        max-width: 100%;
    }
    
    .booking-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    /* OLD FORM STYLES REMOVED - Replaced with horizontal grid layout */
    
    /* OLD FORM STYLES REMOVED - Replaced with horizontal grid layout */
    
    .fleet-card,
    .step,
    .feature {
        padding: 2rem 1.2rem;
    }
}

/* Enhanced Loading States */
.booking-form.loading {
    pointer-events: none;
    opacity: 0.8;
}

.booking-form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 3px solid rgba(245, 158, 11, 0.3);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Focus States for Accessibility */
.form-group input:focus-visible,
.form-group select:focus-visible,
.radio-label:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Enhanced Hover Effects for Interactive Elements */
.form-group:hover label {
    color: var(--accent-color);
}

.form-group:hover label i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Enhanced Form Validation Visual Feedback */
.form-group input:valid,
.form-group select:valid {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* Enhanced Success State */
.form-group.success input,
.form-group.success select {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Enhanced Error State */
.form-group.error input,
.form-group.error select {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Responsive map adjustments */
@media (max-width: 768px) {
    .route-map {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .route-map {
        height: 100px;
    }
    
    .date-time-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .date-time-section {
        padding: 1rem;
    }
}

/* OLD FORM STYLES REMOVED - Replaced with horizontal grid layout */

/* Compact Date and Time Section Styling - Integrated Design */
.date-time-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    position: relative;
}

.date-time-section h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    position: relative;
}

.date-time-section h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.date-time-section:hover h4::after {
    width: 50px;
}

.date-time-section h4 i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Compact Luggage Section Styling - Integrated Design */
.luggage-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    position: relative;
}

.luggage-section h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    position: relative;
}

.luggage-section h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.luggage-section:hover h4::after {
    width: 50px;
}

.luggage-section h4 i {
    color: var(--accent-color);
    font-size: 1rem;
}

.date-time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.date-time-grid .form-group {
    margin-bottom: 0;
}

.date-time-grid .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    font-weight: 500;
}

.date-time-grid input[type="date"],
.date-time-grid input[type="time"] {
    width: 100%;
    padding: 0.6rem 0.8rem;
    min-height: 32px;
    font-size: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.date-time-grid input[type="date"]:focus,
.date-time-grid input[type="time"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 
        0 0 0 3px rgba(245, 158, 11, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

/* OLD LUGGAGE-GRID STYLES REMOVED - Replaced with horizontal grid layout */

/* OLD RIGHT COLUMN STYLES REMOVED - Replaced with map section below form */

/* Enhanced Route Map for Right Column */
.route-map {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #f8fafc;
    position: relative;
}

/* Combined Info Box - Single container for vehicle info and price */
.combined-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.combined-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Vehicle Info and Price Display - Now styled as internal elements */
.vehicle-info,
.price-display {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0 0 1.25rem 0; /* give elements space so they don't overlap */
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.vehicle-info::before,
.price-display::before {
    display: none;
}

/* Add separator between vehicle info and price */
.vehicle-info {
    border-bottom: 2px solid rgba(245, 158, 11, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}



/* OLD RESPONSIVE FORM STYLES REMOVED - Replaced with horizontal grid responsive styles */

/* OLD RESPONSIVE FORM STYLES REMOVED - Replaced with horizontal grid responsive styles */

/* Fleet CTA Button Ripple Effect */
.fleet-cta-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Fleet Card Hover States */
.fleet-card.premium:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

.fleet-card.luxury:hover {
    border-color: rgba(139, 69, 19, 0.5);
}

.fleet-card.family:hover {
    border-color: rgba(34, 197, 94, 0.5);
}

.fleet-card.executive:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.fleet-card.group:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.fleet-card.party:hover {
    border-color: rgba(236, 72, 153, 0.5);
}

/* Enhanced Fleet Badge Colors */
.fleet-card.premium .fleet-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.fleet-card.luxury .fleet-badge {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
}

.fleet-card.family .fleet-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.fleet-card.executive .fleet-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.fleet-card.group .fleet-badge {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.fleet-card.party .fleet-badge {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* Enhanced Fleet Card Shadows */
.fleet-card.premium:hover {
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.25);
}

.fleet-card.luxury:hover {
    box-shadow: 0 30px 80px rgba(139, 69, 19, 0.25);
}

.fleet-card.family:hover {
    box-shadow: 0 30px 80px rgba(34, 197, 94, 0.25);
}

.fleet-card.executive:hover {
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.25);
}

.fleet-card.group:hover {
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.25);
}

.fleet-card.party:hover {
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.25);
}

/* Enhanced Spec Items */
.spec-item {
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.spec-item:hover::before {
    left: 100%;
}

/* Enhanced Feature Tags */
.feature-tag {
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.feature-tag:hover::before {
    left: 100%;
}

/* Enhanced Fleet Stats */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

/* Enhanced Fleet CTA */
.fleet-cta {
    position: relative;
    overflow: hidden;
}

.fleet-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

/* Enhanced Fleet Header */
.fleet-header h2 {
    position: relative;
    overflow: hidden;
}

.fleet-header h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    animation: slide 3s ease-in-out infinite;
}

@keyframes slide {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Enhanced Fleet Grid Animation */
.fleet-grid {
    position: relative;
}

.fleet-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Fleet Card Transitions */
.fleet-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-card:hover {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced Fleet Image Hover */
.fleet-car-img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card:hover .fleet-car-img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Fleet Badge Transitions */
.fleet-badge {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-card:hover .fleet-badge {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced Fleet Rating Transitions */
.fleet-rating i {
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-card:hover .fleet-rating i {
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced Spec Item Transitions */
.spec-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-item:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Feature Tag Transitions */
.feature-tag {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-tag:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Stat Item Transitions */
.stat-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Fleet CTA Button Transitions */
.fleet-cta-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-cta-btn:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Fleet Header Transitions */
.fleet-header h2,
.fleet-header .section-subtitle,
.fleet-header .fleet-stats {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Fleet Card Entrance Animation */
.fleet-card {
    animation: fleetCardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-play-state: paused;
}

.fleet-card.animate-in {
    animation-play-state: running;
}

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

/* Enhanced Fleet Stats Entrance Animation */
.stat-item {
    animation: statItemEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-play-state: paused;
}

.stat-item.animate-in {
    animation-play-state: running;
}

@keyframes statItemEntrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Fleet Header Entrance Animation */
.fleet-header h2,
.fleet-header .section-subtitle,
.fleet-header .fleet-stats {
    animation: headerElementEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-play-state: paused;
}

.fleet-header.animate-in h2,
.fleet-header.animate-in .section-subtitle,
.fleet-header.animate-in .fleet-stats {
    animation-play-state: running;
}

@keyframes headerElementEntrance {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Crown Glow Animation for Fleet Header */
@keyframes crownGlow {
    from {
        filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.4));
    }
    to {
        filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.6));
    }
}

/* Essential Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1008px;
    margin: 0 auto;
    padding: 0 14px;
}

/* Hero Section - Duplicate removed to fix mobile padding issue */

/* Remove earlier grid/tint overlays so the image shows clearly */
.hero::before { background: none !important; opacity: 0 !important; }
.hero::after { background: none !important; }

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.hero-title {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-title h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 23px rgba(0, 0, 0, 0.3);
}

.hero-title p {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fleet Section */
.fleet {
    padding: 25px 0 60px; /* Reduced top padding from 40px to 25px for tighter spacing */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}



.fleet h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem; /* reduce heading-to-subtitle gap */
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1.5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fleet h2 i {
    color: var(--accent-color);
    font-size: 3.2rem;
    filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.4));
    animation: crownGlow 2s ease-in-out infinite alternate;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem; /* tighten subtitle-to-grid gap */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin: 0.5rem 0; /* Reduced from 1rem to 0.5rem for even tighter spacing */
}

.fleet-card {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(245, 158, 11, 0.1);
    height: 100%;
}

.fleet-card-content {
    padding: 2rem;
}

.fleet-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

.fleet-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-title p {
        font-size: 1.1rem;
    }
    
    .fleet h2 {
        font-size: 2.4rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 14px 43px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1152px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    cursor: pointer;
}

.logo-icon {
    width: 43px;
    height: 43px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 23px rgba(245, 158, 11, 0.3);
}

.logo-icon i {
    font-size: 1.44rem;
    color: white;
}

.logo-text {
    font-size: 1.73rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
}

.logo-tagline {
    font-size: 0.61rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

/* Fleet Stats */
.fleet-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fleet Card Images */
.fleet-image {
    position: relative;
    overflow: hidden;
}

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

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fleet-rating {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
}

.fleet-rating i {
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

/* Fleet Specs and Features */
.fleet-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.spec-item i {
    margin-right: 0.8rem;
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.spec-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    color: var(--accent-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Custom Confirmation Modal */
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    /* Add safe-space so the dialog never touches screen edges */
    padding: 24px;
    box-sizing: border-box;
}

.confirmation-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 600px;
    max-width: 90vw;
    /* Ensure the modal never exceeds viewport height and remains fully visible */
    max-height: 90vh;
    overflow: auto;
    border: none;
    animation: slideIn 0.3s ease;
}

.confirmation-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #3b82f6 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.confirmation-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.confirmation-body {
    padding: 2rem;
    background: transparent;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.confirmation-item:last-child {
    border-bottom: none;
}

.confirmation-item .label {
    font-weight: 600;
    color: #cbd5e1;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirmation-item .value {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    text-align: right;
    max-width: 250px;
    word-wrap: break-word;
}

/* Final Price Highlight Section */
.final-price-section {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 15px;
    padding: 12px 20px 14px 20px;
    margin: 11px 0;
    text-align: center;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    border: 2px solid #fbbf24;
    min-height: 85px;
    max-height: none;
    overflow: visible;
}

.final-price-label {
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.final-price-amount {
    color: white;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.final-price-note {
    color: white;
    font-size: 9px;
    opacity: 0.8;
    font-style: italic;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

/* Mobile optimization for final price section */
@media (max-width: 768px) {
    .final-price-section {
        padding: 10px 16px 12px 16px;
        margin: 9px 0;
        min-height: 70px;
        max-height: none;
    }
    
    .final-price-label {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .final-price-amount {
        font-size: 20px;
        margin-bottom: 3px;
    }
    
    .final-price-note {
        font-size: 8px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .final-price-section {
        padding: 8px 14px 10px 14px;
        margin: 7px 0;
        min-height: 60px;
        max-height: none;
    }
    
    .final-price-label {
        font-size: 9px;
        margin-bottom: 2px;
    }
    
    .final-price-amount {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .final-price-note {
        font-size: 7px;
        line-height: 1.2;
    }
}

.confirmation-footer {
    padding: 2rem;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pay-now-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.pay-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.pay-now-btn:active {
    transform: translateY(-1px);
}

.pay-now-btn i {
    font-size: 1.2rem;
}

.confirmation-close-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.confirmation-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.confirmation-close-btn:active {
    transform: translateY(-1px);
}

.confirmation-close-btn i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .confirmation-content {
        width: 95vw;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .confirmation-header {
        padding: 1.25rem;
    }
    
    .confirmation-header h3 {
        font-size: 1.25rem;
    }
    
    .confirmation-body {
        padding: 1.5rem;
    }
    
    .confirmation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .confirmation-item .label {
        font-size: 0.9rem;
    }
    
    .confirmation-item .value {
        font-size: 0.95rem;
        text-align: left;
        max-width: 100%;
    }
    
    .confirmation-footer {
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pay-now-btn,
    .confirmation-close-btn {
        width: 100%;
        min-width: auto;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .confirmation-content {
        width: 98vw;
        margin: 0.5rem;
        border-radius: 15px;
    }
    
    .confirmation-header {
        padding: 1rem;
    }
    
    .confirmation-header h3 {
        font-size: 1.1rem;
    }
    
    .confirmation-body {
        padding: 1.25rem;
    }
    
    .confirmation-footer {
        padding: 1.25rem;
    }
}

/* OLD HORIZONTAL GRID STYLES REMOVED - Replaced with modern section-based layout */

/* OLD COMPACT FORM STYLES REMOVED - Replaced with modern form styles */

/* OLD BOOK BUTTON STYLES REMOVED - Replaced with modern premium button styles */

/* Remove old two-column layout styles */
.form-two-column,
.form-left-column,
.form-right-column {
    display: none;
}

/* Responsive Design for New Booking Form */
@media (max-width: 1200px) {
    .booking-form {
        padding: 2rem;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .booking-form {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .form-header h3 {
        font-size: 1.8rem;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-icon i {
        font-size: 1.5rem;
    }
    
    .form-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title span {
        font-size: 1rem;
    }
    
    .book-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .route-map {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .booking-form {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-section {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .radio-option {
        min-width: 100px;
        padding: 0.5rem 1rem;
    }
    
    .book-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .route-map {
        height: 200px;
    }
}

/* Additional Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Prevent zoom on input focus (iOS) */
    .input-wrapper input[type="text"],
    .input-wrapper input[type="email"],
    .input-wrapper input[type="tel"],
    .input-wrapper input[type="date"],
    .input-wrapper input[type="time"],
    .select-wrapper select {
        font-size: 16px;
    }
    
    /* Improve touch scrolling */
    .booking-form,
    .fleet-card,
    .step,
    .feature {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Better touch feedback */
    .book-btn:active,
    .nav-link:active,
    .fleet-cta-btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Optimize images for mobile */
    .fleet-car-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
    }
    
    /* Improve text rendering */
    .form-group label,
    .fleet-card-content h3,
    .step h3,
    .feature h3,
    .hero-title h1 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Better mobile spacing */
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Optimize grid layouts for mobile */
    .fleet-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Improve card layouts */
    .fleet-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    /* Better form layout */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Optimize map for mobile */
    .route-map {
        border-radius: 10px;
        overflow: hidden;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Improve navigation for mobile */
    .nav-container {
        padding: 0.4rem 1rem;
    }
    
    .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better button sizing for mobile */
    .book-btn,
    .fleet-cta-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Site-wide compact navbar adjustments for mobile (final override) */
@media (max-width: 768px) {
	/* Reduce overall navbar footprint */
	.navbar { padding: 0 !important; height: var(--mobile-header-height); display: flex; align-items: center; line-height: 0; }
	.nav-container { padding: 0 0.75rem; min-height: var(--mobile-header-height); height: 100%; }

	/* Smaller logo on mobile to avoid tall header */
	.logo-icon {
		width: 26px;
		height: 26px;
		border-radius: 6px;
	}

	.logo-text {
		font-size: 1.05rem;
	}

	.logo-tagline {
		font-size: 0.5rem;
	}

	/* Ensure burger is close to edge and clickable */
	.mobile-menu-toggle {
		right: 0.75rem;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		z-index: 1002;
		cursor: pointer;
	}

	/* Drawer respects header height */
	.nav-right { padding-top: var(--mobile-header-height); }
}

@media (max-width: 480px) {
	/* Ultra-compact on very small screens */
	.navbar { padding: 0 !important; height: var(--mobile-header-height-sm); }
	.nav-container { padding: 0 0.5rem; min-height: var(--mobile-header-height-sm); }

	.logo-icon {
		width: 24px;
		height: 24px;
	}

	.logo-text {
		font-size: 0.92rem;
	}

	.logo-tagline {
		font-size: 0.45rem;
	}

	/* Hamburger target size on very small screens */
	.mobile-menu-toggle { width: 40px; height: 40px; }

	/* Drawer respects smaller header */
	.nav-right { padding-top: var(--mobile-header-height-sm); }
}

/* Final mobile override: compress header content and remove excess top gap below it */
@media (max-width: 768px) {
	/* Remove secondary line to keep header short */
	.logo-tagline { display: none !important; }
	/* Prevent tall line boxes */
	.logo-text { line-height: 1 !important; margin: 0; }
	.logo { align-items: center; }
	/* Ensure sections below header are not pushed too far down */
	.hero,
	.destinations-hero,
	.taxi-page .hero {
		padding-top: 64px !important;
	}
}

@media (max-width: 480px) {
	/* Even tighter on very small screens */
	.hero,
	.destinations-hero,
	.taxi-page .hero {
		padding-top: 56px !important;
	}
}

/* Simple Quick Navigation overlay (used by hamburger, no animations) */
.quick-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10020;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quick-nav {
	background: #ffffff;
	border-radius: 16px;
	width: 92%;
	max-width: 380px;
	padding: 16px 16px 12px;
	box-shadow: 0 16px 48px rgba(0,0,0,0.18);
	position: relative;
}

.quick-nav .qheader { display: flex; align-items: center; justify-content: center; }
.quick-nav .qtitle { margin: 0; font-size: 1.1rem; color: var(--text-dark); font-weight: 800; }
.quick-nav .qsubtitle { margin: 4px 0 10px; color: var(--text-light); font-size: 0.9rem; text-align: center; }

.quick-nav .qclose {
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	cursor: pointer;
}

.quick-nav .qclose:active { background: #f3f4f6; }

.quick-nav a.qitem {
	display: block;
	padding: 14px;
	margin: 8px 0;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	text-align: center;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 800;
}

.quick-nav a.qitem:active { background: #f8fafc; }

.quick-nav .qactions { display: flex; gap: 10px; margin-top: 12px; }
.quick-nav .qbtn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: #f8fafc;
	cursor: pointer;
}
.quick-nav .qbtn:active { background: #eef2f7; }

/* Sales discount styles */
.price-row.sales-discount {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border-radius: 8px;
    padding: 0.6rem;
    margin: 0.4rem 0;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.price-row.sales-discount span:first-child {
    color: #e74c3c;
    font-weight: 600;
}

.price-row.sales-discount span:last-child {
    color: #e74c3c;
    font-weight: 700;
}

.price-row.total-row {
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    border-bottom: none;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
}

.sales-message {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

.sales-message i {
    margin-right: 0.5rem;
    animation: bounce 1s infinite;
}

