/* ============================================================
   Akansha Nasha Mukti Kendra - Main Stylesheet
   Design: Calming Teal-Green, trustworthy, professional
   Fonts: Playfair Display (headings) + Nunito (body)
   ============================================================ */

/* CSS Variables */
:root {
    --green-dark:   #1a6e52;
    --green:        #22896a;
    --green-mid:    #2eab83;
    --green-light:  #e8f7f2;
    --green-pale:   #f2fbf7;
    --teal:         #1b7f8e;
    --teal-light:   #e5f4f6;
    --gold:         #c8960a;
    --gold-light:   #fff8e1;
    --text-dark:    #1a2e27;
    --text-body:    #3d5247;
    --text-muted:   #6b8a7d;
    --white:        #ffffff;
    --off-white:    #f8fdfa;
    --border:       #c8e6d8;
    --shadow:       0 4px 24px rgba(34, 137, 106, 0.12);
    --shadow-lg:    0 8px 40px rgba(34, 137, 106, 0.18);
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.lang-hi { font-size: 17px; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* ── Container ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--green); }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover { background: #a87a08; border-color: #a87a08; transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

/* ── Section Utilities ── */
.section { padding: 80px 0; }
.section-alt { background: var(--green-pale); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.badge-label {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-dark .badge-label { background: rgba(255,255,255,0.2); color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 640px; margin: 16px auto 0; color: var(--text-muted); font-size: 1.05rem; }

/* ── Top Bar ── */
.top-bar {
    background: var(--green-dark);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-link { color: rgba(255,255,255,0.85); transition: var(--transition); }
.top-link:hover { color: var(--white); }
.open-badge { background: rgba(255,255,255,0.15); padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; }
.lang-toggle {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,0.35); }

/* ── Header / Nav ── */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 20px;
}
.logo-link { flex-shrink: 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}
.logo-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.1;
}
.logo-sub { display: block; font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.5px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-list li a {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-body);
    transition: var(--transition);
}
.nav-list li a:hover,
.nav-list li.active a {
    background: var(--green-light);
    color: var(--green-dark);
}
.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Sticky Call ── */
.mobile-sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 16px;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-call-btn {
    display: block;
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}
.mobile-call-btn:hover { background: var(--green-dark); }

/* ── Floating WhatsApp ── */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 998;
    background: #25d366;
    color: var(--white);
    border-radius: 50px;
    padding: 12px 18px 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #0e4d3a 50%, var(--teal) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.hero-badge-pill {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 520px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    backdrop-filter: blur(8px);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(12px);
    text-align: center;
    max-width: 340px;
    width: 100%;
}
.hero-card-icon { font-size: 4rem; margin-bottom: 20px; }
.hero-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.hero-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 24px; }
.hero-trust-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.trust-chip {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ── Cards Grid ── */
.cards-grid { display: grid; gap: 24px; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--green-mid); }
.card-icon {
    width: 60px; height: 60px;
    background: var(--green-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ── About Page ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    background: linear-gradient(135deg, var(--green-light), var(--teal-light));
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}
.about-visual-icon { font-size: 5rem; margin-bottom: 20px; }
.about-visual h3 { color: var(--green-dark); margin-bottom: 8px; }
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 50px;
    padding: 10px 20px;
    margin-top: 20px;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 0.9rem;
}

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.mv-card {
    background: var(--green-pale);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px;
}
.mv-card h4 { color: var(--green-dark); margin-bottom: 8px; font-size: 1rem; }
.mv-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ── Addiction Section ── */
.causes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.cause-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}
.cause-item:hover { background: var(--green-light); border-color: var(--green-mid); }
.cause-item::before { content: '⚠'; font-size: 1rem; }

.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.type-item {
    background: var(--white);
    border: 2px solid var(--green-light);
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}
.type-item:hover { background: var(--green-light); border-color: var(--green); }
.type-item span { display: block; font-size: 1.8rem; margin-bottom: 8px; }

/* ── Treatment Steps ── */
.steps-grid { display: grid; gap: 0; position: relative; }
.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.step-item:last-child { border-bottom: none; }
.step-number {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(34,137,106,0.3);
}
.step-content h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ── Why Choose Us ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,0.78); font-size: 0.93rem; margin: 0; }

/* ── Testimonials ── */
.testi-slider { position: relative; min-height: 260px; }
.testi-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}
.testi-slide.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow);
}
.testi-quote {
    font-size: 4rem;
    color: var(--green-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: -10px;
}
.testi-text { font-size: 1.05rem; color: var(--text-body); font-style: italic; margin-bottom: 24px; line-height: 1.75; }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; }
.testi-relation { font-size: 0.82rem; color: var(--text-muted); }

.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testi-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.testi-dot.active { background: var(--green); width: 28px; border-radius: 5px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    gap: 12px;
}
.faq-icon {
    width: 28px; height: 28px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ── Contact Page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-info-card {
    background: var(--green-pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-info-list { display: grid; gap: 20px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
    width: 44px; height: 44px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.ci-label { font-weight: 700; font-size: 0.85rem; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.ci-value a { color: var(--text-body); font-weight: 600; }
.ci-value a:hover { color: var(--green); }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(34,137,106,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-control.error-field { border-color: #dc3545; }

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Map Section */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; }

/* ── Page Hero Banner ── */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), #0e4d3a);
    color: var(--white);
    padding: 70px 0 60px;
    text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--green), var(--teal));
    padding: 70px 0;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); font-weight: 700; }
.footer-logo-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.footer-about { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges .badge {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 600;
}
.footer-heading { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.1rem; margin-bottom: 20px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--green-mid); padding-left: 4px; }
.footer-contact-list { display: grid; gap: 14px; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.fc-icon { flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-contact-list a:hover { color: var(--green-mid); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-powered { font-size: 0.78rem; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid .footer-col:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    /* Nav Mobile */
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .main-nav.open { display: flex; }
    .nav-list { flex-direction: column; width: 100%; gap: 4px; }
    .nav-list li { width: 100%; }
    .nav-list li a { display: block; width: 100%; padding: 12px 16px; }
    .nav-cta { width: 100%; text-align: center; margin: 12px 0 0; justify-content: center; }
    .site-header { position: relative; }

    /* Mobile sticky */
    .mobile-sticky-call { display: block; }
    .whatsapp-float { bottom: 76px; }
    body { padding-bottom: 60px; }

    /* Hero */
    .hero { padding: 60px 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 1.5rem; }

    /* Grids */
    .cards-grid-2, .cards-grid-3, .cards-grid-4,
    .about-grid, .contact-grid, .why-grid,
    .causes-grid, .types-grid, .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .hero-cta-group { flex-direction: column; }
    .btn { justify-content: center; }

    /* Top bar */
    .top-bar-left { display: none; }
    .top-bar-inner { justify-content: flex-end; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    /* Steps */
    .step-item { grid-template-columns: 60px 1fr; gap: 16px; }

    .testi-card { padding: 28px 20px; }
    .contact-form-wrap { padding: 24px 20px; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .cta-group { flex-direction: column; }
    .testi-card { padding: 24px 16px; }
}

/* ============================================================
   ADDITIONS: Social Media, Director Card, Images, Logo Face
   ============================================================ */

/* Logo face image */
.logo-face-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-mid);
    flex-shrink: 0;
}

/* Top bar social icons */
.top-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
    flex-shrink: 0;
}
.top-social:hover { background: rgba(255,255,255,0.35); transform: scale(1.1); }

/* Footer Director Card */
.footer-director-thumb {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-mid);
    flex-shrink: 0;
}

.footer-director-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 20px;
}
.footer-director-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--green-mid);
    flex-shrink: 0;
}
.footer-director-info { flex: 1; }
.footer-director-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.footer-director-title {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.footer-director-phone {
    display: block;
    font-size: 0.82rem;
    color: var(--green-mid);
    transition: var(--transition);
}
.footer-director-phone:hover { color: var(--white); }

/* Footer Social Buttons */
.footer-social-section { margin-bottom: 20px; }
.footer-social-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    font-weight: 700;
}
.footer-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid transparent;
}
.social-btn span { line-height: 1; }
.social-btn.facebook { background: #1877f2; border-color: #1877f2; }
.social-btn.facebook:hover { background: #145dc4; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(24,119,242,0.4); }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.social-btn.instagram:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(220,39,67,0.4); }
.social-btn.whatsapp-social { background: #25d366; border-color: #25d366; }
.social-btn.whatsapp-social:hover { background: #1ea952; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }

/* Footer bottom social icons */
.footer-bottom-social { display: flex; gap: 10px; align-items: center; }
.footer-bottom-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-bottom-icon:hover { background: var(--green); color: white; }

/* Page hero with real background image */
.page-hero-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.page-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,110,82,0.92) 0%, rgba(14,77,58,0.88) 100%);
}
.page-hero-img > .container { position: relative; z-index: 1; }

/* Director Section (used on About & Homepage) */
.director-section {
    background: var(--green-pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.director-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: stretch;
}
.director-photo-wrap {
    position: relative;
    overflow: hidden;
}
.director-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    min-height: 300px;
}
.director-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.director-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}
.director-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--green-light);
}
.director-quote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--green-mid);
}
.director-contacts { display: flex; gap: 12px; flex-wrap: wrap; }
.director-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}
.director-contact-link:hover { background: var(--green-dark); transform: translateY(-2px); }

/* Office background hero sections */
.hero-with-office-bg {
    background: linear-gradient(135deg, rgba(26,110,82,0.96) 0%, rgba(14,77,58,0.94) 50%, rgba(27,127,142,0.90) 100%),
                url('../images/office.jpg') center/cover no-repeat;
}
.page-hero.hero-with-office-bg {
    background: linear-gradient(135deg, rgba(26,110,82,0.93) 0%, rgba(14,77,58,0.91) 50%, rgba(27,127,142,0.87) 100%),
                url('images/office.jpg') center/cover no-repeat;
}

/* Page image strips */
.page-image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0;
}
.page-image-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.page-image-strip img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* FB Poster card */
.fb-poster-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: var(--transition);
}
.fb-poster-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.fb-poster-card img { width: 100%; display: block; }
.fb-poster-caption {
    background: var(--green-dark);
    color: rgba(255,255,255,0.88);
    padding: 10px 14px;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .director-grid { grid-template-columns: 1fr; }
    .director-photo-wrap img { min-height: 220px; max-height: 260px; }
    .page-image-strip { grid-template-columns: 1fr; }
    .footer-social-row { flex-direction: column; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
    .footer-director-card { flex-direction: column; text-align: center; }
}
