/* ===== AIRPORT TRANSFER PAGE STYLES ===== */

/* Hero Section */
.airport-hero {
    height: 80vh;
    min-height: 500px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 0;
}
.airport-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.airport-hero .hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.airport-hero .hero-content p {
    font-size: 22px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Need Help Card Component */
.help-card {
    background: linear-gradient(135deg, #ffcc00 0%, #f5b800 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.3);
}

.help-card .help-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help-card .help-icon i {
    font-size: 28px;
    color: #000;
}

.help-card h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.help-card p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.help-card .phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    margin-top: 15px;
}

.help-card .phone-number i {
    font-size: 28px;
}

/* Section 1 - Catch Your Flight */
.catch-flight-section {
    padding: 80px 0;
    background: #fff;
}

.catch-flight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.catch-flight-content h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.catch-flight-content h2 span {
    color: #ffcc00;
    display: block;
    font-size: 32px;
    margin-top: 5px;
}

.catch-flight-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.btn-book-now {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-book-now:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

/* Section 2 - Your Choice */
.choice-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.choice-content h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.choice-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.event-link {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-link:hover {
    color: #e6b800;
    text-decoration: underline;
}

/* Section 3 - Meet & Greet */
.meet-greet-section {
    padding: 80px 0;
    background: #fff;
}

.meet-greet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.bullet-list li i {
    color: #ffcc00;
    font-size: 18px;
    width: 24px;
}

/* Booking Form Section */
.booking-section-airport {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.booking-wrapper-airport {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.booking-header-airport {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header-airport h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.booking-header-airport p {
    color: #666;
    font-size: 18px;
}

.booking-form-airport {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-airport {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group-airport {
    display: flex;
    flex-direction: column;
}

.form-group-airport label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group-airport input,
.form-group-airport select,
.form-group-airport textarea {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group-airport input:focus,
.form-group-airport select:focus,
.form-group-airport textarea:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 0 3px rgba(255,204,0,0.1);
}

.booking-submit-airport {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.booking-submit-airport:hover {
    background: #e6b800;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255,204,0,0.3);
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: #fff;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.consultation-left {
    position: relative;
}

.consultation-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.consultation-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.consultation-image:hover img {
    transform: scale(1.05);
}

.consultation-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.consultation-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.consultation-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-consult {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-consult:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,204,0,0.3);
}

/* FAQ Accordion */
.faq-right h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 2px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #ffcc00;
}

.accordion-header {
    background: #f8f9fa;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: #ffcc00;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 200px;
    border-top: 2px solid #eee;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .catch-flight-grid,
    .choice-grid,
    .meet-greet-grid,
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .catch-flight-content h2 {
        font-size: 36px;
    }
    
    .booking-wrapper-airport {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .airport-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .airport-hero .hero-content h1 {
        font-size: 42px;
    }
    
    .airport-hero .hero-content p {
        font-size: 18px;
    }
    
    .catch-flight-content h2 {
        font-size: 32px;
    }
    
    .catch-flight-content h2 span {
        font-size: 24px;
    }
    
    .booking-header-airport h2 {
        font-size: 28px;
    }
    
    .form-row-airport {
        grid-template-columns: 1fr;
    }
    
    .consultation-card {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .airport-hero .hero-content h1 {
        font-size: 32px;
    }
    
    .help-card .phone-number {
        font-size: 20px;
    }
    
    .btn-book-now {
        width: 100%;
        text-align: center;
    }
}