/* =====================================================
   AZAL Airlines - Premium About Us Page
   ===================================================== */
@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 ========== */
.about-hero-new {
    position: relative;
    height: 55vh;
    min-height: 400px;
    background-image: url('../../images/clean-hero.jpg'); /* Use the clean hero image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    direction: rtl;
}

.hero-overlay-gradient {
    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.6) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.about-subtitle {
    color: #d4a017;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}

.about-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.2;
}

.about-desc {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

/* ========== ABOUT MAIN & GLASS CARDS ========== */
.about-main-section {
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Overlap the hero section */
    padding-bottom: 80px;
    direction: rtl;
}

.about-flex-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text-column {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(10, 31, 74, 0.08);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 160, 23, 0.1);
    color: #d4a017;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: #020c24;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.15rem;
    color: #0a1f4a;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sub-text {
    font-size: 1rem;
    color: #6c7a9c;
    line-height: 1.8;
}

/* Glass Cards Column */
.about-cards-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px; /* Offset to look dynamic */
}

.premium-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(10, 31, 74, 0.05);
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.premium-glass-card:hover {
    transform: translateX(-10px); /* Move left on hover in RTL */
    background: rgba(255, 255, 255, 1);
}

.card-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #0a1f4a;
    color: #d4a017;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-wrapper svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.5;
}

.card-text-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #020c24;
    margin-bottom: 10px;
}

.card-text-wrapper p {
    font-size: 0.95rem;
    color: #6c7a9c;
    line-height: 1.7;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-us-section {
    padding: 80px 0;
    background: #ffffff;
    direction: rtl;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #020c24;
    margin-bottom: 15px;
}

.section-header-center p {
    color: #6c7a9c;
    font-size: 1.1rem;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card-premium {
    background: #f4f7fa;
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.feature-card-premium:hover {
    background: #ffffff;
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: 0 20px 40px rgba(10, 31, 74, 0.08);
    transform: translateY(-15px);
}

.feature-icon-premium {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a017;
    box-shadow: 0 10px 20px rgba(10, 31, 74, 0.05);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
    background: #0a1f4a;
    color: #d4a017;
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-premium svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.feature-card-premium h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #020c24;
    margin-bottom: 15px;
}

.feature-card-premium p {
    color: #6c7a9c;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== HERO STAT BADGE ========== */
.hero-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #d4a017;
    line-height: 1;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ========== WORK PROCESS SECTION ========== */
.work-process-section {
    padding: 80px 0;
    background: #f4f7fa;
    direction: rtl;
}

.process-timeline {
    display: flex;
    gap: 30px;
    position: relative;
    margin-top: 20px;
}

/* Connecting line behind steps */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 60px;
    left: 60px;
    height: 3px;
    background: linear-gradient(to left, #d4a017, rgba(212, 160, 23, 0.2));
    z-index: 0;
}

.process-step {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(10, 31, 74, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 31, 74, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0a1f4a, #020c24);
    color: #d4a017;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(10, 31, 74, 0.15);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #020c24;
    margin-bottom: 12px;
}

.step-content p {
    color: #6c7a9c;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== STATS SECTION ========== */
.stats-section-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #020c24, #0a1f4a);
    direction: rtl;
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a017;
}

.stat-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.stat-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-lbl {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
}

/* ========== CTA PROFILE DOWNLOAD ========== */
.cta-profile-section {
    padding: 80px 0;
    background: #f4f7fa;
    direction: rtl;
}

.cta-profile-box {
    background: linear-gradient(135deg, #020c24, #0a1f4a);
    border-radius: 24px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-profile-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.1);
    box-shadow: 0 0 0 40px rgba(212, 160, 23, 0.05),
                0 0 0 80px rgba(212, 160, 23, 0.03);
}

.cta-profile-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-profile-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
}

.btn-gold-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #d4a017, #e6b32b);
    color: #020c24 !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
    flex-shrink: 0;
}

.btn-gold-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.4);
}

.btn-gold-cta svg {
    stroke-width: 2;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-flex-container {
        flex-direction: column;
    }
    .about-cards-column {
        margin-top: 0;
        width: 100%;
    }
    .features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-title {
        font-size: 3rem;
    }
    .stats-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline {
        flex-direction: column;
    }
    .process-timeline::before {
        display: none;
    }
    .cta-profile-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .cta-profile-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .about-hero-new {
        height: 45vh;
        min-height: 320px;
        background-attachment: scroll;
    }
    .about-title { font-size: 2.2rem; }
    .about-subtitle { font-size: 1rem; }
    .about-desc { font-size: 1rem; }
    .about-hero-content { max-width: 100%; padding: 0 10px; }
    
    /* Main Section */
    .about-main-section { padding: 30px 0; }
    .about-flex-container { flex-direction: column; gap: 30px; }
    .about-text-column { padding: 25px 15px; }
    .about-text-column h2 { font-size: 1.5rem; }
    .about-text-column p { font-size: 0.9rem; line-height: 1.7; }
    
    /* Glass Cards */
    .premium-glass-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    .card-icon-wrapper { margin: 0 auto; width: 55px; height: 55px; }
    .premium-glass-card h3 { font-size: 1.2rem; }
    .premium-glass-card p { font-size: 0.85rem; }
    
    /* Features */
    .features-grid-premium { grid-template-columns: 1fr; gap: 15px; }
    .premium-feature-card { padding: 25px 15px; }
    .premium-feature-card h4 { font-size: 1rem; }
    .premium-feature-card p { font-size: 0.85rem; }
    
    /* Stats */
    .hero-stat-badge { flex-direction: column; gap: 5px; text-align: center; }
    .stats-grid-premium { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-num { font-size: 1.8rem; }
    .stat-label { font-size: 0.8rem; }
    
    /* CTA */
    .cta-banner { min-height: 220px; }
    .cta-content h2 { font-size: 1.6rem !important; }
    .cta-content p { font-size: 0.95rem !important; }
    .btn-gold { padding: 12px 25px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .about-hero-new { height: 40vh; min-height: 280px; }
    .about-title { font-size: 1.8rem; }
    .about-desc { font-size: 0.85rem; }
    .about-text-column { padding: 20px 10px; }
    .about-text-column h2 { font-size: 1.3rem; }
    .stats-grid-premium { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-num { font-size: 1.5rem; }
    .premium-glass-card { padding: 20px 12px; }
    .cta-content h2 { font-size: 1.3rem !important; }
    .btn-gold { padding: 10px 20px; font-size: 0.9rem; }
}
