/* ============================================================
   about-ar.css — Styles specific to the Arabic About Us page
   (page-hero styles here are reusable for all inner pages)
   ============================================================ */

/* =============================================
   PAGE HERO — Premium Inner Page Header
   =============================================*/
.page-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 88px;
}

/* Background image with slow zoom */
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
    transform: scale(1.08);
    animation: heroZoom 24s ease-in-out infinite alternate;
}

/* Multi-layer overlay: dark left gradient + bottom fade */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,  rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.2) 100%),
        linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    z-index: 1;
}

/* Geometric corner accent — top-right gold lines */
.page-hero::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 180px;
    height: 180px;
    border-top: 1px solid rgba(212,175,55,0.35);
    border-left: 1px solid rgba(212,175,55,0.35);
    z-index: 2;
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    border-right: 1px solid rgba(212,175,55,0.2);
    z-index: 2;
    pointer-events: none;
}

/* Content wrapper */
.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 12px;
}
.page-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.page-breadcrumb a:hover { color: white; }
.page-breadcrumb .sep { color: #444; }

/* Page tag chip above title */
.page-tag {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    margin-bottom: 12px;
}

/* Main heading */
.page-hero-content h1 {
    font-size: 3.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 0;
}

/* Gold accent line under heading */
.page-title-line {
    width: 70px;
    height: 3px;
    background: linear-gradient(to left, var(--gold), transparent);
    margin: 15px 0;
}

/* Sub-description */
.page-hero-content .page-desc {
    font-size: 1.05rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 550px;
}

/* Quick-stat chips row */
.page-stats {
    display: flex;
    gap: 0;
    flex-direction: row-reverse;
}
.page-stat-chip {
    padding: 14px 28px;
    border: 1px solid rgba(212,175,55,0.25);
    border-right: none;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    text-align: center;
    transition: 0.3s;
}
.page-stat-chip:last-child { border-right: 1px solid rgba(212,175,55,0.25); }
.page-stat-chip:hover { background: rgba(212,175,55,0.08); }
.page-stat-chip strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.page-stat-chip span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-content h1 { font-size: 2.2rem; }
    .page-stats { flex-wrap: nowrap; overflow-x: auto; margin-top: 15px; padding-bottom: 5px; }
    .page-stat-chip { flex: 1; min-width: 100px; padding: 10px 15px; border-right: 1px solid rgba(212,175,55,0.25); }
    .page-stat-chip strong { font-size: 1.3rem; }
    .page-hero::before { display: none; }
}

/* ===== MISSION & VISION ===== */
.mv-section { background: #0c0c0c; }
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.mv-card {
    background: var(--black);
    border: 1px solid #222;
    padding: 40px 35px;
    text-align: center;
    transition: 0.4s;
}
.mv-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-6px);
}
.featured-mv {
    border-color: var(--gold);
    background: rgba(212,175,55,0.04);
}
.mv-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.mv-card h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 15px;
}
.mv-card p { color: #888; line-height: 1.9; font-size: 0.97rem; }

/* ===== CORE VALUES ===== */
.values-section { background: var(--dark-grey); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}
.value-item {
    padding: 35px 30px;
    border: 1px solid #1e1e1e;
    background: rgba(255,255,255,0.02);
    position: relative;
    transition: 0.3s;
}
.value-item:hover { border-color: rgba(212,175,55,0.35); background: rgba(212,175,55,0.03); }
.value-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212,175,55,0.12);
    position: absolute;
    top: 15px;
    left: 20px;
    line-height: 1;
}
.value-item h4 { font-size: 1.25rem; color: var(--gold); margin-bottom: 12px; }
.value-item p { color: #777; font-size: 0.93rem; line-height: 1.8; }

/* ===== TIMELINE ===== */
.timeline-section { background: var(--black); }
.timeline {
    position: relative;
    margin-top: 60px;
    padding-right: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.tl-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    flex-direction: row-reverse;
    text-align: right;
}
.tl-dot {
    position: absolute;
    right: -39px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--black);
    flex-shrink: 0;
}
.tl-year {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    min-width: 70px;
    text-align: right;
    padding-top: 2px;
}
.tl-content { flex: 1; }
.tl-content h4 { color: white; font-size: 1.15rem; margin-bottom: 8px; }
.tl-content p { color: #777; font-size: 0.93rem; line-height: 1.8; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: #0c0c0c; }
.why-inner {
    display: flex;
    gap: 70px;
    align-items: center;
    flex-direction: row-reverse;
}
.why-text { flex: 1; }
.why-text p { color: #aaa; line-height: 1.9; margin-bottom: 30px; }
.why-list { list-style: none; margin-top: 0; }
.why-list li { padding: 10px 0; border-bottom: 1px solid #1a1a1a; color: #ccc; font-size: 1rem; }
.why-list li:last-child { border-bottom: none; }
.why-img {
    flex: 1;
    position: relative;
}
.why-img img {
    width: 100%;
    border: 1px solid #333;
    filter: grayscale(20%);
    transition: 0.5s;
}
.why-img img:hover { filter: grayscale(0%); }
.why-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: var(--dark-grey);
    border: 1px solid var(--gold);
    padding: 20px 30px;
    text-align: center;
}
.why-badge p { color: #aaa; font-size: 12px; margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0d0b00 0%, #1a1500 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding: 80px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row-reverse;
}
.cta-text { flex: 1; }
.cta-text p { color: #aaa; font-size: 1.05rem; line-height: 1.9; margin-top: 15px; }
.cta-btns { display: flex; gap: 15px; flex-shrink: 0; flex-direction: row-reverse; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .why-inner { flex-direction: column; }
    .why-badge { left: 10px; bottom: 10px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-btns { justify-content: center; }
}
@media (max-width: 768px) {
    .page-hero { height: 300px; }
    .page-hero-content h1 { font-size: 2.5rem; }
    .tl-item { flex-direction: column; padding-right: 40px; }
    .tl-year { font-size: 1.3rem; }
    .values-grid, .mv-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
}
