/* ============================================
   LUTON TRANSFER PAGE - DEDICATED CSS
   Theme: Red (#D32F2F) | Black (#1A1A1A) | White (#FFFFFF)
   ============================================ */

/* ===== HERO SECTION ===== */
.airport-hero {
    height: 70vh;
    min-height: 520px;
    position: relative;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
}

.airport-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #D32F2F;
}

.airport-hero .hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.airport-hero .hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 0.9s ease;
    font-weight: 800;
}

.airport-hero .hero-content p {
    font-size: 22px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    animation: fadeInUp 0.9s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SEO INTRO SECTION ===== */
.airport-seo {
    padding: 70px 0 50px;
    background: #FFFFFF;
}

.airport-seo h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 14px;
}

.airport-seo h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: #D32F2F;
    border-radius: 3px;
}

.airport-seo p {
    font-size: 17px;
    line-height: 1.8;
    color: #3A3A3A;
    margin-bottom: 30px;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 60px 0;
    background: #F8F8F8;
}

.benefits-section h2 {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 16px;
}

.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D32F2F;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #FFFFFF;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #EEEEEE;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #D32F2F;
    box-shadow: 0 15px 30px rgba(211,47,47,0.1);
}

.benefit-card i {
    font-size: 48px;
    color: #D32F2F;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* ===== DISTANCE SECTION ===== */
.distance-section {
    padding: 70px 0;
    background: #FFFFFF;
}

.distance-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.distance-section h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.distance-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D32F2F;
}

.distance-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 35px;
}

.distance-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #D32F2F;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* ===== VEHICLES SECTION ===== */
.vehicles-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #FEF6F6 0%, #FFFFFF 100%);
    text-align: center;
}

.vehicles-section h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.vehicles-section > .container > p {
    font-size: 18px;
    color: #4A4A4A;
    margin-bottom: 45px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.vehicle-card {
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #EEEEEE;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: #D32F2F;
    box-shadow: 0 10px 25px rgba(211,47,47,0.1);
}

.vehicle-card i {
    font-size: 52px;
    color: #D32F2F;
    margin-bottom: 15px;
}

.vehicle-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.vehicle-card p {
    font-size: 14px;
    color: #777;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: #1A1A1A;
    text-align: center;
    color: #FFFFFF;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #D32F2F;
    color: #FFFFFF;
    padding: 14px 38px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #D32F2F;
}

.btn-book-now:hover {
    background: transparent;
    color: #D32F2F;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(211,47,47,0.2);
}

.cta-section .btn-book-now {
    background: #D32F2F;
    border-color: #D32F2F;
    font-size: 18px;
    padding: 16px 42px;
}

.cta-section .btn-book-now:hover {
    background: transparent;
    color: #D32F2F;
}

/* ===== BOOKING FORM SECTION ===== */
.booking-section-airport {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    position: relative;
}

.booking-section-airport::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #D32F2F;
}

.booking-wrapper-airport {
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid #EEEEEE;
}

.booking-header-airport {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header-airport h2 {
    font-size: 36px;
    color: #1A1A1A;
    margin-bottom: 10px;
    font-weight: 800;
}

.booking-header-airport h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #D32F2F;
    margin: 15px auto 0;
    border-radius: 2px;
}

.booking-header-airport p {
    color: #666666;
    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: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-airport input,
.form-group-airport select,
.form-group-airport textarea {
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group-airport input:focus,
.form-group-airport select:focus,
.form-group-airport textarea:focus {
    outline: none;
    border-color: #D32F2F;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.booking-submit-airport {
    background: #D32F2F;
    color: #FFFFFF;
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    border: 2px solid #D32F2F;
}

.booking-submit-airport:hover {
    background: transparent;
    color: #D32F2F;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

/* ===== INTERNAL LINKS ===== */
.internal-links {
    padding: 45px 0;
    background: #FFFFFF;
    text-align: center;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.internal-links p {
    font-size: 17px;
    color: #2C2C2C;
}

.internal-links a {
    color: #D32F2F;
    text-decoration: none;
    font-weight: 700;
    margin: 0 6px;
    transition: all 0.2s;
}

.internal-links a:hover {
    text-decoration: underline;
    color: #B71C1C;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: #F9F9F9;
}

.faq-section h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 55px;
    position: relative;
    padding-bottom: 18px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D32F2F;
    border-radius: 2px;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E8E8E8;
    overflow: hidden;
    transition: all 0.25s;
}

.accordion-item:hover {
    border-color: #D32F2F;
}

.accordion-item.active {
    border-color: #D32F2F;
    box-shadow: 0 12px 28px rgba(211,47,47,0.08);
}

.accordion-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #1A1A1A;
    background: #FFFFFF;
    transition: 0.2s;
}

.accordion-header:hover {
    color: #D32F2F;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: #D32F2F;
    font-size: 18px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #FFFFFF;
}

.accordion-item.active .accordion-content {
    padding: 0 28px 24px 28px;
    max-height: 220px;
    border-top: 1px solid #F0F0F0;
}

.accordion-content p {
    color: #555555;
    line-height: 1.65;
    font-size: 16px;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .airport-hero {
        height: 60vh;
        min-height: 480px;
    }
    .airport-hero .hero-content h1 {
        font-size: 44px;
    }
    .airport-hero .hero-content p {
        font-size: 18px;
    }
    .benefits-section h2,
    .distance-section h2,
    .vehicles-section h2 {
        font-size: 30px;
    }
    .cta-section h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .airport-hero {
        height: 55vh;
        min-height: 420px;
    }
    .airport-hero .hero-content h1 {
        font-size: 32px;
    }
    .airport-hero .hero-content p {
        font-size: 16px;
    }
    .airport-seo h2 {
        font-size: 28px;
    }
    .benefits-section h2,
    .distance-section h2,
    .vehicles-section h2 {
        font-size: 28px;
    }
    .benefits-grid,
    .vehicles-grid {
        gap: 20px;
    }
    .distance-stats {
        gap: 30px;
    }
    .stat-number {
        font-size: 34px;
    }
    .cta-section h2 {
        font-size: 28px;
    }
    .cta-section p {
        font-size: 18px;
    }
    .faq-section h2 {
        font-size: 30px;
    }
    .accordion-header {
        font-size: 16px;
        padding: 18px 22px;
    }
}

@media (max-width: 480px) {
    .airport-hero .hero-content h1 {
        font-size: 26px;
    }
    .btn-book-now {
        padding: 12px 28px;
        font-size: 14px;
    }
    .benefit-card {
        padding: 20px 15px;
    }
    .benefit-card i {
        font-size: 36px;
    }
    .benefit-card h3 {
        font-size: 18px;
    }
    .distance-stats {
        flex-direction: column;
        gap: 15px;
    }
    .accordion-header {
        padding: 14px 18px;
    }
    .accordion-item.active .accordion-content {
        padding: 0 18px 18px 18px;
    }
}