* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #06345c;
    --blue-dark: #022844;
    --blue-light: #0b6f9f;
    --cyan: #55d8ff;
    --text: #15334f;
    --muted: rgba(21, 51, 79, 0.72);
    --white: #ffffff;
    --soft-bg: #eef5f9;
    --card-border: rgba(6, 52, 92, 0.12);
    --shadow-soft: 0 18px 45px rgba(6, 52, 92, 0.09);
    --shadow-strong: 0 32px 80px rgba(6, 52, 92, 0.18);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

::selection {
    background: var(--blue);
    color: #fff;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-light), var(--cyan));
    box-shadow: 0 0 14px rgba(66, 208, 245, 0.45);
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    filter: blur(2px);
    transform: translate(-50%, -50%) scale(0.7);
    background: radial-gradient(circle, rgba(66, 208, 245, 0.12), rgba(10, 111, 159, 0.04) 42%, transparent 72%);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.section {
    padding: 100px 6%;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: var(--blue);
    font-size: clamp(38px, 4.5vw, 48px);
    letter-spacing: 1px;
    margin-bottom: 55px;
}

.section-title::after {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    background: var(--blue);
    margin: 14px auto 0;
    border-radius: 999px;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 22px 0;
    background: transparent;
}

.header-container {
    width: min(1320px, 92%);
    min-height: 104px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    position: relative;
    z-index: 160;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 142px;
    height: auto;
    filter: drop-shadow(0 12px 18px rgba(6, 52, 92, 0.08));
    transition: filter 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
}

.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translate(-50%, -50%);
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 10px 2px;
    transition: color 0.22s ease, transform 0.22s ease;
}

.nav-links a b {
    font: inherit;
    color: inherit;
}

.nav-links a span {
    display: none;
}

.nav-links a::before {
    content: "";
    position: absolute;
    inset: 4px -10px;
    border-radius: 999px;
    background: rgba(10, 111, 159, 0.07);
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: width 0.22s ease, background 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-light);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
    transform: scaleX(1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    background: var(--blue-light);
}

.header-actions {
    margin-left: auto;
    padding-right: 154px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.donate-btn,
.mission-donate-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--blue), #075987);
    box-shadow: 0 14px 32px rgba(6, 52, 92, 0.22), 0 0 0 0 rgba(10, 111, 159, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.donate-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.mission-donate-btn {
    padding: 17px 30px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.4px;
    box-shadow: 0 18px 40px rgba(6, 52, 92, 0.20), 0 0 0 0 rgba(10, 111, 159, 0.24);
}

.donate-heart,
.mission-donate-btn span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    font-size: 15px;
    line-height: 1;
    animation: heartPulse 2.2s ease-in-out infinite;
}

.donate-btn:hover,
.mission-donate-btn:hover {
    background: linear-gradient(135deg, var(--blue-light), #0785bd);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 48px rgba(6, 52, 92, 0.28), 0 0 0 6px rgba(10, 111, 159, 0.08);
}

.language-switch {
    position: fixed;
    top: 28px;
    right: 32px;
    z-index: 220;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(6, 52, 92, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(6, 52, 92, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.lang-btn {
    width: 39px;
    height: 34px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--blue);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.lang-btn:hover {
    transform: translateY(-1px);
    background: rgba(6, 52, 92, 0.08);
}

.lang-btn.active {
    background: var(--blue);
    color: white;
    box-shadow: 0 8px 18px rgba(6, 52, 92, 0.20);
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 86px;
    right: 22px;
    z-index: 220;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(6, 52, 92, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(6, 52, 92, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--blue);
    border-radius: 999px;
    transition: transform 0.28s cubic-bezier(.2, .8, .2, 1), opacity 0.22s ease, background 0.28s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.22);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
    }
}

.shine-target::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -145%;
    z-index: 4;
    width: 62%;
    height: 300%;
    pointer-events: none;
    opacity: 0;
    transform: rotate(18deg);
    background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.18) 50%, transparent 76%);
}

.shine-target.is-shining::before {
    animation: smoothShine 1.05s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes smoothShine {
    0% { left: -145%; opacity: 0; }
    18%, 78% { opacity: 1; }
    100% { left: 145%; opacity: 0; }
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 135px 6% 70px;
    background: url("Hero.png") center / cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.20), transparent 35%), linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.07));
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.32;
    pointer-events: none;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-one {
    width: 190px;
    height: 190px;
    background: rgba(66, 208, 245, 0.14);
    top: 22%;
    left: 9%;
}

.shape-two {
    width: 250px;
    height: 250px;
    background: rgba(6, 52, 92, 0.08);
    right: 8%;
    bottom: 10%;
    animation-delay: 1.4s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-16px) scale(1.04); }
}

.hero-content {
    width: min(900px, 90%);
    position: relative;
    z-index: 2;
    animation: heroFadeUp 0.75s ease both;
}

.hero-kicker {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--blue-light);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero h1 {
    position: relative;
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 12vw, 135px);
    letter-spacing: clamp(1px, 0.55vw, 10px);
    line-height: 0.98;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    color: transparent;
    background: linear-gradient(105deg, var(--blue) 0%, var(--blue) 44%, rgba(31, 126, 170, 0.45) 48%, rgba(255, 255, 255, 0.50) 50%, rgba(31, 126, 170, 0.45) 52%, var(--blue) 56%, var(--blue) 100%);
    background-size: 340% 100%;
    background-position: 125% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitle 0.8s ease both, heroSoftTextShine 10s cubic-bezier(.18, .72, .18, 1) infinite;
}

.hero-act {
    display: inline-block;
    color: transparent;
    background: linear-gradient(105deg, #0B6F9F 0%, #0B6F9F 44%, rgba(66, 208, 245, 0.50) 48%, rgba(255, 255, 255, 0.50) 50%, rgba(66, 208, 245, 0.50) 52%, #0B6F9F 56%, #0B6F9F 100%);
    background-size: 340% 100%;
    background-position: 125% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroSoftTextShine 10s cubic-bezier(.18, .72, .18, 1) infinite;
}

@keyframes heroSoftTextShine {
    0%, 74% { background-position: 125% 0; }
    88%, 100% { background-position: -125% 0; }
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 24px 0 20px;
    animation: heroFadeUp 0.8s ease both;
}

.subtitle span {
    width: 85px;
    height: 3px;
    background: var(--blue);
    border-radius: 999px;
}

.subtitle p {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--blue);
    font-size: clamp(24px, 3.3vw, 34px);
    font-weight: 700;
    letter-spacing: clamp(2px, 0.55vw, 6px);
    text-transform: uppercase;
}

.hero-text {
    max-width: 620px;
    margin: 0 auto 35px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    animation: heroFadeUp 0.85s ease both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.9s ease both;
}

.main-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.main-btn {
    background: var(--blue);
}

.ghost-btn {
    color: var(--blue);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(6, 52, 92, 0.16);
    backdrop-filter: blur(8px);
}

.hero-only-btn {
    min-width: 260px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--blue);
    border: 1px solid rgba(6, 52, 92, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(6, 52, 92, 0.12);
}

.main-btn:hover,
.ghost-btn:hover,
.hero-only-btn:hover {
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 34px;
    left: 50%;
    z-index: 3;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(6, 52, 92, 0.6);
    border-radius: 999px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(.2, .8, .2, 1), filter 0.35s ease;
}

.scroll-down.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(14px) scale(0.92);
    filter: blur(4px);
}

.scroll-down span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.6s ease infinite;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translate(-50%, 0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 20px); }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTitle {
    from { opacity: 0; transform: translateY(24px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Reveal */
.reveal-section .section-title,
.reveal-section h2,
.reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.62s cubic-bezier(.2, .8, .2, 1), transform 0.62s cubic-bezier(.2, .8, .2, 1);
}

.reveal-section.visible .section-title,
.reveal-section.visible h2,
.reveal-section.visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Mission */
.mission {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 8% 12%, rgba(10, 111, 159, 0.08), transparent 32%), radial-gradient(circle at 92% 80%, rgba(6, 52, 92, 0.06), transparent 35%), linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.mission::before,
.mission::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
}

.mission::before {
    top: 80px;
    right: -220px;
    background: rgba(10, 111, 159, 0.045);
}

.mission::after {
    left: -180px;
    bottom: -220px;
    background: rgba(6, 52, 92, 0.035);
}

.mission-container {
    width: min(1200px, 90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mission-content {
    max-width: 590px;
}

.mission-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 5vw, 78px);
    line-height: 0.98;
    text-transform: uppercase;
    color: var(--blue);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.mission-text {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 26px;
}

.mission-highlight {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    margin-bottom: 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(6, 52, 92, 0.10);
    box-shadow: 0 18px 45px rgba(6, 52, 92, 0.07);
}

.mission-highlight span {
    width: 5px;
    min-height: 70px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--blue-light), var(--blue));
    flex-shrink: 0;
}

.mission-highlight p {
    color: var(--blue);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 800;
}

.mission-points {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
}

.mission-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(6, 52, 92, 0.09);
    box-shadow: 0 12px 34px rgba(6, 52, 92, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mission-point:hover {
    transform: translateX(6px);
    border-color: rgba(10, 111, 159, 0.18);
    box-shadow: 0 18px 42px rgba(6, 52, 92, 0.11);
}

.mission-point strong {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--blue-light);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.mission-point h3 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 25px;
    line-height: 1;
    margin-bottom: 5px;
}

.mission-point p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.mission-visual {
    position: relative;
}

.mission-slider {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    clip-path: inset(0 round 32px);
    background: white;
    box-shadow: 0 35px 90px rgba(6, 52, 92, 0.20), 0 0 0 1px rgba(255, 255, 255, 0.72);
    transform: translateZ(0);
    backface-visibility: hidden;
    isolation: isolate;
}

.mission-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(2, 40, 68, 0.02), rgba(2, 40, 68, 0.13)), linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 42%);
    pointer-events: none;
}

.mission-slider-track {
    position: relative;
    width: 100%;
    height: 510px;
}

.mission-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.035);
    pointer-events: none;
    transition: opacity 0.9s cubic-bezier(.2, .8, .2, 1), transform 1.15s cubic-bezier(.2, .8, .2, 1);
}

.mission-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.mission-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 4.5s ease;
}

.mission-slide.active img {
    transform: scale(1.055);
}

.mission-image-badge {
    position: absolute;
    left: 22px;
    top: 22px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 44px);
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 12px 30px rgba(6, 52, 92, 0.14);
}

.mission-image-badge span,
.mission-image-badge strong {
    font-family: 'Inter', sans-serif;
    color: var(--blue);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.mission-image-badge span {
    color: var(--blue-light);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--blue);
    display: grid;
    place-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 14px 34px rgba(6, 52, 92, 0.18);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.slider-arrow:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 20px 44px rgba(6, 52, 92, 0.26);
}

.slider-prev { left: 18px; }
.slider-next { right: 18px; }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 14px 34px rgba(6, 52, 92, 0.14);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

.slider-dots button {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 999px;
    background: rgba(6, 52, 92, 0.28);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.slider-dots button.active {
    width: 28px;
    background: var(--blue);
}

.mission-impact-row {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mission-impact-row div {
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(6, 52, 92, 0.10);
    box-shadow: 0 16px 42px rgba(6, 52, 92, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mission-impact-row div:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 111, 159, 0.18);
    box-shadow: 0 20px 48px rgba(6, 52, 92, 0.13);
}

.mission-impact-row strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 25px;
    line-height: 1;
    margin-bottom: 7px;
}

.mission-impact-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

/* Projects */
.projects {
    background: linear-gradient(180deg, #edf3f7 0%, #f6fbff 100%);
    position: relative;
}

.projects-header {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.projects-header .section-title {
    margin-bottom: 18px;
}

.projects-header p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

.projects-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.project-card {
    min-height: 440px;
    position: relative;
    border-radius: 24px;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    perspective: 1400px;
    overflow: visible;
    outline: none;
    transition: transform 0.34s cubic-bezier(.2, .8, .2, 1);
}

.project-card:hover {
    transform: translateY(-9px);
}

.project-card-inner {
    position: relative;
    width: 100%;
    min-height: inherit;
    border-radius: inherit;
    transform-style: preserve-3d;
    box-shadow: 0 25px 60px rgba(6, 52, 92, 0.18);
    transition: transform 0.88s cubic-bezier(.16, .84, .24, 1), box-shadow 0.34s cubic-bezier(.2, .8, .2, 1);
}

.project-card:hover .project-card-inner {
    box-shadow: 0 32px 72px rgba(6, 52, 92, 0.26);
}

.project-card.is-flipped .project-card-inner {
    transform: rotateY(180deg);
}

.project-face {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.project-face-front {
    background: var(--blue);
}

.project-face-front::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(2, 40, 68, 0.94), rgba(2, 40, 68, 0.20)), linear-gradient(135deg, rgba(10, 111, 159, 0.14), transparent);
    pointer-events: none;
}

.project-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.52s ease;
}

.project-card:hover .project-face-front img {
    transform: scale(1.075);
}

.project-content {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: white;
}

.project-content h3,
.project-face-back h3 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}

.project-content h3 {
    font-size: 31px;
    margin-bottom: 8px;
}

.project-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 16px;
}

.project-flip-hint {
    position: relative;
    z-index: 5;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    opacity: 0.9;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.project-card:hover .project-flip-hint {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}

.project-face-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    padding: 26px;
    color: white;
    background: radial-gradient(circle at 18% 8%, rgba(98, 217, 255, 0.20), transparent 34%), radial-gradient(circle at 88% 92%, rgba(255, 255, 255, 0.08), transparent 38%), linear-gradient(145deg, rgba(2, 40, 68, 0.98), rgba(4, 59, 97, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.project-back-content {
    position: relative;
    z-index: 2;
}

.project-back-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(98, 217, 255, 0.12);
    border: 1px solid rgba(98, 217, 255, 0.20);
    color: #62d9ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.project-face-back h3 {
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
}

.project-face-back p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 650;
    margin-bottom: 12px;
}

.project-card:focus-visible .project-card-inner {
    outline: 4px solid rgba(66, 208, 245, 0.34);
    outline-offset: 5px;
}

/* CTA */
.cta {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.10), transparent 30%), linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    text-align: center;
    padding: 86px 6%;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-size: clamp(38px, 5vw, 42px);
    letter-spacing: 1px;
    margin-bottom: 42px;
}

.cta h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    background: white;
    margin: 14px auto 0;
    border-radius: 999px;
}

.cta-grid {
    max-width: 790px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.cta-box {
    border: 2px solid rgba(255, 255, 255, 0.68);
    color: white;
    text-decoration: none;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.cta-box:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-3px);
}

.cta-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    transition: 0.25s ease;
}

.cta-box h3 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 30px;
}

.cta-box p {
    font-size: 15px;
}

/* Payments Bank only */
.payments {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(10, 111, 159, 0.06), transparent 34%), radial-gradient(circle at bottom right, rgba(6, 52, 92, 0.045), transparent 38%), white;
}

.payments-header {
    text-align: center;
}

.payments .section-title {
    margin-bottom: 18px;
}

.payments-text {
    max-width: 680px;
    margin: 0 auto 44px;
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.bank-donation-shell {
    position: relative;
    width: min(1120px, 92%);
    margin: 0 auto;
    padding: 28px;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(239, 248, 253, 0.72));
    border: 1px solid rgba(6, 52, 92, 0.10);
    box-shadow: 0 32px 90px rgba(6, 52, 92, 0.13);
    overflow: hidden;
}

.bank-donation-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.bank-donation-bg-one {
    width: 260px;
    height: 260px;
    background: rgba(66, 208, 245, 0.15);
    top: -100px;
    right: 10%;
}

.bank-donation-bg-two {
    width: 360px;
    height: 360px;
    background: rgba(6, 52, 92, 0.06);
    bottom: -160px;
    left: -90px;
}

.bank-donation-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 26px;
    align-items: stretch;
}

.bank-donation-main,
.bank-details-panel {
    border-radius: 30px;
}

.bank-donation-main {
    position: relative;
    overflow: hidden;
    padding: 44px;
    color: white;
    background: radial-gradient(circle at 95% 95%, rgba(255, 255, 255, 0.12), transparent 35%), linear-gradient(145deg, #0b527f, #06345c 55%, #042943);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.bank-donation-main::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 52px solid rgba(255, 255, 255, 0.055);
    pointer-events: none;
}

.bank-donation-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #65d8ff;
    font-size: 30px;
    margin-bottom: 24px;
}

.bank-donation-kicker {
    display: block;
    margin-bottom: 12px;
    color: #65d8ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2.7px;
    text-transform: uppercase;
}

.bank-donation-main h3 {
    position: relative;
    z-index: 2;
    max-width: 630px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(46px, 5vw, 68px);
    line-height: 1.05;
    padding-top: 0.04em;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    overflow: visible;
}

.bank-donation-main p {
    position: relative;
    z-index: 2;
    max-width: 590px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 700;
}

.bank-benefit-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.bank-benefit-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.105);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 800;
}

.bank-benefit-item i {
    color: #65d8ff;
}

.bank-details-panel {
    padding: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(6, 52, 92, 0.10);
    box-shadow: 0 18px 48px rgba(6, 52, 92, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bank-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.bank-panel-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10, 111, 159, 0.08);
    color: var(--blue-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bank-panel-top h4 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 31px;
    line-height: 1.04;
}

.bank-panel-mark {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: rgba(6, 52, 92, 0.07);
    color: var(--blue);
}

.bank-data-list {
    display: grid;
    gap: 14px;
}

.bank-data-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: #f4f9fc;
    border: 1px solid rgba(6, 52, 92, 0.10);
}

.bank-data-text em {
    display: block;
    margin-bottom: 8px;
    color: rgba(21, 51, 79, 0.55);
    font-style: normal;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.bank-data-text strong {
    display: block;
    color: var(--blue);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 900;
    word-break: break-word;
}

.copy-bank-btn {
    min-width: 112px;
    height: 48px;
    border: none;
    border-radius: 15px;
    background: var(--blue);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.copy-bank-btn:hover {
    transform: translateY(-2px);
    background: var(--blue-light);
    box-shadow: 0 12px 28px rgba(6, 52, 92, 0.16);
}

.copy-bank-btn.copied {
    background: #11845d;
}

.bank-note-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 15px 16px;
    border-radius: 17px;
    background: rgba(10, 111, 159, 0.07);
    border: 1px solid rgba(10, 111, 159, 0.11);
}

.bank-note-box i {
    margin-top: 2px;
    color: var(--blue-light);
}

.bank-note-box p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}

.copy-feedback {
    min-height: 22px;
    margin-top: 14px;
    color: #11845d;
    font-size: 14px;
    font-weight: 900;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.copy-feedback.visible {
    opacity: 1;
}

.copy-feedback.error {
    color: #b83232;
}

/* Footer / Contact */
.footer {
    background: radial-gradient(circle at 14% 10%, rgba(66, 208, 245, 0.10), transparent 26%), radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.06), transparent 30%), radial-gradient(circle at 50% 85%, rgba(10, 111, 159, 0.16), transparent 38%), linear-gradient(135deg, var(--blue-dark), #043b61);
    color: white;
    padding-top: 92px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.055), transparent 65%);
    top: -320px;
    right: -180px;
}

.contact-top {
    width: min(860px, 90%);
    margin: 0 auto 54px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-top .section-kicker {
    color: #62d9ff;
}

.contact-top h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(46px, 6vw, 78px);
    line-height: 0.98;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.contact-top p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 650;
}

.contact-glass-wrap {
    width: min(900px, 90%);
    margin: 0 auto 82px;
    position: relative;
    z-index: 2;
}

.glass-card {
    position: relative;
    padding: 42px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.065)), radial-gradient(circle at 18% 0%, rgba(98, 217, 255, 0.13), transparent 35%), radial-gradient(circle at 90% 95%, rgba(255, 255, 255, 0.075), transparent 36%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.contact-form > * {
    position: relative;
    z-index: 3;
}

.form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.form-head span {
    display: block;
    color: #62d9ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-head h3 {
    font-family: 'Barlow Condensed', sans-serif;
    color: white;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 0.98;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.form-head p {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 650;
}

.form-head-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.48);
    font-size: 15px;
    pointer-events: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.textarea-wrap i {
    top: 22px;
    transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    outline: none;
    background: rgba(255, 255, 255, 0.105);
    color: white;
    padding: 16px 17px 16px 48px;
    border-radius: 17px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 12px 28px rgba(0, 0, 0, 0.07);
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    color: var(--blue);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 145px;
    padding-top: 18px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.input-wrap:focus-within i {
    color: #62d9ff;
    transform: translateY(-50%) scale(1.06);
}

.textarea-wrap:focus-within i {
    transform: scale(1.06);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(98, 217, 255, 0.48);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12), 0 0 0 4px rgba(98, 217, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.form-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 26px;
    border: none;
    border-radius: 17px;
    background: linear-gradient(135deg, #ffffff, #e9f8ff);
    color: var(--blue);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #ffffff, #d8f4ff);
    transform: translateY(-3px);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
    font-weight: 650;
}

.form-status {
    min-height: 24px;
    margin-top: 14px;
    margin-bottom: 0;
    color: white;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.form-status.success { color: #8fffc1; }
.form-status.error { color: #ffb2ac; }

.hidden-field {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.footer-container {
    width: min(1120px, 90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr 1.35fr 1.25fr;
    gap: 46px;
    padding-bottom: 62px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    width: 145px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    max-width: 190px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.footer h4 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer a,
.footer p {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.footer a:hover {
    color: white;
}

.footer-nav a {
    position: relative;
    width: fit-content;
    padding: 2px 0;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #62d9ff;
    transition: 0.25s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.contact-info-box {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 15px;
    margin-bottom: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.contact-info-box:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-info-box i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(98, 217, 255, 0.12);
    color: #62d9ff;
    font-size: 17px;
}

.contact-info-box span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-info-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.social-text {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px !important;
}

.social-card {
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.socialContainer {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.11);
    color: white;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0 !important;
    flex-shrink: 0;
    position: relative;
    transition: background-color 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease;
}

.socialContainer i {
    font-size: 24px;
    transition: transform 0.32s ease;
}

.socialContainer:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.20);
}

.containerOne:hover { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.containerTwo:hover { background: #000000; }
.containerThree:hover { background: #1877f2; }
.containerFour:hover { background: #1eb656; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.66);
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 1260px) {
    .header-container {
        width: min(1180px, 92%);
    }

    .nav-links {
        gap: 24px;
    }

    .header-actions {
        padding-right: 142px;
    }

    .donate-btn {
        padding: 14px 22px;
        font-size: 13px;
    }
}

@media (max-width: 1080px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-container,
    .bank-donation-card {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .mission-content {
        max-width: none;
    }

    .bank-donation-shell {
        width: min(850px, 92%);
    }

    .nav-links {
        gap: 18px;
    }

    .header-actions {
        padding-right: 132px;
    }
}

@media (max-width: 940px) {
    .header-actions {
        display: none;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 90px;
    }

    .site-header {
        padding: 18px 0;
    }

    .header-container {
        width: 90%;
        min-height: 132px;
        align-items: flex-start;
    }

    .logo img {
        width: 118px;
    }

    body.menu-open .logo img {
        filter: brightness(0) invert(1) contrast(1.05) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.20));
        transform: scale(1.02);
    }

    .language-switch {
        top: 18px;
        right: 22px;
    }

    .menu-toggle {
        display: block;
        top: 88px;
        right: 22px;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        z-index: 140;
        padding: 172px 24px 118px;
        min-height: 100vh;
        background: radial-gradient(circle at 12% 4%, rgba(98, 217, 255, 0.23), transparent 30%), radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.10), transparent 26%), radial-gradient(circle at 50% 100%, rgba(10, 111, 159, 0.32), transparent 42%), linear-gradient(145deg, rgba(2, 40, 68, 0.985), rgba(4, 59, 97, 0.985));
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 13px;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.42s cubic-bezier(.18, .9, .2, 1), opacity 0.32s ease;
    }

    .nav-links.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        width: 100%;
        min-height: 62px;
        padding: 0 18px;
        color: white;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 0.3px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065));
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .nav-links a span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.10);
        color: #62d9ff;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.8px;
    }

    .nav-links a::before,
    .nav-links a::after {
        display: none;
    }

    .section {
        padding: 78px 6%;
    }

    .hero {
        min-height: 680px;
        padding-top: 146px;
    }

    .subtitle {
        flex-direction: column;
        gap: 10px;
    }

    .subtitle span {
        width: 60px;
    }

    .mission-impact-row {
        grid-template-columns: 1fr;
    }

    .cta-grid,
    .form-row,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        text-align: center;
    }

    .footer-logo p,
    .social-text,
    .footer-nav a,
    .social-card {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-box {
        text-align: left;
    }
}

@media (max-width: 680px) {
    .section {
        padding: 68px 5%;
    }

    .hero {
        min-height: 640px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        font-size: clamp(42px, 11.5vw, 68px);
        letter-spacing: 1px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .main-btn,
    .ghost-btn,
    .hero-only-btn {
        width: 100%;
        max-width: 280px;
    }

    .scroll-down {
        display: none;
    }

    .mission-container {
        width: 100%;
    }

    .mission-highlight {
        padding: 18px;
    }

    .mission-point {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mission-slider-track {
        height: 360px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card,
    .project-card-inner {
        min-height: 420px;
    }

    .bank-donation-shell {
        width: 100%;
        padding: 18px;
        border-radius: 28px;
    }

    .bank-donation-main,
    .bank-details-panel {
        padding: 28px;
        border-radius: 24px;
    }

    .bank-data-row {
        grid-template-columns: 1fr;
    }

    .copy-bank-btn {
        width: 100%;
    }

    .cta-box {
        padding: 26px;
        gap: 18px;
    }

    .cta-icon {
        width: 54px;
        height: 54px;
    }

    .glass-card {
        padding: 28px;
        border-radius: 28px;
    }
}

@media (max-width: 460px) {
    .header-container {
        width: 90%;
    }

    .logo img {
        width: 104px;
    }

    .language-switch {
        top: 16px;
        right: 18px;
        transform: scale(0.94);
        transform-origin: top right;
    }

    .menu-toggle {
        top: 84px;
        right: 18px;
        width: 52px;
        height: 52px;
        border-radius: 18px;
    }

    .nav-links {
        padding: 160px 22px 112px;
    }

    .nav-links a {
        min-height: 58px;
        font-size: 17px;
        border-radius: 16px;
    }

    .hero {
        min-height: 610px;
        padding-top: 136px;
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .subtitle p {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 38px;
    }

    .mission-title {
        font-size: 40px;
    }

    .mission-text,
    .mission-highlight p {
        font-size: 15px;
    }

    .mission-slider {
        border-radius: 24px;
        clip-path: inset(0 round 24px);
    }

    .mission-slider-track {
        height: 300px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }

    .slider-dots {
        bottom: 14px;
        padding: 7px 10px;
    }

    .slider-dots button {
        width: 8px;
        height: 8px;
    }

    .slider-dots button.active {
        width: 22px;
    }

    .mission-image-badge {
        left: 14px;
        top: 14px;
        max-width: calc(100% - 28px);
        padding: 9px 12px;
    }

    .mission-image-badge span,
    .mission-image-badge strong {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .project-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .project-content h3 {
        font-size: 28px;
    }

    .project-flip-hint {
        padding: 8px 11px;
        font-size: 9px;
    }

    .project-face-back {
        padding: 22px;
    }

    .project-face-back h3 {
        font-size: 29px;
    }

    .project-face-back p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .bank-donation-main h3 {
        font-size: clamp(38px, 13vw, 50px);
        line-height: 1.08;
    }

    .bank-donation-main p {
        font-size: 15px;
    }

    .bank-panel-top {
        align-items: flex-start;
    }

    .bank-panel-mark {
        display: none;
    }

    .contact-top h2 {
        font-size: 42px;
    }

    .contact-top p {
        font-size: 15px;
    }

    .glass-card {
        padding: 22px;
        border-radius: 24px;
    }

    .form-head h3 {
        font-size: 36px;
    }

    .form-head-icon {
        display: none;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding-left: 44px;
    }

    .social-card {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
