/* ============================================================
   landing-base.css
   Global variables, reset, layout, shared components, footer.
   All other landing CSS files depend on this file.
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    /* Brand */
    --primary-orange: #F47920;
    --primary-gold:   #FAC90F;
    --primary-yellow: #FAC90F;

    /* Palette */
    --dark:           #1A1A2E;
    --light:          #FFFFFF;
    --gray:           #6B7280;
    --light-bg:       #FFFFFF;

    /* Sub-page palette */
    --bg-light:       #FFFFFF;
    --bg-secondary:   #FAFAFA;
    --bg-accent:      #FFF9E6;
    --text-dark:      #1A1A1A;
    --text-medium:    #4A4A4A;
    --text-light:     #6B6B6B;

    /* Gradients */
    --gradient-main:    linear-gradient(135deg, #F47920 0%, #FAC90F 100%);
    --gradient-primary: linear-gradient(135deg, #F47920 0%, #FAC90F 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(250,201,15,0.1) 0%, rgba(244,121,32,0.1) 100%);

    /* Layout */
    --container-width:  1400px;
    --section-padding:  clamp(4rem, 10vw, 8rem);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(244,121,32,0.08);
    --shadow-md: 0 4px 16px rgba(244,121,32,0.12);
    --shadow-lg: 0 8px 32px rgba(244,121,32,0.16);
    --shadow-xl: 0 16px 48px rgba(244,121,32,0.2);
}

/* ── Base ───────────────────────────────────────────────────── */
body {
    font-family: 'Almarai', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── Scroll Progress ────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-main);
    z-index: 10001;
    box-shadow: 0 0 20px var(--primary-orange);
    transition: width 0.1s ease;
}

/* ── Loading Screen ─────────────────────────────────────────── */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader img {
    display: block;
    vertical-align: middle;
    text-decoration: none;
}
.loader-logo {
    font-family: 'Changa', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: pulse-logo 2s ease-in-out infinite;
    letter-spacing: 2px;
}
@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.1); opacity: 0.8; }
}
.loader-bar {
    width: 220px;
    height: 4px;
    margin-top: 2rem;
    border-radius: 999px;
    background: rgba(244,121,32,0.18);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(244,121,32,0.06),
        0 10px 30px rgba(15,23,42,0.15);
}
.loader-progress {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(244,121,32,0.15) 15%,
        var(--primary-orange) 40%,
        var(--primary-yellow) 60%,
        rgba(244,121,32,0.15) 80%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: loader-shimmer 1.4s ease-in-out infinite;
}
@keyframes loader-shimmer {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Global Flash Toasts (success / error) ──────────────────── */
.flash-toast-stack {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    z-index: 11000;
    pointer-events: none;
}
.flash-toast {
    min-width: 260px;
    max-width: 360px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 18px 45px rgba(15,23,42,0.25);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(15,23,42,0.18);
    color: #0f172a;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(249,250,251,0.96));
    transform: translateX(16px);
    opacity: 0;
    pointer-events: auto;
    animation: toast-in 0.35s ease-out forwards;
    position: relative;
    overflow: hidden;
}
.flash-toast__icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.flash-toast__text {
    flex: 1;
}
.flash-toast__close {
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}
.flash-toast__close:hover {
    opacity: 1;
}
.flash-toast--success .flash-toast__icon {
    background: rgba(34,197,94,0.12);
    color: #16a34a;
}
.flash-toast--error .flash-toast__icon {
    background: rgba(239,68,68,0.12);
    color: #dc2626;
}
.flash-toast--success {
    border-color: rgba(34,197,94,0.4);
}
.flash-toast--error {
    border-color: rgba(239,68,68,0.4);
}
.flash-toast.is-hiding {
    animation: toast-out 0.25s ease-in forwards;
}
.flash-toast__timer {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    transform-origin: left;
    animation: toast-timer 4.5s linear forwards;
    opacity: 0.9;
}
@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(16px) translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}
@keyframes toast-out {
    from {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(16px) translateY(-6px);
    }
}

@keyframes toast-timer {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Button loader (circle spinner for form submit buttons) */
.btn-loader {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}

/* ── Scroll to Top ──────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(244,121,32,0.4);
    font-weight: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 60px rgba(244,121,32,0.6);
}
[dir="rtl"] .scroll-top { left: auto; right: 40px; }

/* ── Shared Alerts ──────────────────────────────────────────── */
.merchant-alert {
    padding: 1rem 2rem;
    margin: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
}
.merchant-alert.success {
    background: rgba(34,197,94,0.1);
    color: #22C55E;
    border: 2px solid #22C55E;
}
.merchant-alert.error {
    background: rgba(220,38,38,0.1);
    color: #dc2626;
    border: 2px solid #dc2626;
}

/* ── Section Header (shared) ────────────────────────────────── */
.section-header   { text-align: center; margin-bottom: 3rem; }
.section-tag      { display: inline-block; background: linear-gradient(135deg, rgba(244,121,32,0.1), rgba(250,201,15,0.1)); color: var(--primary-orange); padding: 0.5rem 1.2rem; border-radius: 30px; font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; }
.section-title    { font-family: 'Changa', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ── Shared Buttons ─────────────────────────────────────────── */
.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(244,121,32,0.3);
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(244,121,32,0.4); }

.btn-secondary {
    background: white;
    color: var(--primary-orange);
    padding: 1.3rem 3rem;
    border-radius: 50px;
    border: 2px solid var(--primary-orange);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-secondary:hover { background: var(--primary-orange); color: white; transform: translateY(-4px); box-shadow: 0 15px 35px rgba(244,121,32,0.3); }

/* ── Shared Animations ──────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ── Badge (shared) ─────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(244,121,32,0.12), rgba(250,201,15,0.12));
    border: 1px solid rgba(244,121,32,0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.2rem;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-main);
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(1.2); }
}

/* ── Hero Section (main landing) ───────────────────────────── */
.hero {
    padding: 9rem 2rem;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}
.blob-1 {
    position: absolute;
    width: 600px; height: 600px;
    background: linear-gradient(135deg, rgba(244,121,32,0.12), rgba(250,201,15,0.12));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -15%; right: -8%;
    animation: blob-float 20s ease-in-out infinite;
    filter: blur(40px);
}
.blob-2 {
    position: absolute;
    width: 500px; height: 500px;
    background: linear-gradient(135deg, rgba(250,201,15,0.15), rgba(244,121,32,0.08));
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    bottom: -15%; left: -8%;
    animation: blob-float 15s ease-in-out infinite reverse;
    filter: blur(40px);
}
@keyframes blob-float {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    33%       { transform: translate(40px,-40px) rotate(120deg); }
    66%       { transform: translate(-30px,30px) rotate(240deg); }
}
.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-content { animation: fadeInUp 0.8s ease; }
.hero-content h1 {
    font-family: 'Changa', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: var(--dark);
    letter-spacing: -1px;
}
.hero-highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}
.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 100%; height: 8px;
    background: var(--gradient-main);
    opacity: 0.2;
    border-radius: 4px;
}
.hero-content p {
    font-size: 1.35rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 90%;
}
.hero-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Hero Illustration */
.hero-illustration { position: relative; }
.hero-illustration svg {
    width: 100%; height: auto;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.12));
    font-family: 'Almarai', 'Changa', sans-serif;
}
.hero-illustration svg text { direction: rtl; unicode-bidi: plaintext; font-family: 'Almarai', 'Changa', sans-serif; }
.hero-illustration .notif-box {
    font-family: 'Almarai', sans-serif;
    direction: rtl; unicode-bidi: plaintext;
    padding: 8px 12px; box-sizing: border-box; height: 100%;
    display: flex; justify-content: space-between; align-items: flex-start; gap: 6px;
}
.hero-illustration .notif-content { text-align: right; }
.hero-illustration .notif-title  { font-weight: bold; font-size: 11px; color: #1F2937; margin-bottom: 2px; }
.hero-illustration .notif-sub    { font-size: 9px; color: #6B7280; }
.hero-illustration .notif-time   { font-size: 9px; color: #9CA3AF; white-space: nowrap; }

@keyframes float-illustration {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-20px); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}
@keyframes slideInNotification {
    0%   { transform: translateX(150px); opacity: 0; }
    10%  { transform: translateX(0px);   opacity: 1; }
    90%  { transform: translateX(0px);   opacity: 1; }
    100% { transform: translateX(-150px); opacity: 0; }
}

/* ── Story Section ──────────────────────────────────────────── */
.story-section   { padding: 5rem 2rem; background: white; }
.story-container { max-width: 1100px; margin: 0 auto; }
.story-content   { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-text h3   { font-family: 'Changa', sans-serif; font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.story-text p    { font-size: 1.15rem; color: var(--gray); line-height: 1.9; margin-bottom: 1rem; }
.highlight-text  { background: linear-gradient(135deg, rgba(250,201,15,0.3), rgba(244,121,32,0.2)); padding: 0.2rem 0.5rem; border-radius: 6px; font-weight: 700; color: var(--dark); }
.story-visual     { text-align: center; }
.story-visual svg { max-width: 100%; height: auto; border-radius: 20px; }

/* ── Features Section ───────────────────────────────────────── */
.features-section { padding: 5rem 2rem; background: var(--light-bg); }
.features-grid    { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.feature-card     { background: white; padding: 2.5rem; border-radius: 25px; text-align: center; transition: all 0.3s; border: 2px solid transparent; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary-orange); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.feature-icon {
    width: 70px; height: 70px;
    background: var(--gradient-main);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(244,121,32,0.3);
}
.feature-icon svg { width: 35px; height: 35px; fill: white; }
.feature-icon::before {
    content: ''; position: absolute;
    width: 100%; height: 100%;
    background: inherit; border-radius: inherit;
    filter: blur(10px); opacity: 0.5; z-index: -1;
}
.feature-card h3 { font-family: 'Changa', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--dark); }
.feature-card p  { font-size: 1rem; color: var(--gray); line-height: 1.7; }

/* ── Why Section ────────────────────────────────────────────── */
.why-section { padding: 5rem 2rem; background: white; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(244,121,32,0.1), transparent); border-radius: 50%; }
.why-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.why-card { background: linear-gradient(135deg, #FFFFFF 0%, var(--light-bg) 100%); padding: 2.5rem; border-radius: 25px; border: 2px solid rgba(244,121,32,0.1); transition: all 0.4s ease; }
.why-card:hover { border-color: var(--primary-orange); transform: translateX(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.why-card-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1rem; }
.why-icon {
    width: 55px; height: 55px;
    background: var(--gradient-main);
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; position: relative;
    box-shadow: 0 8px 25px rgba(244,121,32,0.3);
}
.why-icon svg { width: 28px; height: 28px; fill: white; }
.why-icon::before { content: ''; position: absolute; width: 100%; height: 100%; background: inherit; border-radius: inherit; filter: blur(8px); opacity: 0.4; z-index: -1; }
.why-card h4 { font-family: 'Changa', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.why-card p  { font-size: 1rem; color: var(--gray); line-height: 1.8; }

/* ── Values Section ─────────────────────────────────────────── */
.section-values { position: relative; padding: 6rem 2rem; background: var(--dark); color: var(--light); overflow: hidden; }
.values-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; opacity: 0.1; pointer-events: none; }
.values-bg::before { content: ''; position: absolute; top: -50%; left: -25%; width: 1000px; height: 1000px; background: var(--primary-gold); border-radius: 50%; filter: blur(120px); }
.section-values .values-container.values-grid { max-width: 1100px; margin: 0 auto; position: relative; z-index: 10; display: grid; gap: 4rem; align-items: center; }
.section-values .values-content { text-align: right; }
.section-values .values-content h2 { color: var(--light); font-family: 'Changa', sans-serif; font-size: 2.25rem; font-weight: 800; margin: 0 0 2rem; }
.section-values .text-primary { color: var(--primary-gold); }
.section-values .values-content > p { font-size: 1.25rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0 0 2rem; }
.values-list { margin: 0; padding: 0; list-style: none; }
.values-list li { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 0.75rem; font-size: 1.125rem; font-weight: 700; }
.values-list li:hover { background: rgba(255,255,255,0.1); }
.value-icon { font-size: 1.5rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(250,201,15,0.15); border-radius: 10px; }
.value-icon svg { width: 22px; height: 22px; fill: var(--primary-gold); }
.values-visual { position: relative; }
.vision-card { aspect-ratio: 1; border-radius: 2rem; background: linear-gradient(to bottom right, #2d2d3a, var(--dark)); border: 1px solid rgba(255,255,255,0.1); padding: 2rem 3rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.vision-card::before { content: ''; position: absolute; top: 0; right: 0; width: 8rem; height: 8rem; background: var(--primary-gold); filter: blur(60px); opacity: 0.2; }
.vision-card h3 { font-family: 'Changa', sans-serif; font-size: 1.875rem; color: var(--light); margin: 0 0 1.5rem; position: relative; z-index: 1; }
.vision-card p  { color: rgba(255,255,255,0.65); font-size: 1.125rem; line-height: 1.7; margin: 0 0 1.5rem; position: relative; z-index: 1; }
.vision-line { width: 5rem; height: 0.25rem; background: var(--primary-gold); border-radius: 9999px; position: relative; z-index: 1; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section { padding: 5rem 2rem; background: var(--gradient-main); position: relative; overflow: hidden; text-align: center; }
.cta-container { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.cta-container h2 { font-family: 'Changa', sans-serif; font-size: 3rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.cta-container p  { font-size: 1.3rem; color: rgba(255,255,255,0.95); margin-bottom: 2rem; line-height: 1.8; }
.cta-buttons      { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cta-btn-white    { background: white; color: var(--primary-orange); padding: 1.2rem 2.5rem; border-radius: 50px; border: none; font-weight: 700; font-size: 1.1rem; cursor: pointer; text-decoration: none; display: inline-block; transition: transform 0.3s; }
.cta-btn-white:hover { transform: translateY(-5px); }
.cta-btn-outline  { background: transparent; color: white; padding: 1.2rem 2.5rem; border-radius: 50px; border: 3px solid white; font-weight: 700; font-size: 1.1rem; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.3s; }
.cta-btn-outline:hover { background: white; color: var(--primary-orange); }

/* ── Join Section ───────────────────────────────────────────── */
.join { padding: 5rem 2rem; background: #FFFFFF; }
.join .container { max-width: 1200px; margin: 0 auto; }
.join-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.join-card { position: relative; background: #FFFFFF; border-radius: 24px; padding: 2.5rem 2rem; border: 2px solid rgba(244,121,32,0.08); box-shadow: 0 12px 30px rgba(15,23,42,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; text-align: center; }
.join-card:hover { transform: translateY(-8px); border-color: var(--primary-orange); box-shadow: 0 20px 45px rgba(15,23,42,0.12); }
.join-card.featured { background: linear-gradient(135deg, #F47920 0%, #FAC90F 100%); color: #FFFFFF; box-shadow: 0 24px 60px rgba(244,121,32,0.35); }
.join-card.featured .join-features li { color: #FFFFFF; }
.join-card.featured .btn-join.primary { background: #FFFFFF; color: var(--primary-orange); }
.featured-badge { position: absolute; top: 1.5rem; left: 50%; transform: translateX(-50%); padding: 0.4rem 1.2rem; border-radius: 999px; background: rgba(255,255,255,0.95); color: var(--primary-orange); font-size: 0.85rem; font-weight: 700; box-shadow: 0 8px 20px rgba(15,23,42,0.15); }
.join-icon { font-size: 2.8rem; margin-bottom: 1rem;margin-top:  1rem}
.join-card h3 { font-family: 'Changa', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--dark); }
.join-card.featured h3 { color: #FFFFFF; }
.join-card p { font-size: 1rem; color: var(--gray); margin-bottom: 1.5rem; }
.join-card.featured p { color: rgba(255,255,255,0.9); }
.join-features { list-style: none; padding: 0; margin: 0 0 1.8rem; text-align: start; }
.join-features li { font-size: 0.98rem; color: var(--gray); margin-bottom: 0.4rem; }
.btn-join { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.9rem 2.1rem; border-radius: 999px; border: 2px solid var(--primary-orange); background: #FFFFFF; color: var(--primary-orange); font-weight: 700; font-size: 0.98rem; text-decoration: none; cursor: pointer; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.btn-join.primary { background: var(--gradient-main); color: #FFFFFF; border-color: transparent; box-shadow: 0 12px 30px rgba(244,121,32,0.4); }
.btn-join:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(15,23,42,0.16); background: var(--primary-orange); color: #FFFFFF; }
.btn-join.primary:hover { background: linear-gradient(135deg, #FAC90F 0%, #F47920 100%); }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background: var(--dark); color: white; padding: 4rem 2rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-family: 'Changa', sans-serif; font-size: 1.8rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.8rem; }
.footer-brand p  { color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.7; font-size: 0.95rem; }
.social-links    { display: flex; gap: 0.8rem; }
.social-link     { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.2rem; transition: all 0.3s;color: white }
.social-link:hover { background: var(--gradient-main); transform: translateY(-4px); }

/* ── Footer Social Links (New Style) ───────────────────────────── */
.f-socials {
  display: flex;
  gap: 10px;
}
.f-social {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}
.f-social:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.footer-links h4  { font-weight: 700; margin-bottom: 1rem; font-size: 1.1rem; }
.footer-links ul  { list-style: none; }
.footer-links li  { margin-bottom: 0.6rem; }
.footer-links a   { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-gold); }
.footer-bottom    { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (min-width: 1024px) {
    .section-values .values-container.values-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
    .section-values .values-content h2 { font-size: 3rem; }
}
@media (max-width: 1024px) {
    .hero-container, .story-content { grid-template-columns: 1fr; text-align: center; }
    .hero-cta { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .section-values .values-container.values-grid { grid-template-columns: 1fr; }
    .section-values .values-content { text-align: center; }
    .join-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
    .cta-container h2 { font-size: 2rem; }
    .join { padding: 4rem 1.5rem; }
    .join-cards { grid-template-columns: 1fr; }
}
[dir="ltr"] .section-values .values-content { text-align: left; }
