/* Main Container Styles */
.booking-wrapper {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(247, 183, 49, 0.1);
}

.booking-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #f7b731, #f97316);
    z-index: 1;
}

/* Typography */
.booking-wrapper h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.booking-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #f7b731, #f97316);
    border-radius: 2px;
}

/* Progress Steps */
.progress-steps {
    display: none;
    margin: 3rem 0 4rem;
}

.progress-steps.visible {
    display: block;
    animation: fadeIn 0.6s ease-out;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
    border-radius: 3px;
}

/* Individual Steps */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #95a5a6;
    font-size: 1.35rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step.active .step-icon {
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    border-color: #f7b731;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(247, 183, 49, 0.25);
}

.step.completed .step-icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-color: #27ae60;
    color: white;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.25);
}

.step-label {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.8rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: #222;
    transform: translateY(-2px);
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.vehicle-card {
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vehicle-card:hover {
    border-color: #f7b731;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(247, 183, 49, 0.15);
}

.vehicle-card.selected {
    border-color: #f7b731;
    background-color: rgba(247, 183, 49, 0.05);
    box-shadow: 0 15px 30px rgba(247, 183, 49, 0.15);
}

.vehicle-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f7b731;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: scaleIn 0.3s ease;
}

.vehicle-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.vehicle-card:hover img {
    transform: scale(1.08) translateY(-5px);
}

.vehicle-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.vehicle-card:hover h3 {
    color: #f7b731;
}

.vehicle-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #ecf0f1;
}

.vehicle-details span {
    font-size: 1rem;
    color: #555;
}

.vehicle-details .price {
    color: #f97316;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Service Selection */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 2.5rem 0;
}

/* Responsive grid - 3 cards for initial service selection */
@media (min-width: 768px) {
    .service-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service type selection (Transfer/Excursion) - only 2 cards */
#service-type-selection .service-options {
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: #f7b731;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(247, 183, 49, 0.15);
}

.service-card.selected {
    border-color: #f7b731;
    background-color: rgba(247, 183, 49, 0.05);
    box-shadow: 0 15px 30px rgba(247, 183, 49, 0.15);
}

.service-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f7b731;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: scaleIn 0.3s ease;
}

.service-icon {
    font-size: 3rem;
    color: #f7b731;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247, 183, 49, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    border: 2px dashed rgba(247, 183, 49, 0.3);
}

.service-card:hover .service-icon,
.service-card.selected .service-icon {
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    border: 2px solid rgba(247, 183, 49, 0);
    box-shadow: 0 10px 20px rgba(247, 183, 49, 0.3);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.service-card h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(247, 183, 49, 0.5);
    transition: all 0.3s ease;
}

.service-card:hover h3:after,
.service-card.selected h3:after {
    width: 60px;
    background: #f7b731;
}

/* Service Link Cards (for navigation, not booking flow) */
.service-card.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px dashed #ecf0f1;
    position: relative;
}

.service-card.service-link:hover {
    border-color: #f7b731;
    border-style: solid;
    text-decoration: none;
    color: inherit;
}

.service-card.service-link .link-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(247, 183, 49, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #f7b731;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card.service-link:hover .link-indicator {
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    color: white;
    transform: translateX(5px);
}

.service-card.service-link:hover .link-indicator i {
    transform: translateX(3px);
}

.service-card.service-link .link-indicator i {
    transition: transform 0.3s ease;
}

/* Map Container */
.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(247, 183, 49, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Map Step Styles */
.route-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.enhanced-search-container {
    margin-bottom: 2rem;
}

.search-input-group {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.search-input-group label i {
    color: #f7b731;
}

.search-input-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input-group input:focus {
    outline: none;
    border-color: #f7b731;
    box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.1);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.search-suggestion-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-suggestion-item:hover {
    background-color: #f8f9fa;
}

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

.search-suggestion-item i {
    color: #f7b731;
    font-size: 1.1rem;
}

.search-suggestion-item .suggestion-text {
    flex: 1;
}

.search-suggestion-item .suggestion-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.search-suggestion-item .suggestion-address {
    font-size: 0.9rem;
    color: #666;
}

.enhanced-price-display {
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.enhanced-price-display:hover {
    border-color: #f7b731;
    box-shadow: 0 8px 25px rgba(247, 183, 49, 0.1);
}

.price-placeholder {
    text-align: center;
    color: #666;
    padding: 2rem;
}

.price-placeholder i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
    display: block;
}

.price-placeholder p {
    font-size: 1.1rem;
    margin: 0;
}

/* ==========================================
   PROFESSIONAL LOCATION DETAILS DISPLAY
   ========================================== */

.location-details-display {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e1e8ed;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.location-details-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #f7b731, #f97316);
}

.location-details-display:hover {
    border-color: rgba(247, 183, 49, 0.4);
    box-shadow: 0 8px 30px rgba(247, 183, 49, 0.12);
}

.selected-location-info,
.distance-info {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.selected-location-info:last-child,
.distance-info:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.selected-location-info h3,
.distance-info h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.selected-location-info h3 i,
.distance-info h3 i {
    color: #f7b731;
    font-size: 1.1rem;
}

.location-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    padding-left: 0.75rem;
    border-left: 3px solid #f7b731;
}

.location-address {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

.distance-details {
    display: grid;
    gap: 0.75rem;
}

.distance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #f7b731;
    transition: all 0.2s ease;
}

.distance-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateX(4px);
}

.distance-item-label {
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.distance-item-value {
    font-weight: 700;
    color: #f7b731;
    font-size: 1rem;
}

/* ==========================================
   PROFESSIONAL PRICE BREAKDOWN SECTION
   ========================================== */

.price-breakdown {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 1.75rem;
    margin-top: 1.5rem;
    border: 2px solid #e1e8ed;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.price-item-label {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

.price-item-value {
    font-weight: 700;
    color: #f7b731;
    font-size: 1.05rem;
}

.total-price-item {
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.25rem;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.35);
    letter-spacing: 0.02em;
}

/* Form Elements */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    color: #2c3e50;
    background-color: #f8f9fa;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #f7b731;
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0);
    background-color: #fff;
}

/* Form Validation */
.input-group.error input,
.input-group.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.6rem;
    display: block;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.form-navigation.visible {
    display: flex;
    animation: fadeIn 0.4s ease;
}

/* Price Display */
.price-display {
    background: linear-gradient(135deg, rgba(247, 183, 49, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border: 1px solid rgba(247, 183, 49, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.price-breakdown {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.05rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
}

/* Navigation Buttons */
.back-btn,
.next-btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn {
    background-color: #f8f9fa;
    color: #555;
    border: 2px solid #e0e0e0;
}

.next-btn {
    background: linear-gradient(to right, #f7b731, #f97316);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #f97316, #f7b731);
    transition: all 0.5s ease;
    z-index: -1;
}

.next-btn:not(.disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 183, 49, 0.4);
}

.next-btn:not(.disabled):hover::before {
    width: 100%;
}

.back-btn:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    transform: translateY(-3px);
}

.next-btn.disabled {
    background: #d1d1d1;
    cursor: not-allowed;
    box-shadow: none;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-wrapper {
        padding: 2rem 1.5rem;
        margin: 1rem auto 3rem;
    }
    
    .booking-wrapper h2 {
        font-size: 1.8rem;
    }

    .steps-container {
        padding: 0 1rem;
    }

    .steps-container::before {
        top: 22px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card.service-link {
        border-style: solid;
    }
    
    .vehicle-grid {
        gap: 1.5rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .back-btn,
    .next-btn {
        width: 100%;
        text-align: center;
    }

    .map-container {
        height: 300px;
    }

    /* Enhanced Map Step Mobile Styles */
    .route-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .search-input-group {
        max-width: 100%;
    }

    .search-input-group input {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .search-suggestions {
        max-height: 250px;
    }

    .search-suggestion-item {
        padding: 0.875rem 1.25rem;
    }

    .search-suggestion-item .suggestion-name {
        font-size: 0.95rem;
    }

    .search-suggestion-item .suggestion-address {
        font-size: 0.85rem;
    }

    .enhanced-price-display {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .price-placeholder {
        padding: 1.5rem;
    }

    .price-placeholder i {
        font-size: 2.5rem;
    }

    .price-placeholder p {
        font-size: 1rem;
    }

    .location-details-display {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .selected-location-info h3,
    .distance-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .location-name {
        font-size: 1rem;
    }

    .location-address {
        font-size: 0.9rem;
    }

    .distance-item {
        padding: 0.625rem 0.875rem;
    }

    .price-breakdown {
        padding: 1.25rem;
    }

    .price-item {
        margin-bottom: 0.625rem;
        padding-bottom: 0.625rem;
    }

    .total-price-item {
        padding: 0.875rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .booking-wrapper {
        padding: 2.5rem;
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   EXCURSION GRID & CARDS - Professional Styling
   ========================================== */

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0.5rem;
}

.excursion-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.excursion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(247, 183, 49, 0.15);
    border-color: rgba(247, 183, 49, 0.3);
}

.excursion-card .card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.excursion-card .card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.excursion-card:hover .card-image-container img {
    transform: scale(1.08);
}

.excursion-card .price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.4);
    z-index: 2;
}

.excursion-card .duration-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(5px);
}

.excursion-card .duration-badge i {
    color: #f7b731;
}

.excursion-card .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.excursion-card .card-header {
    margin-bottom: 0.75rem;
}

.excursion-card .card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.excursion-card:hover .card-header h2 {
    color: #f7b731;
}

.excursion-card .card-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.excursion-card .card-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.excursion-card .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.excursion-card .feature i {
    color: #f7b731;
    font-size: 1rem;
}

.excursion-card .card-footer {
    margin-top: auto;
}

.excursion-card .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.3);
}

.excursion-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 183, 49, 0.4);
}

.excursion-card .btn-primary:active {
    transform: translateY(0);
}

/* Excursion card responsive */
@media (max-width: 768px) {
    .excursions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .excursion-card .card-image-container {
        height: 180px;
    }

    .excursion-card .card-content {
        padding: 1.25rem;
    }

    .excursion-card .card-header h2 {
        font-size: 1.15rem;
    }

    .excursion-card .card-features {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Vehicle card enhancements for excursion flow */
#initial-vehicle h2 {
    margin-bottom: 1rem;
}

#initial-vehicle .vehicle-grid {
    margin-top: 1.5rem;
}

#initial-vehicle .vehicle-card {
    position: relative;
}

#initial-vehicle .vehicle-card .capacity {
    background: rgba(247, 183, 49, 0.1);
    color: #f97316;
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

#initial-vehicle .vehicle-card .price {
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   PASSENGER SELECTOR - Professional Styling
   ========================================== */

.step-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.passenger-selector {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.passenger-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.passenger-type:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.passenger-type:first-child {
    padding-top: 0;
}

.passenger-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.passenger-info i {
    font-size: 1.5rem;
    color: #f7b731;
    width: 40px;
    height: 40px;
    background: rgba(247, 183, 49, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.passenger-info div {
    display: flex;
    flex-direction: column;
}

.passenger-label {
    font-weight: 600;
    color: #222;
    font-size: 1.1rem;
}

.passenger-desc {
    color: #888;
    font-size: 0.85rem;
}

.passenger-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 0.35rem;
}

.counter-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #f7b731;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.counter-btn:hover {
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    color: white;
    transform: scale(1.1);
}

.counter-btn:active {
    transform: scale(0.95);
}

.passenger-counter input {
    width: 50px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    border: none;
    background: transparent;
}

.passenger-counter input::-webkit-inner-spin-button,
.passenger-counter input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.passenger-summary {
    background: linear-gradient(135deg, rgba(247, 183, 49, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px dashed rgba(247, 183, 49, 0.3);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 1rem;
}

.summary-item i {
    color: #f7b731;
    font-size: 1.1rem;
    width: 24px;
}

.summary-item span {
    font-weight: 500;
}

.btn-continue-passengers {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 183, 49, 0.35);
}

.btn-continue-passengers:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 183, 49, 0.45);
}

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

/* Form Actions - Continue Button */
.form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn-continue {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 183, 49, 0.35);
}

.btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 183, 49, 0.45);
}

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

/* Excursion Header with Passenger Badge */
.excursion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.excursion-header h2 {
    margin: 0;
    left: 0;
    transform: none;
}

.passenger-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(247, 183, 49, 0.15) 0%, rgba(249, 115, 22, 0.1) 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    border: 1px solid rgba(247, 183, 49, 0.3);
}

.passenger-badge i {
    color: #f7b731;
}

.passenger-badge span {
    font-weight: 600;
    color: #333;
}

.change-passengers-btn {
    background: transparent;
    border: none;
    color: #f97316;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-passengers-btn:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: scale(1.1);
}

/* Pricing info in excursion cards */
.card-pricing-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(247, 183, 49, 0.08);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.card-pricing-info i {
    color: #f7b731;
}

/* Responsive styles for passenger selector */
@media (max-width: 768px) {
    .passenger-selector-container {
        padding: 1rem;
    }

    .passenger-selector {
        padding: 1.25rem;
    }

    .passenger-type {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .passenger-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .excursion-header {
        flex-direction: column;
        text-align: center;
    }

    .excursion-header h2 {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ==========================================
   VEHICLE FILTERING & RECOMMENDATIONS
   ========================================== */

/* Vehicle header with passenger badge */
.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vehicle-header .section-title {
    margin: 0;
}

.badge-separator {
    color: rgba(247, 183, 49, 0.5);
    margin: 0 0.25rem;
}

/* Vehicle recommendation badge */
.vehicle-recommendation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: linear-gradient(135deg, #f7b731 0%, #f97316 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 14px 14px 0 0;
}

.vehicle-card.vehicle-recommended .vehicle-recommendation {
    display: flex;
}

.vehicle-card.vehicle-recommended {
    border-color: #f7b731;
    box-shadow: 0 8px 30px rgba(247, 183, 49, 0.2);
    transform: scale(1.02);
}

.vehicle-card.vehicle-recommended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f7b731;
    border-radius: 16px;
    pointer-events: none;
}

/* Disabled vehicle (too small) */
.vehicle-card.vehicle-disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(50%);
    transform: scale(0.98);
}

.vehicle-card.vehicle-disabled::after {
    content: 'Too small for your group';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Vehicle specs */
.vehicle-specs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.75rem 0;
    padding: 0.5rem 0;
}

.vehicle-specs .spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #666;
    font-size: 0.9rem;
}

.vehicle-specs .spec i {
    color: #f7b731;
}

/* Vehicle description */
.vehicle-desc {
    color: #888;
    font-size: 0.85rem;
    margin: 0.5rem 0;
    text-align: center;
}

/* Adjust vehicle card to accommodate recommendation badge */
.vehicle-card {
    position: relative;
    padding-top: 1.8rem;
}

.vehicle-card.vehicle-recommended {
    padding-top: 0;
}

.vehicle-card.vehicle-recommended img {
    margin-top: 2.5rem;
}

/* Responsive adjustments for vehicle filtering */
@media (max-width: 768px) {
    .vehicle-header {
        flex-direction: column;
        text-align: center;
    }

    .vehicle-recommendation {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .vehicle-specs {
        gap: 1rem;
    }

    .vehicle-specs .spec {
        font-size: 0.85rem;
    }
}