/* ============================================================
   DEEPTI FOUNDATION — DESIGN SYSTEM
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    --primary: #1E3A8A;
    --primary-light: #2563EB;
    --primary-dark: #1e2f6b;
    --secondary: #F97316;
    --secondary-light: #fb923c;
    --accent: #059669;
    --accent-light: #10b981;
    --bg: #F8FAFC;
    --bg-warm: #FFF7ED;
    --dark: #111827;
    --dark-2: #1f2937;
    --gray-1: #374151;
    --gray-2: #6b7280;
    --gray-3: #9ca3af;
    --gray-4: #e5e7eb;
    --gray-5: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .14), 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, .18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Plus Jakarta Sans', sans-serif;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --transition-fast: all .18s cubic-bezier(.4, 0, .2, 1);
}

/* ── Announcement Bar ───────────────────────────────────── */
.announcement-bar {
    background: var(--primary);
    color: white;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    /* Above everything */
    display: none;
    /* Controlled by JS */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar.visible {
    display: block;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 60px 0 20px;
}

.announcement-bar__close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.announcement-bar__close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

/* Push body and WhatsApp float up when bar is visible */
body.announcement-visible {
    padding-bottom: 52px;
}

body.announcement-visible .whatsapp-float {
    bottom: 84px;
    /* Default (28px) + Bar (52px) + Gap (4px) */
}

@media (max-width: 600px) {
    .announcement-bar {
        padding: 14px 0;
    }

    .announcement-bar__inner {
        padding: 0 48px 0 16px;
        text-align: left;
    }

    .announcement-bar__text {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    body.announcement-visible {
        padding-bottom: 80px;
    }

    body.announcement-visible .whatsapp-float {
        bottom: 108px;
        /* Safe distance on mobile */
    }
}

/* ── WhatsApp Modal ────────────────────────────────────── */
.wa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wa-modal.open {
    display: flex;
}

/* ── WhatsApp Modal ────────────────────────────────────── */
.wa-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    /* Max priority to avoid overlap */
    display: none;
    align-items: center;
    justify-content: center;
}

.wa-modal.open {
    display: flex;
}

.wa-modal__overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    z-index: -1;
}

.wa-modal__content {
    position: relative;
    background: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 24px;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-fast);
}

.wa-modal__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.wa-modal__header {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.wa-modal__icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.wa-modal__icon svg {
    width: 40px;
    height: 40px;
    fill: #25D366;
}

.wa-modal__body {
    text-align: center;
    max-width: 480px;
    margin-bottom: 32px;
}

.wa-modal__pretext {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.wa-modal__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.25;
}

.wa-modal__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.wa-modal__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.wa-modal__btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.wa-modal__btn--primary {
    background: white;
    color: #128C7E;
}

.wa-modal__btn--primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.wa-modal__btn--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-modal__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .wa-modal__content {
        padding: 20px;
    }

    .wa-modal__title {
        font-size: 1.5rem;
    }

    .wa-modal__text {
        font-size: 0.93rem;
    }

    .wa-modal__icon {
        width: 60px;
        height: 60px;
    }
}





/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Accessibility ────────────────────────────────────────── */
:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    z-index: 9999;
    transition: top 0.3s;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Navbar container aligns with standard width */
.navbar>.container {
    max-width: 1200px;
    padding: 0 24px;
}

.container--wide {
    max-width: 1200px;
}

.container--narrow {
    max-width: 1200px;
}

.section {
    padding: 96px 0;
}

.section--sm {
    padding: 64px 0;
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(249, 115, 22, .1);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

/* ── Project Catalog ──────────────────────────────────── */
.project-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.project-catalog__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .03);
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.project-catalog__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
    border-color: var(--primary-light);
}

.project-catalog__icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.project-catalog__card:hover .project-catalog__icon {
    background: var(--primary);
    transform: scale(1.05);
}

.project-catalog__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.project-catalog__tag {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.6;
    letter-spacing: .02em;
}

.project-catalog__name {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.project-catalog__link {
    font-size: 1.25rem;
    color: var(--primary-light);
    opacity: 0.3;
    transition: var(--transition);
    margin-left: auto;
}

.project-catalog__card:hover .project-catalog__link {
    opacity: 1;
    transform: translateX(3px);
}

/* ── Project Specific Tags ─────────────────────────────── */
.project-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--theme-accent);
    color: var(--theme-primary);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

/* Specific overrides removed in favor of var inheritance */


/* ── Section Themes (Harmonized) ───────────────────────── */
.section--edu {
    --theme-primary: #2563eb;
    --theme-accent: rgba(37, 99, 235, 0.08);
}

.section--health {
    --theme-primary: #dc2626;
    --theme-accent: rgba(220, 38, 38, 0.06);
}

.section--women {
    --theme-primary: #9333ea;
    --theme-accent: rgba(147, 51, 234, 0.08);
}

.section--shelter {
    --theme-primary: #d97706;
    --theme-accent: rgba(217, 119, 6, 0.08);
}

/* Decorative background elements */
.section--edu::after,
.section--health::after,
.section--women::after,
.section--shelter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

/* ── Professional Modular Layout ────────────────────── */
.project-module {
    padding: 100px 0;
    overflow: hidden;
    background: #ffffff;
    /* Default base */
}

.project-module--alt {
    background: #f5f8ff !important;
}

.module-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.module-grid--reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.module-grid--reverse .module-content {
    grid-column: 2;
}

.module-grid--reverse .module-image-container {
    grid-column: 1;
    grid-row: 1;
}

/* ── Module Content ────────────────────────────── */
.module-header {
    margin-bottom: 32px;
}

.module-mission {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--dark-2);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.module-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-3);
    margin-bottom: 40px;
}

/* ── Impact Pills ─────────────────────────────── */
.impact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.impact-pill {
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark-2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.impact-pill:hover {
    border-color: var(--theme-primary);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.impact-pill__icon {
    font-size: 1rem;
}

/* ── Integrated Imagery (Window Effect) ─────────── */
.module-image-container {
    position: relative;
    padding: 20px;
}

.module-image-wrap {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.module-image-accent {
    position: absolute;
    top: 40px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--theme-primary);
    border-radius: var(--radius-xl);
    z-index: 1;
    opacity: 0.1;
}

.module-grid--reverse .module-image-accent {
    left: auto;
    right: -20px;
}

/* ── Advanced Patterns & Tints (Cleaned Up) ─────────── */

/* ── Responsive Module ─────────────────────────── */
@media (max-width: 991px) {

    .module-grid,
    .module-grid--reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .module-grid--reverse .module-content,
    .module-grid--reverse .module-image-container {
        grid-column: 1;
    }

    .module-mission {
        font-size: 1.25rem;
    }
}

/* ── Back to Top ────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-2);
    max-width: 580px;
    line-height: 1.75;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .02em;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background .2s;
}

.btn:hover::after {
    background: rgba(255, 255, 255, .1);
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(30, 58, 138, .35);
}

.btn--primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 28px rgba(30, 58, 138, .45);
    transform: translateY(-2px);
}

.btn--secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(249, 115, 22, .35);
}

.btn--secondary:hover {
    background: #ea6a0a;
    box-shadow: 0 8px 28px rgba(249, 115, 22, .45);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .6);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn--icon {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .05);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.card__img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.card__body {
    padding: 24px;
}

.card__tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--dark);
}

.card__text {
    font-size: .9rem;
    color: var(--gray-2);
    line-height: 1.7;
}

.card__footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-arrow {
    font-size: .875rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.link-arrow:hover {
    gap: 10px;
    color: var(--primary-light);
}

/* ── ███  NAVBAR  ███ ──────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: #ffffff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar__logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__logo-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.navbar__logo-text {
    display: flex;
    flex-direction: column;
}

.navbar__logo-name {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    transition: var(--transition-fast);
}

.navbar__logo-tag {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    transition: var(--transition-fast);
}

.navbar.scrolled .navbar__logo-name {
    color: var(--dark);
}

.navbar.scrolled .navbar__logo-tag {
    color: var(--gray-2);
}

@media (max-width: 360px) {
    .navbar__logo-tag {
        display: none;
    }

    .navbar__logo-name {
        font-size: 0.85rem;
    }

    .navbar__actions .btn--secondary {
        display: none;
        /* Hide Support btn on very small screens to avoid crowding */
    }
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 8px 14px;
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--gray-1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    left: 14px;
    right: 14px;
}

.nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.navbar__dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-fast);
    border: 1px solid var(--gray-4);
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-1);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--gray-5);
    color: var(--primary);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__wa {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(37, 211, 102, .35);
}

.navbar__wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
}

.navbar__wa svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 90vw);
    background: var(--white);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark);
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav__links a {
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-1);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-nav__links a:hover {
    background: var(--gray-5);
    color: var(--primary);
}

.mobile-nav__link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-1);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-nav__link-row:hover {
    background: var(--gray-5);
    color: var(--primary);
}

.mobile-nav__toggle svg {
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--gray-2);
}

.mobile-nav__dropdown.open .mobile-nav__toggle svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.mobile-nav__sublinks {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav__dropdown.open .mobile-nav__sublinks {
    max-height: 400px;
    /* Large enough to fit sublinks */
    opacity: 1;
    margin-bottom: 8px;
}

.mobile-nav__sublinks a {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 16px;
    color: var(--gray-2);
}

.mobile-nav__sublinks a:hover {
    color: var(--primary);
}

.mobile-nav__cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ── ███  PAGE HERO (UNIVERSAL)  ███ ──────────────────────── */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0f1d45 100%);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, .15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5, 150, 105, .10) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
    background: var(--white);
}

.page-hero__shape--1 {
    width: 320px;
    height: 320px;
    top: -90px;
    right: -70px;
}

.page-hero__shape--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -50px;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 20px;
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.page-hero__breadcrumb a:hover {
    color: var(--white);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero__title {
        font-size: 2.2rem;
    }
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center 30%;
    animation: kenBurns 12s ease-in-out infinite alternate;
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 25, 65, .82) 0%,
            rgba(30, 58, 138, .65) 40%,
            rgba(5, 150, 105, .25) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 140px 0 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, .9);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-light);
    animation: pulse 2s infinite;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #F97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 40px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 64px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .75);
    font-size: .8rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    opacity: .8;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about {
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__images {
    position: relative;
    height: 500px;
}

.about__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about__year-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about__year-badge strong {
    font-size: 2rem;
    font-weight: 900;
    display: block;
}

.about__year-badge span {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .8;
}



.mission-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.mission-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .05);
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mission-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary);
}

.mission-card__icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: var(--gray-5);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mission-card:hover .mission-card__icon {
    background: rgba(249, 115, 22, .1);
    transform: scale(1.1);
}

.mission-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.mission-card__text {
    font-size: .875rem;
    color: var(--gray-2);
    line-height: 1.75;
}

.blockquote {
    position: relative;
    border-left: 0;
    padding: 48px;
    background: linear-gradient(135deg, rgba(30, 58, 138, .03), rgba(249, 115, 22, .03));
    border-radius: var(--radius-lg);
    margin: 40px 0;
    border: 1px solid rgba(0, 0, 0, .03);
}

.blockquote::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 12rem;
    color: var(--primary);
    opacity: .05;
    font-family: serif;
    line-height: 1;
}

.blockquote p {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--dark);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.blockquote cite {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    color: var(--gray-2);
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: .05em;
    position: relative;
    z-index: 1;
}

/* ── TIMELINE CAROUSEL ─────────────────────────────────────── */
.timeline-carousel {
    background: var(--white);
    overflow: visible;
    position: relative;
    padding-bottom: 48px;
}

.timeline-carousel__wrap {
    position: relative;
    width: 100%;
    overflow: visible;
}

/* Horizontal Track */
.timeline-carousel__track {
    display: flex;
    gap: 24px;
    padding: 20px calc((100vw - 1200px) / 2 + 24px) 64px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

@media (max-width: 1248px) {
    .timeline-carousel__track {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.timeline-carousel__track:active {
    cursor: grabbing;
    scroll-behavior: auto;
    /* disable smooth when dragged */
}

.timeline-carousel__track::-webkit-scrollbar {
    display: none;
}

/* Spacer to allow scrolling past last item smoothly */
/* Fade Overlays */
.timeline-carousel__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.timeline-carousel__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent);
}

.timeline-carousel__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent);
}

.timeline-carousel__spacer {
    flex: 0 0 calc((100vw - 1200px) / 2 + 24px);
}

/* Cards */
.timeline-carousel__card {
    flex: 0 0 320px;
    background: var(--gray-5);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, .04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    scroll-snap-align: center;
    user-select: none;
    /* disable text selection while dragging */
}

.timeline-carousel__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    background: var(--white);
    border-color: rgba(30, 58, 138, .1);
}

.timeline-carousel__card--active {
    background: linear-gradient(135deg, rgba(30, 58, 138, .04), rgba(5, 150, 105, .05));
    border-color: rgba(30, 58, 138, .15);
}

.timeline-carousel__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.timeline-carousel__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, .08);
    transition: var(--transition);
}

.timeline-carousel__card:hover .timeline-carousel__icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--secondary);
    box-shadow: 0 8px 16px rgba(249, 115, 22, .15);
}

.timeline-carousel__card--active .timeline-carousel__icon {
    background: var(--primary);
    animation: nodeGlow 2.5s infinite alternate;
}

.timeline-carousel__year {
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    letter-spacing: .02em;
}

.timeline-carousel__title {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.timeline-carousel__text {
    font-size: .875rem;
    color: var(--gray-2);
    line-height: 1.7;
}

/* Edge Fade Masks */
.timeline-carousel__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.timeline-carousel__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--white) 15%, transparent);
}

.timeline-carousel__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--white) 15%, transparent);
}

/* Controls */
.timeline-carousel__controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-4);
    color: var(--primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.nav-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes nodeGlow {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(30, 58, 138, .15), 0 4px 16px rgba(30, 58, 138, .3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(30, 58, 138, .08), 0 4px 24px rgba(30, 58, 138, .5);
    }
}

@media (max-width: 768px) {
    .timeline-carousel__card {
        flex: 0 0 calc(min(80vw, 300px));
        padding: 20px;
    }

    .timeline-carousel__fade {
        width: 30px;
    }
}


/* ── IMPACT AREAS ──────────────────────────────────────────── */
.impact {
    background: var(--gray-5);
}

.impact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.impact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .05);
}

.impact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.impact-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.impact-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.impact-card:hover .impact-card__img {
    transform: scale(1.08);
}

.impact-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 25, 65, .6), transparent 60%);
}

.impact-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 900;
    color: var(--white);
}

.impact-card__body {
    padding: 24px;
}

.impact-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.impact-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.impact-card__text {
    font-size: .875rem;
    color: var(--gray-2);
    line-height: 1.7;
}

/* ── STATS ─────────────────────────────────────────────────── */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-item__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .2));
}

.stat-item__num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-item__num .suffix {
    color: var(--secondary);
    font-size: .7em;
}

.stat-item__label {
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    margin-top: 8px;
    letter-spacing: .03em;
}

/* ── CHAIRMAN ──────────────────────────────────────────────── */
.chairman {
    background: var(--white);
}

.chairman__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.chairman__img-wrap {
    position: relative;
}

.chairman__img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.chairman__frame {
    position: absolute;
    inset: -12px;
    border-radius: calc(var(--radius-lg) + 12px);
    border: 2px dashed rgba(30, 58, 138, .2);
    pointer-events: none;
}

.chairman__accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    border-radius: var(--radius-md);
    opacity: .1;
}

.chairman__quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--primary);
    line-height: 1.5;
    margin: 24px 0 32px;
    padding: 0;
}

.chairman__quote::before {
    content: '\201C';
    color: var(--secondary);
    font-size: 3rem;
    line-height: 0;
    vertical-align: -.4em;
}

.chairman__text {
    font-size: .975rem;
    line-height: 1.8;
    color: var(--gray-1);
    margin-bottom: 24px;
}

.chairman__sig {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.chairman__name-title {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-2);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ── VIDEO SECTION ─────────────────────────────────────────── */
.video-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #FFF7ED 100%);
    text-align: center;
}

.video-wrap {
    position: relative;
    max-width: 800px;
    margin: 48px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform .4s ease;
}

.video-wrap:hover .video-thumb {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 65, .45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: var(--transition);
}

.video-wrap:hover .video-overlay {
    background: rgba(15, 25, 65, .55);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
    animation: playPulse 2.5s ease infinite;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    margin-left: 4px;
}

.video-caption {
    color: rgba(255, 255, 255, .8);
    font-size: .875rem;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    position: relative;
    width: min(880px, 92vw);
}

.lightbox iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: var(--radius-md);
}

.lightbox__close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, .3);
}

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery {
    background: var(--bg);
}

.gallery__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 40px 0 32px;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: .838rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--gray-2);
    background: var(--white);
    border: 1.5px solid var(--gray-4);
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery__grid {
    columns: 3;
    gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .45s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 25, 65, .7), transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__caption {
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials {
    background: var(--white);
    overflow: visible;
}

.testimonials-carousel-wrap {
    position: relative;
    width: 100%;
    margin: 48px auto 0;
    overflow: visible;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 20px calc((100vw - 1200px) / 2 + 24px) 48px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

@media (max-width: 1248px) {
    .testimonials-track {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.testimonials-track:active {
    cursor: grabbing;
    scroll-behavior: auto;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testi-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.testi-fade--left {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent);
}

.testi-fade--right {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent);
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.testi-card {
    /* Show roughly 3 cards on desktop, 2 on tablet, 1 on mobile */
    flex: 0 0 380px;
    max-width: 100%;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-4);
    transition: var(--transition);
    background: var(--white);
    scroll-snap-align: center;
    user-select: none;
}

@media (max-width: 1024px) {
    .testi-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {
    .testi-card {
        flex: 0 0 280px;
        padding: 24px;
    }
}

.testi-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testi-card__stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 16px;
}

.testi-card__text {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--gray-1);
    margin-bottom: 24px;
}

.testi-card__text::before {
    content: '\201C';
    color: var(--secondary);
    font-size: 1.5rem;
    line-height: 0;
    vertical-align: -.25em;
}

.testi-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testi-card__name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--dark);
}

.testi-card__role {
    font-size: .78rem;
    color: var(--gray-2);
    margin-top: 2px;
}

/* ── FINANCIAL ─────────────────────────────────────────────── */
.financial {
    background: var(--gray-5);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 48px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: .8rem;
    font-weight: 700;
    color: var(--dark);
    border: 1.5px solid var(--gray-4);
}

.trust-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.financial__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.doc-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition);
}

.doc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.doc-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(30, 58, 138, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.doc-card__title {
    font-weight: 700;
    font-size: .9rem;
    color: var(--dark);
}

.doc-card__meta {
    font-size: .78rem;
    color: var(--gray-2);
}

.doc-card__dl {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--primary);
    transition: var(--transition-fast);
}

.doc-card__dl:hover {
    background: var(--primary);
    color: var(--white);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact {
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gray-1);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-4);
    border-radius: var(--radius-md);
    font-size: .925rem;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, .1);
}

.form-control::placeholder {
    color: var(--gray-3);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact__info {
    padding-top: 8px;
}

.contact__info-card {
    background: var(--gray-5);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-4);
}

.contact__info-item:last-child {
    border-bottom: none;
}

.contact__info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 58, 138, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact__info-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gray-2);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.contact__info-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 2px;
}

.map-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 200px;
    margin-top: 20px;
    background: var(--gray-4);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.wa-cta-card {
    background: linear-gradient(135deg, #1a8a3a, #25D366);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.wa-cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
}

.wa-cta-card svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    fill: white;
}

.wa-cta-card__text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.wa-cta-card__text span {
    font-size: .8rem;
    opacity: .85;
}

/* ── FLOATING WA BUTTON ────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
    animation: float 3s ease-in-out infinite;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, .6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    font-size: .75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
    background: var(--dark-2);
    color: rgba(255, 255, 255, .75);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 64px;
}



.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.footer__logo-name {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
}

.footer__logo-tag {
    font-size: .65rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.footer__desc {
    font-size: .875rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, .5);
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__links a::before {
    content: '→';
    font-size: .7rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__links a:hover::before {
    opacity: .6;
}



/* ── Premium Newsletter CTA (Consistent Version) ───────────── */
.cta-newsletter {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.cta-newsletter .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-newsletter .section-title span {
    color: var(--secondary);
}

.cta-newsletter .section-sub {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.05rem;
}

.newsletter-box {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.newsletter-input-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 16px 24px;
    padding-left: 50px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1.5px solid var(--gray-4);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
    background: #fff;
    outline: none;
}

.newsletter-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-3);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input:focus+.newsletter-icon {
    color: var(--primary);
}

.newsletter-btn {
    padding: 16px 32px;
    min-width: 150px;
    border: none;
}

.newsletter-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--gray-2);
}

.trust-avatars {
    display: flex;
    margin-left: 5px;
}

.trust-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    background: var(--gray-4);
    object-fit: cover;
}

.trust-avatar:first-child {
    margin-left: 0;
}

@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .newsletter-box {
        padding: 30px 20px;
    }
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .8rem;
    margin-bottom: 12px;
}

.footer__contact-icon {
    opacity: .5;
    flex-shrink: 0;
    font-size: .9rem;
    margin-top: .15rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.footer__copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    transition: var(--transition-fast);
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, .75);
}

.footer__reg-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.reg-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(5, 150, 105, .15);
    border: 1px solid rgba(5, 150, 105, .3);
    color: var(--accent-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes kenBurns {
    0% {
        transform: scale(1.0) translateY(0px);
    }

    50% {
        transform: scale(1.08) translateY(-8px);
    }

    100% {
        transform: scale(1.14) translateY(-4px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

@keyframes playPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .5)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Reveal utilities */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media(max-width:1024px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about__grid,
    .chairman__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__images {
        height: 340px;
    }

    .about__img-main {
        width: 70%;
        height: 85%;
    }

    .about__img-accent {
        width: 52%;
        height: 52%;
    }
}

@media(max-width:768px) {
    .section {
        padding: 64px 0;
    }

    .navbar__menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .impact__grid {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        columns: 2;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .financial__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__ctas {
        flex-direction: column;
        gap: 12px;
    }

    .btn--lg {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .mission-cards {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .gallery__grid {
        columns: 1;
    }

    .financial__grid {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    background: #fff;
    padding: 48px;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(249, 115, 22, 0.08);
    color: #F97316;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.contact-badge--alt {
    background: rgba(30, 58, 138, 0.06);
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid #f1f5f9;
    background: #fff;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.05);
}

.contact-info-wrapper {
    padding-left: 0;
}

.contact-item-card {
    display: flex;
    gap: 24px;
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(30, 58, 138, 0.1);
}

.contact-item-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 58, 138, 0.04);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item-card:hover .contact-item-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.contact-item-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
    font-family: var(--font-heading);
}

.contact-item-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.contact-item-content a:hover {
    color: #F97316;
}

.contact-map-full {
    width: 100%;
    margin-top: 0;
    line-height: 0;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .contact-item-card {
        padding: 24px;
        gap: 16px;
    }

    .contact-item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* -- Partners Section ------------------------- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 48px;
}

.partner-logo {
    max-width: 160px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    width: 100%;
    height: auto;
}

/* ── Loader & Skeleton Styles ───────────────── */
.content-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    grid-column: 1 / -1;
    width: 100%;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid var(--gray-6);
    border-bottom-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.skeleton-card {
    background: #f8fafc;
    border-radius: var(--radius-lg);
    height: 400px;
    overflow: hidden;
    position: relative;
}

.skeleton-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}