/* International Taxi Page Specific Styles */

/* Page Header */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    color: white !important;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Remove Blue Colors and Add Orange Theme */
.services {
    background: linear-gradient(135deg, #ff5800, #e04900) !important;
    color: white;
    padding: 80px 0;
}

.section-header h2 {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-header p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.1rem;
}

/* Tour Cards Styling */
.tour-card {
    background: linear-gradient(135deg, #ffffff, #fff8f0) !important;
    border: 2px solid #ff5800 !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 88, 0, 0.2) !important;
    transition: all 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 88, 0, 0.3) !important;
}

.tour-image {
    background: linear-gradient(135deg, #ff5800, #e04900) !important;
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-image i {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tour-badge {
    background: linear-gradient(135deg, #ffcc00, #ffd700) !important;
    color: #333 !important;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #ff5800, #e04900) !important;
    border: none !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e04900, #cc4100) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 88, 0, 0.4) !important;
}

/* Option Cards */
.option-card {
    background: linear-gradient(135deg, #ffffff, #fff8f0) !important;
    border: 2px solid #ff5800 !important;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 88, 0, 0.1) !important;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 88, 0, 0.2) !important;
}

.option-card i {
    font-size: 3rem !important;
    color: #ff5800 !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 88, 0, 0.2);
}

.option-card h3 {
    color: #333 !important;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.option-card p {
    color: #666 !important;
    line-height: 1.6;
}

/* Car Cards */
.car-card {
    background: linear-gradient(135deg, #ffffff, #fff8f0) !important;
    border: 2px solid #ff5800 !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 88, 0, 0.1) !important;
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 88, 0, 0.2) !important;
}

.car-price {
    color: #ff5800 !important;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(255, 88, 0, 0.2);
}

.spec-item i {
    color: #ff5800 !important;
}

/* Form Styling */
.booking-form-section {
    background: linear-gradient(135deg, #fff8f0, #ffffff) !important;
    border: 2px solid #ff5800;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(255, 88, 0, 0.1);
}

.booking-form-section h2 {
    color: #ff5800 !important;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(255, 88, 0, 0.2);
}

.input-field {
    border: 2px solid #ff5800 !important;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-field:focus {
    outline: none !important;
    border-color: #e04900 !important;
    box-shadow: 0 0 10px rgba(255, 88, 0, 0.3) !important;
}

/* Tour Content */
.tour-content h3 {
    color: #333 !important;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tour-duration {
    color: #ff5800 !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tour-duration i {
    color: #ff5800 !important;
}

.tour-description {
    color: #666 !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tour-includes li i {
    color: #28a745 !important;
}

.tour-price {
    color: #ff5800 !important;
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .tour-image {
        height: 100px;
        padding: 1.5rem;
    }
    
    .tour-image i {
        font-size: 2rem !important;
    }
}

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

.tour-card,
.option-card,
.car-card {
    animation: fadeInUp 0.6s ease forwards;
}

.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }