/* =====================================================
   AZAL Airlines - Premium Offers Page
   Matches the Grid/Glassmorphism design language
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

body {
    background-color: #f4f7fa;
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

/* ========== HERO SECTION ========== */
.offers-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, #020c24 0%, #0a1f4a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    direction: rtl;
}

.hero-circles {
    position: absolute;
    right: -10%;
    top: -50%;
    width: 60%;
    height: 200%;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.15);
    box-shadow: 0 0 0 40px rgba(212, 160, 23, 0.08),
                0 0 0 80px rgba(212, 160, 23, 0.05),
                0 0 0 120px rgba(212, 160, 23, 0.03);
    z-index: 1;
}

.offers-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to left, rgba(2, 12, 36, 0.95) 0%, rgba(10, 31, 74, 0.5) 100%);
    z-index: 2;
}

.hero-plane-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-right: 0;
    margin-left: auto;
}

.hero-subtitle {
    color: #d4a017;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

/* ========== OFFERS GRID WRAPPER ========== */
.offers-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 80px;
    direction: rtl;
}

.offers-container-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(10, 31, 74, 0.06);
}

.offers-header {
    text-align: center;
    margin-bottom: 50px;
}

.offers-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #020c24;
    margin-bottom: 10px;
}

.offers-header p {
    color: #6c7a9c;
    font-size: 1.1rem;
}

/* ========== OFFERS GRID ========== */
.offers-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card-full {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    display: block;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(10, 31, 74, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-card-full:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(10, 31, 74, 0.15);
}

.offer-card-full .offer-img-box {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.offer-card-full .offer-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.offer-card-full:hover .offer-img-box img {
    transform: scale(1.1);
}

.offer-card-full::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(2, 12, 36, 0.9) 0%, rgba(2, 12, 36, 0.2) 60%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.offer-city {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.offer-country {
    font-size: 1.1rem;
    color: #d4a017;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-country svg {
    width: 16px;
    height: 16px;
}

.offer-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.offer-price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.offer-price-value span {
    color: #d4a017;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .offers-grid-full { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .offers-hero { height: 45vh; min-height: 320px; }
    .hero-title { font-size: 2rem; line-height: 1.3; }
    .hero-subtitle { font-size: 1rem; }
    .hero-desc { font-size: 0.9rem; }
    .hero-content { max-width: 100%; padding: 0 10px; }
    .offers-container-box { padding: 30px 15px; border-radius: 20px; }
    .offers-header h2 { font-size: 1.5rem; }
    .offers-header p { font-size: 0.9rem; }
    .offers-grid-full { grid-template-columns: 1fr; gap: 20px; }
    .offer-card-full { height: 280px; }
    .offer-city { font-size: 1.5rem; }
    .offer-country { font-size: 0.95rem; }
    .offer-price-box { padding: 12px 15px; }
}

@media (max-width: 480px) {
    .offers-hero { height: 40vh; min-height: 280px; }
    .hero-title { font-size: 1.7rem; }
    .hero-desc { font-size: 0.8rem; }
    .offers-container-box { padding: 25px 12px; }
    .offer-card-full { height: 250px; }
    .offer-city { font-size: 1.3rem; }
    .offer-content { padding: 20px; }
}
