/* Airline Partners Section - UK Focused, Pure Logo Design */
.airline-partners-section {
    padding: 70px 0;
    background: #f5f8ff;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* UK Accents */
.uk-accents {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    gap: 8px;
    opacity: 0.1;
    z-index: 1;
}

.uk-flag-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5170FF;
}

.uk-flag-dot:nth-child(2) {
    background: #FD8F50;
}

.uk-flag-dot:nth-child(3) {
    background: #ffffff;
    border: 2px solid #5170FF;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #5170FF;
    background: rgba(81, 112, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .primary {
    color: #5170FF;
    position: relative;
    display: inline-block;
}



.section-title .secondary {
    color: #FD8F50;
}

.section-description {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

/* Boarding Pass Slider */
.boarding-pass-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.slider-track {
    display: flex;
    gap: 25px;
    animation: smoothScroll 40s linear infinite;
    will-change: transform;
}

.slider-track:hover {
    animation-play-state: paused;
}

/* Boarding Pass Card - Simplified Logo Focus */
.boarding-pass {
    flex: 0 0 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.boarding-pass:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(81, 112, 255, 0.15);
}

/* Boarding Pass Header - UK Airport Focus */
.pass-header {
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.airline-code {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.uk-badge {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.uk-badge::before {
    content: '🇬🇧';
    font-size: 12px;
}

/* Boarding Pass Content - Pure Logo Area */
.pass-content {
    padding: 35px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    min-height: 160px;
}

.airline-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airline-logo img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.boarding-pass:hover .airline-logo img {
    transform: scale(1.05);
}

.logo-fallback {
    font-size: 24px;
    font-weight: 700;
    color: #5170FF;
    text-align: center;
    padding: 15px;
    background: #f0f4ff;
    border-radius: 12px;
    width: 100%;
}

/* Boarding Pass Footer - UK Routes */
.pass-footer {
    padding: 12px 20px;
    background: #f8faff;
    border-top: 1px solid #eef2f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-airport {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.footer-airport span {
    color: #5170FF;
    font-weight: 700;
}

.flight-icon {
    color: #FD8F50;
    font-size: 14px;
}

.partner-badge {
    background: #FD8F50;
    color: white;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 600;
}

/* Statistics Grid - UK Focused */
.airline-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(81, 112, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.05);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #5a6a7e;
    font-weight: 500;
}

/* Animation */
@keyframes smoothScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-305px * 7));
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .boarding-pass {
        flex: 0 0 260px;
    }
    
    .pass-content {
        padding: 30px 20px;
        min-height: 140px;
    }
    
    .airline-logo img {
        max-width: 160px;
        max-height: 70px;
    }
    
    @keyframes smoothScroll {
        100% {
            transform: translateX(calc(-285px * 7));
        }
    }
    
    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .airline-partners-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-tag {
        font-size: 12px;
    }
    
    .section-description {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .boarding-pass {
        flex: 0 0 240px;
    }
    
    .pass-header {
        padding: 12px 16px;
    }
    
    .airline-code {
        font-size: 20px;
    }
    
    .uk-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .pass-content {
        padding: 25px 15px;
        min-height: 130px;
    }
    
    .airline-logo img {
        max-width: 140px;
        max-height: 60px;
    }
    
    .logo-fallback {
        font-size: 20px;
    }
    
    .footer-airport {
        font-size: 12px;
    }
    
    .airline-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    @keyframes smoothScroll {
        100% {
            transform: translateX(calc(-265px * 7));
        }
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .boarding-pass {
        flex: 0 0 220px;
    }
    
    .airline-code {
        font-size: 18px;
    }
    
    .uk-badge {
        font-size: 9px;
        padding: 2px 8px;
    }
    
    .pass-content {
        padding: 20px 12px;
        min-height: 120px;
    }
    
    .airline-logo img {
        max-width: 130px;
        max-height: 50px;
    }
    
    .logo-fallback {
        font-size: 18px;
        padding: 12px;
    }
    
    .footer-airport {
        font-size: 11px;
        gap: 4px;
    }
    
    .partner-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .stat-icon {
        width: 44px;
        height: 44px;
    }
    
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    @keyframes smoothScroll {
        100% {
            transform: translateX(calc(-245px * 7));
        }
    }
    
    .uk-accents {
        display: none;
    }
}