/* =============================================================
   SECTION — About (front page snippet + full about page)
   ============================================================= */

/* ── Front Page About Snippet ──────────────────────────────── */

#about-section {
    padding: 100px 0;
    background: var(--brand-black);
    color: #fff;
    direction: rtl;
    position: relative;
}

.about-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text-col {
    flex: 1;
    min-width: 320px;
}

.about-text-col h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-text-col h2 span { color: var(--brand-bronze); }

.about-text-col p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #888;
    font-weight: 300;
    margin-bottom: 25px;
}

.about-stats-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.about-stat {
    flex: 1;
    border-right: 3px solid var(--brand-bronze);
    padding: 18px 18px 18px 12px;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-stat h4 { color: #fff; margin: 0; }
.about-stat p  { color: #666; margin: 0; font-size: 0.9rem; }
.about-stat .sparkle-counter {
    display: inline;
    color: inherit;
    font-size: inherit;
    margin: 0;
}

.about-image-col {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.about-image-frame {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(225, 169, 115, 0.3);
}

.about-reel-frame {
    max-width: 430px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 34px;
    background:
        linear-gradient(var(--brand-black), var(--brand-black)) padding-box,
        linear-gradient(145deg, var(--brand-bronze-dark), var(--brand-bronze-light), var(--brand-bronze)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 16px 45px rgba(225, 169, 115, 0.14);
}

.about-reel-frame::before {
    content: "";
    display: block;
    width: 74px;
    height: 5px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.about-reel-phone {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}

.about-image-frame img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
}

.about-instagram-reel {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 0;
    border: 0;
    background: var(--brand-black);
    pointer-events: none;
}

.about-reel-source-link {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(var(--brand-black-rgb), 0.88);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.about-image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--brand-bronze);
    border-radius: 20px;
    z-index: 1;
}

/* ── Vision / Mission Grid ─────────────────────────────────── */

#vision-mission {
    padding: 60px 0 100px;
    background: var(--brand-black);
    direction: rtl;
}

.vision-mission-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vm-card {
    background: rgba(225, 169, 115, 0.04);
    border: 1px solid rgba(225, 169, 115, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: 0.4s;
    text-align: center;
}
.vm-card:hover { border-color: var(--brand-bronze); }

.vm-card h3 {
    color: var(--brand-bronze);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.vm-card p,
.vm-card ul {
    color: #888;
    line-height: 1.8;
    font-weight: 300;
}
.vm-card ul { list-style: none; padding: 0; }

/* ── Full About Page ───────────────────────────────────────── */

.about-container-premium {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.about-hero-section {
    text-align: center;
    margin-bottom: 80px;
}
.about-hero-section p {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 300;
    color: #eee;
}

/* Vision/Mission glassmorphism (about page) */
.vision-mission-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.icon-premium-wrap {
    font-size: 35px;
    margin-bottom: 25px;
}

/* Team grid */
.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.premium-member-card {
    background: var(--brand-black);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255,255,255,0.03);
}
.premium-member-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(225, 169, 115, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.member-image-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
}
.member-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.8s ease;
}
.premium-member-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.member-info-premium {
    padding: 35px;
    text-align: center;
}
.member-role {
    color: var(--brand-bronze);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.image-shine-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s ease;
}
.premium-member-card:hover .image-shine-overlay { left: 100%; }

.section-title-premium {
    color: var(--gold-primary);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}
