/* Route Detail Pages CSS */

/* Route Details Section */
.route-details {
    padding: 60px 0;
    background: #f8f9fa;
}

.route-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.route-card, .pricing-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.route-card h2, .pricing-card h2 {
    color: #FF6600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.route-data, .price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

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

.data-item strong {
    color: #FF6600;
    font-weight: 600;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FF6600;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.car-type {
    font-weight: 600;
    color: #333;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #FF6600;
}

/* Enhanced Pricing Table */
.pricing-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #FF6600;
    margin-bottom: 30px;
}

.pricing-header {
    background: linear-gradient(135deg, #FF6600, #E55A00);
    color: white;
    padding: 20px;
    text-align: center;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-body {
    padding: 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.pricing-row:hover {
    background: #f8f9fa;
}

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

.car-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.car-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.car-specs {
    color: #666;
    font-size: 0.9rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FF6600;
}

.price-note {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
}

/* Professional Fare Table */
.fare-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #FF6600;
    margin-bottom: 30px;
}

.fare-header {
    background: linear-gradient(135deg, #FF6600, #E55A00);
    color: white;
    padding: 20px;
    text-align: center;
}

.fare-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.fare-table-wrapper {
    overflow-x: auto;
}

.fare-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.fare-table th {
    background: #f8f9fa;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.9rem;
}

.fare-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 0.9rem;
}

.fare-table tr:hover {
    background: #f8f9fa;
}

.fare-table .vehicle-name {
    font-weight: 600;
    color: #333;
}

.fare-table .rate {
    color: #FF6600;
    font-weight: 600;
}

.fare-table .cost {
    color: #FF6600;
    font-weight: bold;
    font-size: 1rem;
}

.fare-table .trip-type {
    background: #e8f5e8;
    color: #2d5a2d;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Places to Visit Section */
.places-to-visit {
    margin-bottom: 50px;
}

.places-to-visit h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #FF6600;
    font-size: 2rem;
}

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

.place-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.place-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.place-item i {
    font-size: 2.5rem;
    color: #FF6600;
    margin-bottom: 15px;
}

.place-item h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.place-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Service Features Section */
.service-features {
    margin-bottom: 50px;
}

.service-features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #FF6600;
    font-size: 2rem;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #FF6600;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #FF6600;
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #FF6600;
    font-size: 2rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input, .form-row select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-row input:focus, .form-row select:focus {
    outline: none;
    border-color: #FF6600;
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.booking-form textarea:focus {
    outline: none;
    border-color: #FF6600;
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

.btn-primary {
    background: #FF6600;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #E55A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .route-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
    }
    
    .price-tag {
        align-self: flex-end;
    }
    
    .fare-table-wrapper {
        overflow-x: auto;
    }
    
    .fare-table th,
    .fare-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .route-card, .pricing-card {
        padding: 20px;
    }
    
    .places-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-section {
        padding: 25px 20px;
    }
    
    .places-to-visit h2, .service-features h2, .booking-section h2 {
        font-size: 1.5rem;
    }
    
    .place-item, .feature-item {
        padding: 20px;
    }
    
    .place-item i, .feature-item i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .route-details {
        padding: 40px 0;
    }
    
    .route-card, .pricing-card {
        padding: 15px;
    }
    
    .booking-section {
        padding: 20px 15px;
    }
    
    .places-to-visit h2, .service-features h2, .booking-section h2 {
        font-size: 1.3rem;
    }
}