/* ========================================
   Airlines Marquee
======================================== */
.airlines-marquee-container {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin: 2rem 0;
}

[data-theme="dark"] .airlines-marquee-container,
[data-theme="dark"] .airline-logo,
[data-theme="dark"] .cruise-card {
    color: #000000;
    --text-primary: #000000;
    --text-secondary: #000000;
}

.airlines-marquee {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.airline-logo {
    background: white;
    color: var(--primary-color);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.airline-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(0, 168, 107, 0.05));
    z-index: 0;
}

.airline-logo span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.airline-logo i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.airline-logo img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.airline-logo:hover {
    transform: scale(1.08);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.25);
}

/* Pause animation on hover */
.airlines-marquee-container:hover .airlines-marquee {
    animation-play-state: paused;
}

/* ========================================
   Cruise Card
======================================== */
.cruise-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.cruise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.cruise-image {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.1), rgba(0, 168, 107, 0.1));
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cruise-body {
    padding: 2rem;
}

.cruise-body h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cruise-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* RTL Support */
body[dir="rtl"] .airlines-marquee {
    animation: marquee-rtl 30s linear infinite;
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}
