/* ============ NAVBAR BASE ============ */
.farah-navbar{
    position:fixed;
    top:0; left:0; width:100%;
    z-index:50;
    display:flex;
    justify-content:center;
    padding-top:16px;
}
.navbar-space {
    padding-top: 9rem;
}
.nav-wrapper{
    width:93%;
    min-height: 70px;
    max-width: 1300px;
    padding: 0 22px;
    border-radius:9999px;
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.04),
        0 2px 8px rgba(0,0,0,0.03);
    transition:all .35s ease;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.nav-glass{
    backdrop-filter:blur(14px);
    background:rgba(255,255,255,0.68);
    border:1px solid rgba(255,255,255,0.35);
    box-shadow:0 20px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}

.nav-logo {
    width: 265px;
}

html[dir="rtl"] .nav-logo {
    width: 235px;
}

/* ============ MENU ============ */
.nav-menu{
    list-style:none;
    padding:0; margin:0;
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-item{position:relative;padding: 20px 0;}

.nav-link{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    font-size:15px;
    color:#5b5b5b;
    cursor:pointer;
    background:transparent;
    border:none;
    padding:8px 10px;
    border-radius:12px;
    transition:.22s ease;
    text-decoration:none;
}

.nav-link:hover{
    color:#111;
    background:#f7f7f9;
}

.nav-dd-icon{
    width:18px; height:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:transform .22s ease;
    color:#111;
}

.nav-dd-icon svg{ width:18px; height:18px; }
.nav-dd-icon.is-open{ transform:rotate(180deg); }

/* Right */
.nav-right{
    display:flex;
    align-items:center;
    gap:14px;
}

.btn-cta{
    background:#000;
    color:#fff;
    padding:10px 22px;
    border-radius:9999px;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
    transition:opacity .2s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.btn-cta:hover{ opacity:.9; }

.lang-pill{
    width:40px;
    height:40px;
    border-radius:9999px;
    border:1px solid rgba(0,0,0,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    text-decoration:none;
    color:#111;
    transition:.2s ease;
}
.lang-pill:hover{ background:#f7f7f9; }

/* ============ DROPDOWNS ============ */
.dropdown{
    position:absolute;
    top: 69px;
    left:0;
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    border-radius:22px;
    box-shadow:0 32px 65px rgba(0,0,0,0.15);
    z-index:60;
    overflow:hidden;
}

.dropdown.mega{
    width: 800px;
    left: -140px;
    padding:22px;
    display:grid;
    grid-template-columns: 1.2fr 1.6fr 1fr;
    gap:18px;
    transform-origin:top center;
    animation:menuDrop .2s ease-out;
}

@keyframes menuDrop{
    from{ opacity:0; transform:translateY(10px) scale(.98); }
    to{ opacity:1; transform:translateY(0) scale(1); }
}

.mega-col{
    padding:10px;
}

.mega-head{
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin:0 0 12px 0;
    color:#111;
    opacity:.85;
}

.mega-link{
    display:flex;
    gap:12px;
    padding:10px 10px;
    border-radius:14px;
    text-decoration:none;
    color:#4b4b4b;
    transition:.2s ease;
}

.mega-link:hover{
    background:#f7f7ff;
    color:#111;
}

.mega-link:hover .mi{
    background:rgba(109,77,255,.12);
    color:#6D4DFF;
}

.mi{
    width:38px; height:38px;
    border-radius:14px;
    background:#f4f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    flex:0 0 38px;
    transition:.2s ease;
}
.mi svg{ width:20px; height:20px; }

.mt .ttl{
    display:block;
    font-weight:800;
    font-size:14px;
    line-height:1.15;
}
.mt .sub{
    display:block;
    font-size:12px;
    opacity:.75;
    margin-top:3px;
    line-height:1.2;
}

/* Support card */
.mega-support{
    border-radius:18px;
    border:1px solid rgba(0,0,0,.06);
    background:linear-gradient(180deg, rgba(109,77,255,.10), rgba(255,255,255,1));
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.sup-title{
    font-weight:900;
    font-size:15px;
    color:#111;
}
.sup-desc{
    margin:8px 0 14px 0;
    font-size:13px;
    color:#666;
    line-height:1.4;
}
.sup-wa{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    border-radius:14px;
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    text-decoration:none;
    color:#111;
    font-weight:800;
    transition:.2s ease;
}
.sup-wa:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.sup-wa img{ width:20px; height:20px; }

/* Simple dropdown */
.dropdown.simple{
    width:330px;
    padding:10px;
    display:flex;
    flex-direction:column;
    gap:4px;
    animation:menuDrop .2s ease-out;
}
.dropdown.simple a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
    text-decoration:none;
    color:#4b4b4b;
    font-weight:700;
    transition:.18s ease;
}
.dropdown.simple a:hover{
    background:#f7f7ff;
    color:#111;
}
.di{
    width:34px; height:34px;
    border-radius:12px;
    background:#f4f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.18s ease;
}
.dropdown.simple a:hover .di{
    background:rgba(109,77,255,.12);
    color:#6D4DFF;
}
.di svg{ width:18px; height:18px; }

.dropdown-divider{
    height:1px;
    background:rgba(0,0,0,.08);
    margin:8px 6px;
}

.support-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 12px;
    border-radius:14px;
    background:#fafafa;
    border:1px solid rgba(0,0,0,.05);
}
.support-title{ font-weight:900; font-size:13px; color:#111; }
.support-sub{ font-size:12px; color:#777; margin-top:2px; }
.support-wa-mini{
    width:40px; height:40px;
    border-radius:9999px;
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s ease;
}
.support-wa-mini:hover{ transform:translateY(-1px); }
.support-wa-mini img{ width:20px; height:20px; }

/* ============ MOBILE ============ */
.desktop{ display:flex; }
.mobile{ display:none; }

.hamburger{
    width:44px; height:44px;
    border-radius:9999px;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
}
.hamburger span{
    width:18px; height:2px;
    background:#111;
    border-radius:9999px;
}

.btn-cta-sm{ padding:10px 14px; font-size:13px; }

.mobile-drawer{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:80;
    display:flex;
    justify-content:flex-end;
}
.mobile-panel{
    width:min(420px, 92vw);
    background:#fff;
    height:100%;
    padding:16px;
    box-shadow:-20px 0 60px rgba(0,0,0,.18);
    border-top-left-radius:22px;
    border-bottom-left-radius:22px;
    overflow:auto;
}

.mobile-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:6px 6px 14px 6px;
}
.mobile-logo img{ height:26px; }
.mobile-close{
    width:44px; height:44px;
    border-radius:9999px;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.mobile-close svg{ width:20px; height:20px; }

.mobile-links{ padding:8px 6px 16px; }

.mobile-link{
    display:block;
    padding:12px 12px;
    border-radius:14px;
    text-decoration:none;
    color:#111;
    font-weight:800;
    border:1px solid rgba(0,0,0,.06);
    margin-bottom:10px;
}
.mobile-link:hover{ background:#f7f7f9; }

.mobile-acc{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 12px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.06);
    background:#fff;
    cursor:pointer;
    font-weight:900;
    color:#111;
    margin-bottom:10px;
}
.acc-icon{
    width:20px; height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform .2s ease;
}
.acc-icon svg{ width:20px; height:20px; }
.acc-icon.is-open{ transform:rotate(180deg); }

.mobile-acc-body{
    padding:6px 6px 14px;
    margin-top:-6px;
    margin-bottom:10px;
    border:1px solid rgba(0,0,0,.06);
    border-radius:14px;
    background:#fafafa;
}
.mobile-acc-body a{

    padding:10px 10px;
    border-radius:12px;
    text-decoration:none;
    color:#333;
    font-weight:700;
}
.mobile-acc-body a:not(.ms-wa) {
    display:block;
}
.mobile-acc-body a:hover{ background:#fff; }

.mobile-subhead{
    font-size:12px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#777;
    padding:12px 10px 6px;
}

.mobile-support{
    margin-top:12px;
    padding:12px;
    border-radius:14px;
    background:linear-gradient(180deg, rgba(109,77,255,.10), rgba(255,255,255,1));
    border:1px solid rgba(0,0,0,.06);
}
.ms-title{ font-weight:900; }
.ms-sub{ font-size:13px; color:#666; margin-top:4px; }
.ms-wa{
    margin-top:12px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    border-radius:14px;
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    text-decoration:none;
    color:#111;
    font-weight:900;
}
.ms-wa img{ width:20px; height:20px; }

.mobile-auth{
    display:flex;
    gap:10px;
    margin-top:10px;
}
.mobile-lang{
    width:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    font-weight:900;
    text-decoration:none;
    color:#111;
}

/* ============ RTL SUPPORT (html dir="rtl") ============ */
html[dir="rtl"] .dropdown{ left:auto; right:0; }
html[dir="rtl"] .dropdown.mega{ right:0; left:auto; }
html[dir="rtl"] .mega-link{ text-align:right; }
html[dir="rtl"] .dropdown.simple a{ text-align:right; }
html[dir="rtl"] .mobile-panel{ border-top-left-radius:0; border-bottom-left-radius:0; border-top-right-radius:22px; border-bottom-right-radius:22px; }
/* ============ RESPONSIVE ============ */
@media (max-width: 1024px){
    .nav-logo {
        width: auto !important;
    }
    .desktop{ display:none !important; }
    .mobile{ display:flex !important; }
    .dropdown{ display:none !important; } /* desktop dropdown hidden on mobile */
}

/* ============================================
   TEXT SMOOTHING
   ============================================ */
h1, p, span, a {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* ==========================================
   HERO GLOW EFFECT
   ========================================== */

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 580px;
    height: 200px;
    background: linear-gradient(180deg, rgba(166,116,255,0.45), rgba(255,255,255,0));
    filter: blur(100px);
    opacity: .45;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-glow {
        width: 250px;
    }
}


/* ==========================================
   TYPOGRAPHY FIX
   ========================================== */

h1, p, span, a {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* ==========================================
   LOGO SCROLLER EFFECT
   ========================================== */

.logo-scroll-wrapper {
    position: relative;
}

.logo-scroll-wrapper::before,
.logo-scroll-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Logo hover state */
.logo-item {
    opacity: 1;
    transition: all .3s ease;
    will-change: transform;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 0.6;
}

/* =============================== */
/* TARGET CARDS                    */
/* =============================== */

/* Card container */
.target-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    background: #fff;
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 1rem; /* 16px */

    padding: 2rem;

    cursor: pointer;
    transition: all 0.3s ease;
}

.target-card:hover {
    border-color: #6D5DD3; /* purple-500 */
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    transform: scale(1.05);
}

/* Icon */
.target-card .icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

/* Label */
.target-card .label {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: #1f2937; /* gray-800 */
}


/* =============================== */
/* ACTIVE STATE (optional)         */
/* =============================== */

.target-card.active {
    border: 2px solid #9333ea; /* purple-600 */
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    transform: scale(1.05);
}


/* =============================== */
/* SECTION SPACING & TYPOGRAPHY    */
/* =============================== */

#target h2 {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 800;
    color: #111827; /* gray-900 */
}

#target p {
    font-size: 1.125rem; /* text-lg */
    color: #6b7280; /* gray-500 */
}


/* =============================== */
/* RESPONSIVE HELPERS              */
/* =============================== */

@media (max-width: 768px) {
    .target-card {
        padding: 1.5rem;
    }

    .target-card .icon {
        width: 56px;
        height: 56px;
    }

    #target h2 {
        font-size: 1.875rem; /* text-3xl */
    }
}

@media (max-width: 480px) {
    #target {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .target-card {
        padding: 1.25rem;
    }
}


/* STEP CONTAINER */
:root {
    --primary: #6D5DD3;
}

/* Base layout */
.how-wrapper {
    position: relative;
    padding-left: 60px;
}

/* RTL container auto */
html[dir="rtl"] .how-wrapper {
    padding-left: 0;
    padding-right: 60px;
}

/* Steps */
.how-step {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    align-items: flex-start;
    padding: 18px 0;
    opacity: 0;
    transform: translateY(16px);
    transition: .25s ease;
}

/* Reveal animation */
.how-step.show {
    opacity: 1;
    transform: translateY(0);
}

/* Number circle */
.how-number {
    min-width: 54px;
    background: #f9fafb;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
}

.how-step.active .how-number {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.12);
}

/* Text */
.how-title { font-size: 1.3rem; font-weight: bold; color: #111; }
.how-desc { font-size: .96rem; color: #666; line-height: 1.5; }

/* Active title color */
.how-step.active .how-title { color: var(--primary); }

/* Line BG */
.how-line-bg {
    position: absolute;
    top: 0;
    left: 27px;
    width: 3px;
    height: 100%;
    background: rgba(109,93,211,0.18);
    border-radius: 4px;
}

/* RTL line */
html[dir="rtl"] .how-line-bg {
    left: auto;
    right: 27px;
}

/* Progress line */
.how-line-progress {
    position: absolute;
    top: 41px;
    left: 87px;
    width: 1px;
    height: 0%;
    background: var(--primary);
    border-radius: 4px;
    transition: height .3s ease-out;
}

/* RTL progress line */
html[dir="rtl"] .how-line-progress {
    left: auto;
    right: 27px;
}

/* Image */
.how-img {
    border-radius: 22px;
    transition: opacity .35s ease, transform .35s ease;
}
.how-img.fade-out { opacity: 0; transform: scale(.95); }
.how-img.fade-in { opacity: 1; transform: scale(1); }

/* Mobile */
@media(max-width:640px) {

    .how-wrapper { padding-left: 0; }
    html[dir="rtl"] .how-wrapper { padding-right: 0; }

    .how-line-bg,
    .how-line-progress { display: none; }

    .how-step {
        border-radius: 14px;
        padding: 14px;
        opacity: 1;
        transform: none;
    }
    .how-number {
        margin-top: 10px;
    }

    .how-step.active {
        border-color: var(--primary);
    }
}
.loyalty-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: .35s ease;
    transform: translateY(15px);
    opacity: 0;
}

.loyalty-card.show {
    opacity: 1;
    transform: translateY(0);
}

.loyalty-card:hover {
    box-shadow: 0 22px 40px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

/* IMAGE */
.loyalty-img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 1.25rem;
    user-select: none;
    pointer-events: none;
}


/* TITLE */
.loyalty-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: .75rem;
}

/* DESC */
.loyalty-desc {
    font-size: .95rem;
    line-height: 1.55rem;
    text-align: center;
    color: #636363;
}

/* MORE CARDS SLIDE */
.loyalty-more-cards {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
}

/* BUTTON TEXT TOGGLE */
.loyalty-toggle-btn .loyalty-hide-text {
    display: none;
}

.loyalty-toggle-btn.active .loyalty-show-text {
    display: none;
}

.loyalty-toggle-btn.active .loyalty-hide-text {
    display: inline;
}

/* BUTTON STYLE */
.loyalty-toggle-btn {
    padding: 0.75rem 2rem;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-weight: 600;
    transition: .3s ease;
}

.loyalty-toggle-btn:hover {
    background: #000;
    color: #fff;
}

/* === LAYOUT BASE === */

.footer {
    background: #000;
    color: #fff;
    border-radius: 25px;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}

/* BRAND */
.footer-logo {
    font-weight: 800;
    margin-bottom: 30px;
}
.footer-logo img {
    display: block;
    width: 150px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.footer-social a {
    background: #595959;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.footer-social a img  {
    width: 20px;
}
.footer-social a:hover {
    background: var(--primary);
}


/* === COLUMNS === */

.footer-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

html[dir="rtl"] .footer-title {
    text-align: right;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    transition: 0.25s;
    display: block;
}

.footer-links a:hover {
    color: #fff;
}


/* === MOBILE RESPONSIVE “SERIOUS MODE” === */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section {
        border-bottom: 1px solid rgb(255 255 255 / 20%);
        padding-bottom: 18px;
    }

    .footer-title {
        cursor: pointer;
        margin-bottom: 0;
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    .footer-section.active .footer-links {
        max-height: 500px;
    }

    .footer-title::after {
        content: "+";
        float: right;
        transition: .3s;
        font-size: 25px;
    }

    html[dir="rtl"] .footer-title::after {
        float: left;
    }

    .footer-section.active .footer-title::after {
        content: "−";
    }
}

/* === BOTTOM === */
.footer-copy {
    text-align: center;
    padding-top: 40px;
    font-size: 13px;
    color: #888;
}


/* =========================================================
   FARAH FINAL SECTIONS (STATS + TRUST)
   ========================================================= */

.farah-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.farah-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.farah-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #6d5dd3;
    margin-bottom: 16px;
}

/* ================= STATS GRID ================= */

.farah-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.farah-stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 44px 28px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.farah-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

.farah-stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 22px;
    color: #6d5dd3;
}

.farah-stat-icon svg {
    width: 100%;
    height: 100%;
}


.farah-stat-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
}

.farah-stat-label {
    font-size: 15px;
    color: #6b6b6b;
}

/* ================= TRUST SECTION ================= */


/* RTL */
html[dir="rtl"] .farah-title,
html[dir="rtl"] .farah-subtitle {
    text-align: center;
}


/* Center Open Animation */
.badge-animate {
    position: relative;
    overflow: hidden;
    transform: scaleX(0);
    opacity: 0;
    animation: openFromCenter 0.9s cubic-bezier(.4,0,.2,1) forwards;
}

/* Smooth text reveal */
.badge-animate > * {
    opacity: 0;
    transform: translateY(4px);
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.6s;
}

/* Keyframes */
@keyframes openFromCenter {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Layout */
.farah-about-section {
    padding: 120px 0;
    background: #ffffff;
}

.farah-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* Header */
.farah-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 80px;
}


/* Grid */
.farah-features-grid {
    display: grid;
    gap: 32px;
}

/* Desktop & Large Screens */
@media (min-width: 1024px) {
    .farah-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (min-width: 640px) and (max-width: 1023px) {
    .farah-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 639px) {
    .farah-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.farah-feature {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(40px);
}

.farah-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon */
.farah-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    background: rgba(109,77,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6D4DFF;
}

.farah-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

/* Text */
.farah-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.farah-feature p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
}
