@import 'colors.css';

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    color: var(--secondary-offwhite);
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-subtitle .highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-primary);
    color: var(--secondary-offwhite);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--accent-primary);
}

.hero-cta:hover {
    background: var(--secondary-offwhite);
    color: var(--primary-gray);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* --- STICKY RESERVATION TAB --- */
.sticky-reservation-tab {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--accent-primary);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--accent-primary);
    max-width: 300px;
}

.sticky-reservation-tab.visible {
    transform: translateX(0);
}

.sticky-tab-content {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
}

.sticky-tab-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sticky-tab-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.sticky-tab-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-offwhite);
    line-height: 1.2;
}

.sticky-tab-subtitle {
    font-size: 0.75rem;
    color: var(--secondary-offwhite);
    opacity: 0.9;
    line-height: 1.2;
}

.sticky-tab-button {
    background: var(--primary-black);
    color: var(--secondary-offwhite);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.sticky-tab-button:hover {
    background: var(--primary-gray);
    transform: scale(1.05);
}

/* Responsive adjustments for sticky tab */
@media (max-width: 768px) {
    .sticky-reservation-tab {
        top: 10px;
        right: 10px;
        max-width: 280px;
    }
    
    .sticky-tab-content {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .sticky-tab-title {
        font-size: 0.85rem;
    }
    
    .sticky-tab-subtitle {
        font-size: 0.7rem;
    }
    
    .sticky-tab-button {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-reservation-tab {
        top: 5px;
        right: 5px;
        max-width: 250px;
    }
    
    .sticky-tab-content {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .sticky-tab-icon {
        font-size: 1.2rem;
    }
    
    .sticky-tab-title {
        font-size: 0.8rem;
    }
    
    .sticky-tab-subtitle {
        font-size: 0.65rem;
    }
    
    .sticky-tab-button {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

/* --- GLASSMORPHISM & CARD EFFECTS --- */
.glassmorphism {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.enhanced-card {
    background: var(--secondary-offwhite);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    overflow: hidden;
}

.enhanced-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.card-effect {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.card-effect:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.card-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card-effect:hover::before {
    transform: scaleX(1);
}

/* --- GRADIENT TEXT --- */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-black), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* --- STEP ICON --- */
.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    color: var(--primary-black);
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
}

/* --- FEATURE ICONS --- */
.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

/* --- RESERVATION SECTION --- */
.reservation-main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.reservation-step {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-bottom: 20px;
}

.reservation-step.scroll-reveal {
    animation: fadeInUp 0.6s ease-out forwards;
}

.reservation-header {
    background-color: var(--primary-dark);
    color: white;
    padding: 25px 30px;
    margin-bottom: 10px;
}

.reservation-header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.step-content {
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.step-content.hidden {
    display: none;
}

/* Date and time fields styling */
.datetime-field {
    position: relative;
    margin-bottom: 25px;
}

.datetime-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.datetime-field input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* Location summary styling */
.location-summary {
    background-color: var(--secondary-offwhite);
    padding: 25px;
    margin: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-primary);
}

.location-summary h3 {
    margin-top: 0;
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.location-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.location-item strong {
    margin-right: 10px;
    color: var(--primary-gray);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Form styling */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-gray);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--secondary-light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
    outline: none;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-light-gray);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-black);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: var(--accent-primary-light);
}

.checkbox-group label {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

/* Button styling */
.btn-continue {
    background: var(--primary-black);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.btn-continue:hover {
    background: var(--primary-black);
    color: white;
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-continue:active {
    transform: translateY(0);
}

/* Fleet section styling */
.fleet-section {
    padding: 50px 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    background: var(--secondary-offwhite);
    border-radius: 14px;
}

.fleet-header {
    text-align: center;
    margin-bottom: 40px;
}

.fleet-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.fleet-subtitle {
    font-size: 1.2rem;
    color: var(--primary-gray);
    margin-bottom: 20px;
}

.fleet-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border-radius: 50px;
    margin: 0 8px 10px;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    animation: bounceInTag 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.fleet-carousel-container {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
}

.fleet-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: var(--primary-black);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.fleet-nav:hover {
    background: var(--accent-primary);
    color: var(--primary-black);
}

.fleet-nav-prev {
    left: -23px;
    animation: slideInLeft 0.5s ease;
}

.fleet-nav-next {
    right: -23px;
    animation: slideInRight 0.5s ease;
}

.fleet-carousel {
    position: relative;
    display: flex;
    overflow: visible;
    min-height: 450px;
}

.fleet-category-card {
    position: absolute;
    width: 100%;
    left: 0;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    z-index: 0;
}

.fleet-category-card.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.fleet-category-card.prev,
.fleet-category-card.next {
    opacity: 0.4;
    transform: scale(0.85);
    z-index: 0;
}

.fleet-category-card.prev {
    transform: translateX(-30%) scale(0.85);
}

.fleet-category-card.next {
    transform: translateX(25%) scale(0.85); /* Reduced from 30% to 25% to avoid overflow */
    right: 0; /* Ensure it stays within the container */
}

.fleet-card-image-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.fleet-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.fleet-category-card.active img {
    transform: scale(1.05);
}

.fleet-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; /* Change to left alignment */
    padding: 20px;
}

.fleet-card-badge {
    padding: 8px 14px;
    background: rgba(255,255,255,0.9);
    color: var(--primary-black);
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
    margin-right: auto; /* Push badge to the left */
}

.fleet-card-badge.luxury {
    background: var(--accent-primary);
    color: var(--primary-black);
}

.fleet-card-badge.sport {
    background: var(--primary-black);
    color: var(--accent-primary);
}

.fleet-category-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-category-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-black);
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.fleet-feature {
    padding: 6px 12px;
    background: var(--secondary-light-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-gray);
    animation: popIn 0.4s ease forwards;
    opacity: 0;
    transform: scale(0.8);
}

.fleet-category-info p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--primary-gray);
    flex-grow: 1;
}

.fleet-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--primary-black);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fleet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    transition: all 0.4s ease;
    z-index: 1;
}

.fleet-btn:hover::before {
    left: 0;
}

.fleet-btn:hover {
    box-shadow: var(--shadow-medium);
    color: var(--primary-black);
}

.fleet-btn span {
    position: relative;
    z-index: 2;
    margin-right: 8px;
}

.fleet-btn svg {
    position: relative;
    z-index: 2;
}

.fleet-btn.luxury {
    background: var(--accent-primary);
    color: var(--primary-black);
}

.fleet-btn.luxury::before {
    background: var(--primary-black);
}

.fleet-btn.luxury:hover {
    color: white;
}

.fleet-carousel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.fleet-carousel-index {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.fleet-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.fleet-carousel-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.fleet-carousel-dot.active {
    background: var(--accent-primary);
}

.fleet-carousel-dot.active::before {
    border-color: var(--accent-primary-light);
}

.fleet-carousel-progress {
    width: 200px;
    height: 4px;
    background: var(--secondary-light-gray);
    border-radius: 2px;
    overflow: hidden;
}

.fleet-progress-bar {
    height: 100%;
    background: var(--accent-primary);
    width: 0;
    transition: width 0.3s ease;
}

.fleet-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.fleet-stat {
    text-align: center;
    padding: 20px;
    min-width: 160px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.fleet-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-primary-dark);
}

.stat-label {
    color: var(--primary-gray);
    font-weight: 500;
}

/* --- Google Reviews Carousel --- */
.google-reviews-section {
    background: var(--secondary-offwhite);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 35px;
    margin: 40px auto;
    max-width: 1300px;
}

.google-reviews-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.google-reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.google-reviews-excellent {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.google-reviews-stars {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.google-header-logo {
    height: 24px;
    margin-right: 10px;
}

.stars-container {
    display: flex;
}

.google-review-star {
    color: var(--accent-primary);
    font-size: 1.3rem;
    margin-right: 2px;
}

.google-reviews-based {
    font-size: 1rem;
    color: var(--primary-gray);
}

.google-reviews-count {
    font-weight: 600;
}

.google-reviews-carousel-wrapper {
    position: relative;
}

.google-reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 20px;
    padding: 10px 5px;
}

.google-reviews-carousel::-webkit-scrollbar {
    display: none;
}

.google-review-card {
    flex: 0 0 auto;
    width: 300px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-light-gray);
    height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-primary-light);
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.google-review-header-left {
    display: flex;
    align-items: center;
}

.google-review-author-info {
    margin-left: 12px;
}

.google-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-light-gray);
    transition: all 0.3s ease;
}

.google-review-card:hover .google-review-avatar {
    border-color: var(--accent-primary);
}

.google-review-author {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 4px;
}

.google-review-date {
    font-size: 0.9rem;
    color: var(--primary-gray);
}

.google-review-google-logo {
    height: 18px;
    opacity: 0.8;
}

.google-review-stars {
    margin-bottom: 12px;
}

.google-review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--primary-gray);
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.google-review-readmore {
    color: var(--accent-primary-dark);
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    text-align: right;
    font-size: 0.9rem;
}

.google-review-readmore:hover {
    text-decoration: underline;
}

.google-reviews-carousel-prev,
.google-reviews-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-black);
    color: var(--secondary-offwhite);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.google-reviews-carousel-prev:hover,
.google-reviews-carousel-next:hover {
    background: var(--accent-primary);
    color: var(--primary-black);
}

.google-reviews-carousel-prev {
    left: -20px;
}

.google-reviews-carousel-next {
    right: -20px;
}

@media (max-width: 1200px) {
    .google-reviews-carousel-prev {
        left: 10px;
    }
    
    .google-reviews-carousel-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .google-reviews-carousel {
        padding: 10px 0;
    }
    
    .google-review-card {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .google-reviews-section {
        padding: 20px 15px;
    }
    
    .google-reviews-excellent {
        font-size: 1.4rem;
    }
    
    .google-review-card {
        width: 260px;
    }
}

/* Advanced Animations */
@keyframes reviewCardPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes reviewCardSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress Indicator */
.google-reviews-progress {
    height: 4px;
    background: var(--secondary-light-gray);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.google-reviews-progress-bar {
    height: 100%;
    background: var(--accent-primary);
    width: 0;
    transition: width 0.3s ease;
}

/* Large Screen Adjustments */
@media (min-width: 1400px) {
    .google-reviews-carousel {
        gap: 30px;
    }
    
    .google-review-card {
        width: 340px;
    }
}

/* Medium Screen Adjustments */
@media (max-width: 1200px) and (min-width: 1025px) {
    .google-reviews-carousel {
        gap: 24px;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        margin: 30px 15px;
    }
}

@media (max-width: 480px) {
    .google-review-card {
        height: 320px;
    }
}

/* Pickup location info styling */
.pickup-location-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.pickup-location-info-details {
    flex: 1;
    min-width: 250px;
    padding: 18px;
    background: var(--secondary-offwhite);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-primary);
}

.pickup-location-info-details strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.pickup-location-info-details .info-row {
    margin-bottom: 8px;
    display: flex;
}

.pickup-location-info-details .info-row .label {
    min-width: 100px;
    font-weight: 600;
    color: var(--primary-gray);
}

.pickup-location-info-map {
    flex: 1;
    min-width: 250px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--secondary-light-gray);
}

/* Custom dropdown styling */
.custom-dropdown {
    border: 2px solid var(--secondary-light-gray);
    transition: all 0.3s ease;
}

.custom-dropdown:hover {
    border-color: var(--accent-primary-light);
}

.custom-dropdown:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.2);
}

.custom-dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-dropdown-selected::after {
    content: '▼';
    font-size: 0.8em;
    color: var(--primary-gray);
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.custom-dropdown:focus .custom-dropdown-selected::after {
    transform: rotate(180deg);
    color: var(--accent-primary-dark);
}

/* Enhanced form styles */
.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"] {
    border: 2px solid var(--secondary-light-gray);
    transition: all 0.3s ease;
}

.form-group input[type="text"]:hover,
.form-group input[type="date"]:hover,
.form-group input[type="time"]:hover {
    border-color: var(--accent-primary-light);
}

.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.2);
    outline: none;
}

/* Location info box styling */
.location-info-box {
    background: var(--secondary-offwhite);
    border: 2px solid var(--accent-primary);
    border-radius: 14px;
    box-shadow: var(--shadow-medium);
    padding: 25px;
    font-size: 1.01rem;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Mike Car Guarantees / Why Choose Us Section --- */
/* Why Choose Section - Horizontal Card Layout */
.why-choose-section {
    padding: 60px 40px;
    max-width: 1300px;
    margin: 40px auto;
    background: var(--secondary-offwhite);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.why-choose-subtitle {
    text-align: center;
    color: var(--primary-gray);
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.why-choose-feature {
    flex: 1 1 300px;
    max-width: 380px;
    min-width: 280px;
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--secondary-light-gray);
}

.why-choose-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.why-choose-feature:hover::before {
    transform: scaleX(1);
}

.why-choose-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-primary-light);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--accent-primary);
    background: var(--secondary-offwhite);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.why-choose-feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(108, 117, 125, 0.3);
}

.why-choose-feature h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 600;
}

.why-choose-feature p {
    color: var(--primary-gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .why-choose-features {
        flex-direction: row;
    }
    
    .why-choose-feature {
        flex: 0 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .why-choose-features {
        flex-direction: column;
    }
    
    .why-choose-feature {
        flex: 0 1 100%;
        max-width: 100%;
    }
    
    .why-choose-section {
        padding: 40px 20px;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
}


/* Guarantees */
.guarantees-section {
    margin-top: 36px;
    margin-bottom: 36px;
    background: var(--secondary-offwhite);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 40px;
    margin: 40px auto;
}

.guarantees-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.guarantees-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px 36px;
}

.guarantees-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary-light-gray);
    margin-bottom: 15px;
}

.guarantees-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--accent-primary);
}

.guarantees-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.guarantees-item p {
    font-size: 0.95rem;
    color: var(--primary-gray);
    line-height: 1.5;
}

@media (max-width: 700px) {
    .guarantees-section {
        padding: 25px 20px;
    }
    
    .guarantees-section h2 {
        font-size: 1.7rem;
    }
}

/* Blog/News Section */
.news-section {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.news-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.news-subtitle {
    text-align: center;
    color: var(--primary-gray);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.blog-excerpt {
    color: var(--primary-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    align-self: flex-start;
    color: var(--accent-primary-dark);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-primary);
}

.read-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .fleet-nav-prev {
        left: 10px;
    }
    
    .fleet-nav-next {
        right: 10px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .fleet-title,
    .why-choose-title,
    .news-title {
        font-size: 2rem;
    }
    
    .why-choose-features,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .fleet-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .fleet-stat {
        width: 100%;
        max-width: 200px;
    }
}

/* Fix position issues and z-index for dropdown lists */
#pickup-location-info,
#return-location-info {
    z-index: 1002;
}

#pickup-location-custom .custom-dropdown-list,
#return-location-custom .custom-dropdown-list {
    z-index: 1003;
}

/* Enhanced UI and UX Improvements */

/* Smoother transitions for all interactive elements */
a, button, input, select, .form-group, .card-effect, .enhanced-card, 
.fleet-category-card, .why-choose-us-item, .google-review-card, .blog-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Micro-interactions */
button:active, a:active {
    transform: scale(0.98);
}

/* Enhanced focus states for better accessibility */
button:focus, a:focus, input:focus, select:focus, .custom-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Subtle hover effects for cards */
.enhanced-card:hover, .card-effect:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Subtle text shadow for better readability on light backgrounds */
.gradient-text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Better container padding for main sections */
.reservation-main, 
.google-reviews-section,
.why-choose-us-section, 
.fleet-section,
.news-section,
.why-choose-section {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
}

/* Extra spacing for section headings */
.fleet-header,
.why-choose-title,
.news-title {
    margin-bottom: 30px;
}

/* Improved fleet card styling */
.fleet-category-card {
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.fleet-card-image-container {
    height: 280px;
}

.fleet-category-info {
    padding: 30px;
}

.fleet-feature {
    background: var(--secondary-offwhite);
    color: var(--primary-black);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.fleet-feature:hover {
    background: var(--accent-primary-light);
    transform: translateY(-2px);
}

/* Refined Google Review cards */
.google-review-card {
    border-radius: 14px;
    padding: 25px;
    height: 320px;
}

/* Blog card refinements */
.blog-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.blog-image {
    height: 220px;
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .fleet-card-image-container {
        height: 220px;
    }
    
    .fleet-category-info {
        padding: 20px;
    }
    
    .fleet-category-info h3 {
        font-size: 1.3rem;
    }
    
    .fleet-feature {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Loading state animations */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.loading {
    background: linear-gradient(to right, #f6f7f8 8%, #edeef1 18%, #f6f7f8 33%);
    background-size: 800px 104px;
    animation: shimmer 1.5s infinite linear;
    border-radius: 8px;
}

/* Rich hover states for buttons */
.hero-cta:hover, 
.btn-continue:hover, 
.fleet-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced grey accent elements */
.accent-element {
    position: relative;
    text-align: center; /* Ensure all titles are centered */
}

.accent-element::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%; /* Center the underline */
    transform: translateX(-50%); /* Center the underline */
    width: 40px;
    height: 3px;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.accent-element:hover::after {
    width: 100%;
}

/* Section separators */
.section-separator {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    margin: 40px 0;
    border-radius: 2px;
    width: 100%;
    max-width: 1305px;
    margin-left: auto;
    margin-right: auto;
}

/* Fix for empty placeholder blocks */
.form-group > div:empty {
    display: none;
}

/* --- DATE AND TIME CONTROLS --- */
.date-control,
.time-control {
    position: relative;
    display: inline-block;
    width: 100%;
}

.date-control input[type="date"],
.time-control input[type="time"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.date-display,
.time-display {
    position: relative;
    width: 100%;
    padding: 14px 18px;
    padding-right: 45px;
    border: 1.5px solid #bfc8d6;
    border-radius: 8px;
    background: #fff;
    color: #2c3e50;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.date-control i,
.time-control i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bfc8d6;
    font-size: 1.1rem;
    z-index: 1;
    pointer-events: none;
}

.date-display:hover,
.time-display:hover {
    border-color: var(--accent-primary);
    background: #f8f9fa;
}

.date-control:hover i,
.time-control:hover i {
    color: var(--accent-primary);
}

.date-control input[type="date"]:focus + .date-display,
.time-control input[type="time"]:focus + .time-display {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
    background: #f8f9fa;
}

.date-control input[type="date"]:focus ~ i,
.time-control input[type="time"]:focus ~ i {
    color: var(--accent-primary);
}

.date-control input[type="date"]:valid + .date-display,
.time-control input[type="time"]:valid + .time-display {
    color: #2c3e50;
    font-weight: 500;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .date-display,
    .time-display {
        padding: 12px 16px;
        padding-right: 40px;
        font-size: 0.9rem;
        height: 44px;
    }
    
    .date-control i,
    .time-control i {
        right: 12px;
        font-size: 1rem;
    }
    
    .datetime-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .datetime-field {
        width: 100%;
    }
}