/* =====================================================
   Roads of Good Initiative
   Design: Able Child Africa inspired — clean, white,
   professional NGO with navy + teal + gold palette
   ===================================================== */

:root {
    /* Core Palette */
    --navy:        #1B3A6B;
    --navy-dark:   #102444;
    --navy-mid:    #234b8a;
    --teal:        #009FC2;
    --teal-dark:   #007a97;
    --teal-light:  #e0f5fa;
    --gold:        #F5A623;
    --gold-dark:   #d4891c;
    --gold-light:  #fef6e4;
    --white:       #ffffff;
    --off-white:   #f8f9fc;
    --light-gray:  #f0f2f6;
    --mid-gray:    #e2e6ee;
    --text:        #1a2340;
    --text-muted:  #5a6478;
    --border:      #dee3ed;

    /* Semantic */
    --primary:        var(--navy);
    --primary-dark:   var(--navy-dark);
    --primary-light:  #e8edf7;
    --secondary:      var(--gold);
    --accent:         var(--teal);

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(27,58,107,.07);
    --shadow-sm: 0 2px 8px rgba(27,58,107,.09);
    --shadow:    0 4px 20px rgba(27,58,107,.11);
    --shadow-lg: 0 10px 40px rgba(27,58,107,.15);
    --shadow-xl: 0 20px 60px rgba(27,58,107,.18);

    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Fonts */
    --font-ar-display: 'El Messiri', 'Almarai', sans-serif;
    --font-ar:         'Almarai', sans-serif;
    --font-en:         'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;

    /* Transitions */
    --transition: all .25s ease;
    --transition-slow: all .4s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-ar);
    color: var(--text);
    background: var(--white);
    line-height: 1.85;
    overflow-x: hidden;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 1rem;
}
body.lang-en {
    font-family: var(--font-en);
    line-height: 1.75;
}

/* ── Arabic Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ar-display);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}
body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4,
body.lang-en h5,
body.lang-en h6 {
    font-family: var(--font-en);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }
p { margin: 0 0 1rem; font-size: 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── Accessibility Bar ── */
.accessibility-bar {
    background: var(--navy-dark);
    padding: .4rem 0;
    font-size: .78rem;
    color: rgba(255,255,255,.75);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.accessibility-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}
.a11y-tools {
    display: flex;
    align-items: center;
    gap: .35rem;
    flex-wrap: wrap;
}
.a11y-btn {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
    padding: .2rem .6rem;
    border-radius: 4px;
    font-size: .72rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}
.a11y-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}
.a11y-label { color: rgba(255,255,255,.5); font-size: .7rem; }
.a11y-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .75rem;
}
.a11y-contact a { color: rgba(255,255,255,.7); display: flex; align-items: center; gap: .3rem; }
.a11y-contact a:hover { color: var(--gold); }

/* ── Navbar ── */
.site-navbar {
    background: var(--white);
    border-bottom: 2px solid var(--mid-gray);
    position: sticky;
    top: 0;
    z-index: 900;
    transition: var(--transition);
}
.site-navbar.scrolled {
    box-shadow: var(--shadow);
    border-bottom-color: transparent;
}
.navbar-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 1rem;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: #fff;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { line-height: 1.15; }
.brand-name-ar {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-ar-display);
    display: block;
    letter-spacing: -0.01em;
}
.brand-name-en {
    font-size: .68rem;
    color: var(--text-muted);
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: .06em;
    display: block;
}
/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-right: auto;
    flex: 1;
    justify-content: center;
}
[dir="ltr"] .nav-links { margin-right: 0; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .5rem .85rem;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover { color: var(--teal); background: var(--teal-light); }
.nav-link.active { color: var(--teal); }
.nav-link i { font-size: .75rem; transition: var(--transition); }
.nav-link:hover i { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
}
[dir="ltr"] .nav-dropdown { right: auto; left: 0; }
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: .55rem .85rem;
    font-size: .87rem;
    color: var(--text);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--teal-light); color: var(--teal); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.lang-switcher {
    background: var(--light-gray);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: .3rem .85rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    transition: var(--transition);
    white-space: nowrap;
}
.lang-switcher:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.btn-donate-nav {
    background: var(--gold);
    color: var(--navy) !important;
    border-radius: 50px !important;
    padding: .45rem 1.4rem !important;
    font-weight: 800 !important;
    font-size: .88rem !important;
    letter-spacing: .01em;
    transition: var(--transition) !important;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
    border: none;
    text-decoration: none;
}
.btn-donate-nav:hover {
    background: var(--gold-dark) !important;
    color: var(--navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245,166,35,.4);
}
.mobile-toggle {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .4rem .6rem;
    color: var(--navy);
    font-size: 1.2rem;
    display: none;
    align-items: center;
}
/* Mobile Nav */
.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    background: var(--white);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    padding: .6rem 1rem;
    font-weight: 700;
    color: var(--text);
    font-size: .92rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-nav a:hover { color: var(--teal); background: var(--teal-light); }
.mobile-nav .divider { height: 1px; background: var(--border); margin: .5rem 0; }

/* ── Buttons ── */
.btn-primary {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .8rem 2rem;
    font-weight: 800;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--navy-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27,58,107,.3);
}
.btn-teal {
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .8rem 2rem;
    font-weight: 800;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-teal:hover {
    background: var(--teal-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,159,194,.35);
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    padding: .85rem 2.2rem;
    font-weight: 900;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: .01em;
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,.45);
}
.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 50px;
    padding: .75rem 1.85rem;
    font-weight: 800;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50px;
    padding: .75rem 1.85rem;
    font-weight: 800;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}

/* ── Section Utilities ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 6.5rem 0; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--teal-light);
    color: var(--teal-dark);
    border: 1px solid rgba(0,159,194,.2);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.section-title {
    font-size: clamp(1.9rem, 4.5vw, 2.85rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: .75rem;
    font-family: var(--font-ar-display);
}
body.lang-en .section-title {
    font-family: var(--font-en);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.section-title span { color: var(--teal); }
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.9;
}
.section-subtitle.center { margin: 0 auto; text-align: center; }
.divider {
    width: 60px;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}
.divider.center { margin: 1rem auto 1.5rem; }
.divider.gold { background: var(--gold); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11,28,58,.88) 0%,
        rgba(27,58,107,.72) 50%,
        rgba(0,100,140,.55) 100%
    );
}
.hero-bottom-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 5rem;
    width: 100%;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 40px rgba(0,0,0,.3);
    font-family: var(--font-ar-display);
    letter-spacing: -0.01em;
}
body.lang-en .hero-title {
    font-family: var(--font-en);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.hero-title em {
    font-style: normal;
    color: var(--gold);
    display: block;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.87);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.9;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    z-index: 2;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Hero Donate Card ── */
.hero-donate-card {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    animation: fadeSlideUp .7s ease .2s both;
}
@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}
.hero-donate-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 1.4rem 1.6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-donate-header::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(0,159,194,.18);
    top: -60px; right: -40px;
}
.hero-donate-icon {
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    color: var(--navy);
    margin: 0 auto .65rem;
    position: relative; z-index: 1;
}
.hero-donate-header h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-ar-display);
    margin-bottom: .2rem;
    position: relative; z-index: 1;
}
.hero-donate-header p {
    color: rgba(255,255,255,.72);
    font-size: .8rem;
    margin: 0;
    position: relative; z-index: 1;
}
.hero-donate-body {
    padding: 1.4rem 1.5rem;
}
.hd-label {
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
    letter-spacing: .01em;
}
.hd-amounts {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: .45rem;
    margin-bottom: .85rem;
}
.hd-amt {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: .55rem .3rem;
    font-size: .9rem;
    font-weight: 800;
    color: var(--navy);
    cursor: pointer;
    text-align: center;
    transition: all .18s;
    font-family: var(--font-ar);
    line-height: 1.2;
}
.hd-amt span {
    display: block;
    font-size: .65rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: .1rem;
}
.hd-amt:hover, .hd-amt.active {
    border-color: var(--teal);
    background: var(--teal-light);
    color: var(--teal-dark);
}
.hd-amt.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    box-shadow: 0 4px 12px rgba(27,58,107,.25);
}
.hd-amt.active span { color: rgba(255,255,255,.7); }
.hd-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: .65rem 1rem;
    font-size: .9rem;
    font-family: var(--font-ar);
    color: var(--text);
    background: var(--white);
    outline: none;
    margin-bottom: .6rem;
    transition: border-color .2s, box-shadow .2s;
    display: block;
}
.hd-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,159,194,.12);
}
.hd-input::placeholder { color: var(--text-muted); font-size: .85rem; }
.hd-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    border-radius: 10px;
    padding: .85rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-ar-display);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    transition: all .2s;
    box-shadow: 0 6px 20px rgba(245,166,35,.4);
    margin-bottom: 1rem;
}
.hd-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,166,35,.5);
}
.hd-submit:disabled { opacity: .75; transform: none; cursor: not-allowed; }
.hd-trust {
    display: flex;
    justify-content: space-between;
    gap: .3rem;
    border-top: 1px solid var(--border);
    padding-top: .85rem;
}
.hd-trust span {
    font-size: .7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .25rem;
    font-weight: 600;
}
.hd-trust i { color: var(--teal); font-size: .8rem; }

/* ── Impact Stats Bar ── */
.impact-bar {
    background: var(--navy);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.impact-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='40'/%3E%3C/g%3E%3C/svg%3E");
}
.impact-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
.impact-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}
.impact-item:last-child { border-right: none; }
[dir="rtl"] .impact-item { border-right: none; border-left: 1px solid rgba(255,255,255,.1); }
[dir="rtl"] .impact-item:last-child { border-left: none; }
.impact-item:hover { background: rgba(255,255,255,.04); }
.impact-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: .4rem;
}
.impact-suffix { font-size: 1.5rem; }
.impact-label {
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    font-weight: 600;
}
.impact-icon {
    font-size: 1.6rem;
    margin-bottom: .6rem;
    display: block;
    opacity: .85;
    color: var(--gold);
}

/* ── Mission Pillars ── */
.pillars-section { background: var(--off-white); }
.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--teal);
    border-radius: 4px 4px 0 0;
}
.pillar-card.gold-border::before { background: var(--gold); }
.pillar-card.navy-border::before { background: var(--navy); }
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--teal-light);
}
.pillar-icon.gold { background: var(--gold-light); }
.pillar-icon.navy { background: var(--primary-light); }
.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-ar-display);
    margin-bottom: .65rem;
}
.pillar-text { color: var(--text-muted); font-size: .93rem; line-height: 1.75; }
.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--teal);
    font-weight: 800;
    font-size: .88rem;
    margin-top: 1.25rem;
    transition: var(--transition);
}
.pillar-link:hover { gap: .7rem; color: var(--teal-dark); }

/* ── Project Cards (Image Overlay Style) ── */
.project-grid-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    height: 380px;
    background: var(--navy-dark);
    display: block;
    text-decoration: none;
}
.project-grid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.project-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
    opacity: .8;
}
.project-grid-card:hover img { transform: scale(1.06); opacity: .9; }
.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11,28,58,.9) 0%, rgba(27,58,107,.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}
.project-card-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: .2rem .75rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .85rem;
    align-self: flex-start;
}
.project-card-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: .5rem;
    line-height: 1.3;
}
.project-card-location {
    color: rgba(255,255,255,.75);
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    margin-bottom: 1rem;
}
/* Progress in card */
.card-progress-wrap { margin-top: .75rem; }
.card-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: rgba(255,255,255,.8);
    margin-bottom: .35rem;
}
.card-progress-bar {
    height: 5px;
    background: rgba(255,255,255,.2);
    border-radius: 3px;
    overflow: hidden;
}
.card-progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 1.2s ease;
}
.card-arrow {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}
[dir="rtl"] .card-arrow { left: auto; right: 1.25rem; }
.project-grid-card:hover .card-arrow { background: var(--teal); }

/* ── Donation Section ── */
.donation-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.donation-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--teal-light);
    opacity: .5;
}
.donation-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}
.donation-card-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.donation-card-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.donation-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0,159,194,.15);
}
.donation-card-header h2 { color: #fff; font-size: 1.7rem; font-family: var(--font-ar-display); font-weight: 700; letter-spacing: -0.01em; position: relative; z-index: 1; }
.donation-card-header p { color: rgba(255,255,255,.75); font-size: .92rem; margin: .4rem 0 0; position: relative; z-index: 1; font-family: var(--font-ar); }
.donation-card-body { padding: 2rem; }

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 480px) { .amount-grid { grid-template-columns: repeat(4, 1fr); } }
.amount-btn {
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    padding: .8rem .5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 800;
    font-size: .95rem;
    color: var(--navy);
    font-family: inherit;
}
.amount-btn span.sub { display: block; font-size: .68rem; color: var(--text-muted); font-weight: 500; margin-top: .15rem; }
.amount-btn:hover, .amount-btn.active {
    border-color: var(--teal);
    background: var(--teal-light);
    color: var(--teal-dark);
}
.amount-btn.active { border-color: var(--navy); background: var(--primary-light); color: var(--navy); }

.form-label {
    font-weight: 700;
    font-size: .85rem;
    color: var(--navy);
    display: block;
    margin-bottom: .45rem;
}
.form-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    font-size: .92rem;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text);
    background: var(--white);
    outline: none;
}
.form-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,159,194,.12);
}
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6478' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 1rem center; padding-left: 2.5rem; }
[dir="rtl"] select.form-input { background-position: right 1rem center; padding-left: 1rem; padding-right: 2.5rem; }

.payment-pills {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.payment-pill {
    flex: 1;
    min-width: 100px;
    border: 1.5px solid var(--border);
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: .6rem .5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
}
.payment-pill:hover, .payment-pill.active {
    border-color: var(--navy);
    background: var(--primary-light);
    color: var(--navy);
}
.payment-pill .pill-icon { font-size: 1.1rem; }
.stripe-element {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    background: var(--white);
    transition: var(--transition);
}
.stripe-element.focused { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,159,194,.12); }
.payment-panel-body { margin-top: .75rem; }

.secure-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.secure-line i.shield { color: #10b981; }

/* ── About / Story Section ── */
.story-section { background: var(--white); }
.story-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 130px;
}
[dir="rtl"] .story-badge { right: auto; left: 1.5rem; }
.story-badge .badge-num { font-size: 1.8rem; font-weight: 900; color: var(--teal); line-height: 1; }
.story-badge .badge-lbl { font-size: .72rem; color: var(--text-muted); margin-top: .15rem; }
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--teal);
}
.feature-icon.gold { background: var(--gold-light); color: var(--gold-dark); }
.feature-icon.navy { background: var(--primary-light); color: var(--navy); }
.feature-title { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .2rem; }
.feature-text { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ── How It Works ── */
.steps-section { background: var(--navy); position: relative; overflow: hidden; }
.steps-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='2'/%3E%3C/svg%3E") repeat;
    background-size: 100px;
}
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-num {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(245,166,35,.4);
}
.step-connector {
    position: absolute;
    top: 2rem;
    width: calc(100% - 60px);
    height: 2px;
    background: rgba(255,255,255,.1);
    right: 0;
    z-index: 0;
}
[dir="rtl"] .step-connector { right: auto; left: 0; }
.step-emoji { font-size: 2.2rem; display: block; margin-bottom: .75rem; }
.step-title { font-size: 1.05rem; font-weight: 700; color: #fff; font-family: var(--font-ar-display); margin-bottom: .5rem; }
.step-text { font-size: .87rem; color: rgba(255,255,255,.7); line-height: 1.85; }

/* ── News / Updates ── */
.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-img {
    height: 200px;
    overflow: hidden;
    background: var(--navy);
    position: relative;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 1.5rem; }
.news-date { font-size: .75rem; color: var(--text-muted); margin-bottom: .65rem; display: flex; align-items: center; gap: .35rem; }
.news-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .65rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-read-more { display: inline-flex; align-items: center; gap: .35rem; color: var(--teal); font-weight: 800; font-size: .82rem; margin-top: 1rem; transition: var(--transition); }
.news-read-more:hover { gap: .65rem; color: var(--teal-dark); }

/* ── CTA Band ── */
.cta-band {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -60px; right: 10%;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); font-family: var(--font-ar-display); font-weight: 700; letter-spacing: -0.01em; margin-bottom: .65rem; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.9; margin-bottom: 2rem; }

/* ── Newsletter ── */
.newsletter-strip {
    background: var(--navy-dark);
    padding: 3.5rem 0;
}
.newsletter-strip h3 { color: #fff; font-size: 1.4rem; margin-bottom: .35rem; }
.newsletter-strip p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }
.newsletter-form {
    display: flex;
    gap: .5rem;
    max-width: 460px;
}
.newsletter-form input {
    flex: 1;
    border: none;
    border-radius: var(--radius-sm);
    padding: .8rem 1.1rem;
    font-size: .9rem;
    font-family: inherit;
    outline: none;
    color: var(--text);
}
.newsletter-form button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-sm);
    padding: .8rem 1.4rem;
    font-weight: 800;
    font-size: .9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* ── Footer ── */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.7);
    padding: 4.5rem 0 0;
    position: relative;
}
.footer-logo-name { font-size: 1.3rem; font-weight: 700; font-family: var(--font-ar-display); color: #fff; letter-spacing: -0.01em; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin: .35rem 0 1.25rem; }
.footer-social-row { display: flex; gap: .6rem; }
.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: var(--transition);
}
.footer-social-btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: translateY(-2px); }
.footer-col-title { font-size: .82rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: .87rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.footer-links a:hover { color: var(--gold); padding-right: 4px; }
[dir="ltr"] .footer-links a:hover { padding-right: 0; padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .75rem;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
}
.footer-contact-list i { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 3rem;
    padding: 1.25rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.5); font-size: .78rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Page Header ── */
.page-header {
    background: var(--navy);
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.3), transparent);
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .25;
}
.page-header-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .6rem; font-family: var(--font-ar-display); font-weight: 700; letter-spacing: -0.01em; }
body.lang-en .page-header h1 { font-family: var(--font-en); font-weight: 800; letter-spacing: -0.03em; }
.page-header p { color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.9; }
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 1rem;
}
.page-breadcrumb a { color: var(--gold); }
.page-breadcrumb span { color: rgba(255,255,255,.4); }

/* ── Testimonials ── */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 100%;
}
.quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--teal-light);
    font-family: Georgia, serif;
    position: absolute;
    top: .75rem;
    right: 1.5rem;
}
[dir="rtl"] .quote-mark { right: auto; left: 1.5rem; }
.testimonial-text { color: var(--text-muted); font-size: .95rem; line-height: 2; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: .92rem; font-family: var(--font-ar-display); color: var(--navy); }
.t-role { font-size: .78rem; color: var(--text-muted); }

/* ── Success / Thank You ── */
.success-hero {
    background: linear-gradient(135deg, var(--navy), var(--teal-dark));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}
.success-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    text-align: center;
}
.success-icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    animation: pop-in .5s ease;
    box-shadow: 0 8px 30px rgba(16,185,129,.3);
}
@keyframes pop-in {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
.receipt-box {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: start;
}
.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: .88rem;
}
.receipt-row:last-child { border-bottom: none; }
.receipt-row .label { color: var(--text-muted); }
.receipt-row .value { font-weight: 800; color: var(--navy); }

/* ── Toast ── */
.toast-stack {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
[dir="rtl"] .toast-stack { right: auto; left: 1.25rem; }
.toast-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    border-right: 4px solid var(--teal);
    animation: slide-in .3s ease;
}
[dir="rtl"] .toast-item { border-right: none; border-left: 4px solid var(--teal); }
.toast-item.success { border-color: #10b981; }
.toast-item.error   { border-color: #ef4444; }
.toast-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .05rem; }
.toast-body .toast-title { font-weight: 800; font-size: .87rem; color: var(--navy); }
.toast-body .toast-msg { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }
@keyframes slide-in {
    from { transform: translateX(110%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ── Progress Bar ── */
.progress-wrap { margin: .85rem 0; }
.progress-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    margin-bottom: .4rem;
}
.progress-raised { font-weight: 800; color: var(--teal-dark); }
.progress-pct { font-weight: 900; color: var(--navy); }
.progress-bar {
    height: 8px;
    background: var(--mid-gray);
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 4px;
    transition: width 1.2s ease;
    position: relative;
}
.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ── Spinner ── */
.spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .65s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scroll Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── High Contrast Mode ── */
body.high-contrast {
    --navy: #000;
    --teal: #0000cc;
    --gold: #cc7700;
    --text: #000;
    --border: #000;
}
body.grayscale { filter: grayscale(100%); }
body.large-text { font-size: 110%; }

/* ── Responsive ── */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .impact-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .hero-content { padding: 4rem 0 3rem; }
    .hero-title { font-size: 2.2rem; }
    .newsletter-strip .row { gap: 1.5rem; }
    .newsletter-form { max-width: 100%; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .accessibility-bar .a11y-contact { display: none; }
    .impact-items { grid-template-columns: repeat(2, 1fr); }
    .donation-card-body { padding: 1.25rem; }
    .amount-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
    .impact-items { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .a11y-tools { display: none; }
}

/* ── Print ── */
@media print {
    .site-navbar, .site-footer, .no-print, .accessibility-bar { display: none !important; }
    .success-hero { min-height: auto; background: #fff; }
    .success-card { box-shadow: none; border: 1px solid #ddd; }
}

/* ══ Index V2 specific ══ */
@media (min-width: 768px) {
    .d-md-grid { display: grid !important; }
}
.v2-project-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
@media (max-width: 767px) {
    .v2-project-mosaic { grid-template-columns: 1fr; }
    .v2-project-mosaic > div:first-child { grid-row: auto !important; min-height: 260px !important; }
    .v2-project-mosaic > div { min-height: 200px !important; }
}
