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

:root {
    --navy: #071c33;
    --blue: #123c69;
    --gold: #ffc400;
    --green: #2E8B57;
    --cream: #fffaf0;
    --white: #ffffff;
    --text: #102a43;
    --muted: #64748b;
    --shadow: 0 25px 70px rgba(7, 28, 51, 0.14);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 600;
    font-size: 14px;
}

.hero {
    min-height: 100vh;
    padding: 170px 8% 130px;
    position: relative;
    background:
        linear-gradient(90deg, rgba(5,15,30,.97), rgba(5,15,30,.78), rgba(5,15,30,.25)),
        radial-gradient(circle at 78% 40%, rgba(255,196,0,.32), transparent 28%),
        linear-gradient(135deg, #061526, #123c69 55%, #ffe4a3);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 690px;
}

.small-title {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.02;
    margin: 22px 0;
    color: white;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #eef6ff;
    max-width: 590px;
}

.hero-buttons {
    margin-top: 36px;
}

.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    margin-right: 14px;
}

.primary-btn {
    background: var(--gold);
    color: var(--navy);
}

.secondary-btn {
    color: white;
    border: 2px solid rgba(255,255,255,.8);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.hero::after {
    content: "🌍";
    position: absolute;
    right: 10%;
    bottom: 12%;
    width: 390px;
    height: 390px;
    border-radius: 45px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.2);
    display: grid;
    place-items: center;
    font-size: 120px;
    box-shadow: var(--shadow);
}

.impact-floating {
    padding: 0 8%;
    background: var(--cream);
    position: relative;
    z-index: 6;
}

.impact-box {
    max-width: 1120px;
    width: 100%;
    margin: -70px auto 0;
    background: var(--white);
    border-radius: 26px;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: var(--shadow);
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-right: 1px solid rgba(7,28,51,.1);
    min-width: 0;
}

.impact-item:last-child {
    border-right: 0;
}

.impact-icon {
    font-size: 34px;
}

.impact-item h3 {
    font-size: 30px;
    color: var(--navy);
}

.impact-item p {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-header span {
    color: #c99700;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--navy);
    margin-top: 12px;
}

.services {
    padding: 110px 8%;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card {
    background: white;
    padding: 42px 28px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 18px 55px rgba(7,28,51,.08);
    transition: .35s;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    font-size: 34px;
    background: var(--green);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
}

.about-preview {
    padding: 110px 8%;
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-photo-card {
    min-height: 480px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.45), transparent 30%),
        linear-gradient(135deg, var(--navy), var(--green), var(--gold));
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.illustration-card {
    position: absolute;
    inset: 34px;
    border-radius: 28px;
    background: rgba(255,255,255,.14);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    backdrop-filter: blur(12px);
}

.illustration-card span {
    font-size: 74px;
    margin-bottom: 20px;
}

.illustration-card h3 {
    font-size: 34px;
    line-height: 1.2;
}

.floating-note {
    position: absolute;
    right: -20px;
    bottom: 45px;
    background: white;
    padding: 22px 28px;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.floating-note strong {
    display: block;
    font-size: 32px;
    color: var(--navy);
}

.about-content span {
    color: #c99700;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 46px;
    color: var(--navy);
    margin: 15px 0;
}

.about-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.about-points div {
    background: var(--cream);
    padding: 18px;
    border-radius: 18px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero::after {
        display: none;
    }

    .impact-box,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .impact-box,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 26px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 900;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--gold);
    color: var(--navy);
    display: grid;
    place-items: center;
}

.site-links a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    margin: 0 14px;
    font-weight: 700;
    font-size: 14px;
}

.nav-donate {
    background: white;
    color: var(--navy);
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.hero-v2 {
    min-height: 100vh;
    padding: 160px 8% 110px;
    background:
        linear-gradient(90deg, rgba(7,28,51,.98) 0%, rgba(7,28,51,.88) 48%, rgba(7,28,51,.35) 100%),
        radial-gradient(circle at 80% 35%, rgba(255,196,0,.35), transparent 28%),
        linear-gradient(135deg, #071c33, #123c69 55%, #ffe3a3);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

/* ===========================
   HERO MOBILE FIX
=========================== */

.hero-v2{

    width:100%;
    max-width:100%;
    overflow:hidden;

}

.hero-v2-content{

    min-width:0;

}

.hero-visual{

    min-width:0;

}

.hero-image{

    width:100%;
    height:100%;
    object-fit:cover;

}

.hero-v2-content {
    position: relative;
    z-index: 5;
}

.hero-kicker {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-v2 h1 {
    color: white;
    font-size: 74px;
    line-height: 1;
    letter-spacing: -3px;
    margin: 20px 0;
}

.hero-v2 h1 span {
    display: block;
    color: var(--gold);
}

.hero-v2 p {
    color: #e8f3ff;
    font-size: 18px;
    line-height: 1.8;
    max-width: 610px;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
}

.btn-main,
.btn-ghost {
    padding: 15px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.btn-main {
    background: var(--gold);
    color: var(--navy);
}

.btn-ghost {
    color: white;
    border: 2px solid rgba(255,255,255,.75);
}

.hero-trust {
    margin-top: 28px;
    color: white;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    z-index: 5;
}

.kid-card {
    position: absolute;
    right: 40px;
    top: 50px;
    width: 390px;
    min-height: 430px;
    border-radius: 42px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(18px);
    box-shadow: 0 35px 90px rgba(0,0,0,.25);
    padding: 42px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kid-face {
    font-size: 130px;
    margin-bottom: 24px;
}

.kid-card h3 {
    font-size: 34px;
    line-height: 1.1;
}

.kid-card p {
    color: #fff8d8;
    margin-top: 14px;
    font-weight: 700;
}

.mini-card {
    position: absolute;
    background: white;
    color: var(--navy);
    padding: 20px 24px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,.2);
}

.mini-card strong {
    display: block;
    font-size: 30px;
}

.mini-card span {
    color: var(--muted);
    font-weight: 700;
}

.card-top{
    left:15px;
}

.card-bottom{
    right:15px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .25;
}

.shape-one {
    width: 280px;
    height: 280px;
    background: var(--gold);
    right: -70px;
    top: 120px;
}

.shape-two {
    width: 180px;
    height: 180px;
    background: var(--green);
    right: 500px;
    bottom: 90px;
}

@media (max-width: 900px) {
    .site-links,
    .nav-donate {
        display: none;
    }

    .hero-v2 {
        grid-template-columns: 1fr;
        padding-top: 140px;
    }

    .hero-v2 h1 {
        font-size: 48px;
    }

    .hero-visual {
        display: none;
    }
}

.gallery-section {
    padding: 110px 8%;
    background: var(--cream);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    grid-auto-rows:230px;
    gap:22px;
    width:100%;
}

.gallery-card {
    border-radius: 30px;
    padding: 28px;
    color: white;
    background: linear-gradient(135deg, var(--navy), var(--green));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: .35s ease;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.gallery-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card.wide {
    grid-column: span 2;
}

.gallery-emoji {
    font-size: 70px;
    margin-bottom: auto;
}

.gallery-card h3 {
    font-size: 24px;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid,
    .gallery-card.large,
    .gallery-card.wide {
        grid-template-columns: 1fr;
        grid-column: span 1;
        grid-row: span 1;
    }

    .impact-box{
    grid-template-columns:1fr;
}

.impact-item{
    border-bottom:1px solid rgba(7,28,51,.08);
}

.impact-item:last-child{
    border-bottom:none;
}
}

.story-gallery {
    padding: 90px 8%;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 35px;
    align-items: center;
    color: white;
}

.story-left span,
.story-review span {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

.story-left h2 {
    font-size: 36px;
    margin: 15px 0 25px;
}

.story-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.story-images img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 22px;
}

.story-review {
    background: rgba(255,255,255,.08);
    padding: 30px;
    border-radius: 26px;
}

.story-review p {
    line-height: 1.7;
    margin: 15px 0;
}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-card.large,
.gallery-card.wide{

grid-column:span 1;
grid-row:span 1;

}

@media (max-width: 900px) {
    .story-gallery {
        grid-template-columns: 1fr;
    }
}

.brand-logo{
    width:42px;
    height:42px;
    object-fit:contain;
    display:block;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.brand-text h2{
    color:white;
    margin:0;
    font-size:28px;
    line-height:1;
}

.brand-text span{
    color:#FFC400;
    font-size:12px;
    letter-spacing:3px;
    font-weight:700;
}

.hero-image-card {
    position: absolute;
    right: 30px;
    top: 55px;
    width: 460px;
    height: 500px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.25);
}

.hero-image-placeholder{
    width:100%;
    height:100%;
    overflow:hidden;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .8s ease;
}

.hero-image:hover{
    transform:scale(1.05);
}

.hero-visual {
    position: relative;
    min-height: 560px;
    z-index: 5;
}

.hero-image-card {
    position: absolute;
    right: 40px;
    top: 80px;
    width: 430px;
    height: 460px;
    border-radius: 36px;
    overflow: hidden;
    z-index: 2;
}

.mini-card {
    position: absolute;
    background: white;
    color: var(--navy);
    padding: 18px 24px;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    z-index: 4;
    min-width: 170px;
}

.card-top{
    top: 15px;
    left:-60px;
    right:auto;
    z-index:6;
}

.card-bottom{
    bottom:35px;
    right:-15px;
    z-index:6;
}

.mini-card strong {
    display: block;
    font-size: 26px;
}

.mini-card span {
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.about-photo-card {
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 36px;
}

/* ===============================
   GALLERY SECTION
==================================*/

.story-gallery{
    padding:110px 8%;
    background:#071c33;
    display:grid;
    grid-template-columns:1fr 1.5fr 1fr;
    gap:35px;
    align-items:center;
}

.story-left span{
    color:#FFC400;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.story-left h2{
    color:white;
    font-size:42px;
    margin:18px 0 28px;
    line-height:1.2;
}

.story-images{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.story-images img{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:24px;
    transition:.45s ease;
    cursor:pointer;
}

.story-images img:hover{
    transform:translateY(-10px) scale(1.03);
}

.story-review{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    padding:30px;
    border-radius:26px;
    border:1px solid rgba(255,255,255,.12);
}

.story-review span{
    color:#FFC400;
    text-transform:uppercase;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.story-review p{
    color:white;
    line-height:1.8;
    margin:18px 0;
}

.story-review strong{
    color:white;
    font-size:18px;
}

@media(max-width:992px){

.story-gallery{
grid-template-columns:1fr;
}

.story-images{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.story-images{
grid-template-columns:1fr;
}

.story-images img{
height:280px;
}

}

.story-gallery{
    padding:90px 8%;
    background:#071c33;
    display:grid;
    grid-template-columns:0.8fr 1.4fr 0.9fr;
    gap:35px;
    align-items:center;
    overflow:hidden;
}

.story-images{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

.story-images img{
    width:100%;
    height:260px;
    object-fit:cover;
    object-position:center;
    border-radius:24px;
    display:block;
}

.story-images img:nth-child(1){
    height:230px;
    margin-top:30px;
}

.story-images img:nth-child(2){
    height:300px;
}

.story-images img:nth-child(3){
    height:230px;
    margin-top:30px;
}

.story-review{
    max-width:320px;
}

/* ===========================
   GALLERY FIX
=========================== */

.story-gallery{
    padding:90px 8%;
    background:#071c33;
    display:grid;
    grid-template-columns:0.9fr 1.4fr 1fr;
    gap:40px;
    align-items:center;
    overflow:hidden;
}

.story-images{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:18px;
}

.story-images img{
    width:170px;
    object-fit:cover;
    border-radius:28px;
    display:block;
    transition:.4s ease;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.story-images img:hover{
    transform:translateY(-12px) scale(1.03);
}

/* Left Image */
.story-images img:nth-child(1){
    height:260px;
    object-position:center 75%;
}

/* Middle Image */
.story-images img:nth-child(2){
    height:360px;
    object-position:40% center;
}

/* Right Image */
.story-images img:nth-child(3){
    height:260px;
    object-position:center 30%;
}

.story-review{
    max-width:320px;
}

@media(max-width:992px){

.story-gallery{
grid-template-columns:1fr;
}

.story-images{
justify-content:center;
}

}

@media(max-width:768px){

.story-images{
flex-direction:column;
align-items:center;
}

.story-images img{
width:90%;
height:260px !important;
object-position:center;
}

}

/* ===========================================
   DONATION SUPPORT PAGE
=========================================== */

.support-page{
    min-height:100vh;
    padding:140px 20px 80px;
    background:linear-gradient(135deg,#071c33,#123c69);
    display:flex;
    justify-content:center;
    align-items:center;
}

.support-container{
    width:100%;
    max-width:720px;
    background:#fff;
    border-radius:32px;
    padding:50px;
    box-shadow:0 35px 80px rgba(0,0,0,.18);
}

.support-container h5{
    color:#FFC400;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
    margin-bottom:12px;
}

.support-container h1{
    font-size:42px;
    color:#071c33;
    margin-bottom:15px;
    line-height:1.2;
}

.support-container>p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:35px;
}

.support-container form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.support-container form p{
    margin:0;
}

.support-container label{
    display:block;
    font-size:15px;
    font-weight:700;
    color:#071c33;
    margin-bottom:8px;
}

.support-input,
.support-container input,
.support-container textarea,
.support-container select{

    width:100%;
    padding:16px 18px;
    border:2px solid #E2E8F0;
    border-radius:16px;
    background:#FAFAFA;
    font-size:15px;
    font-family:Poppins,sans-serif;
    transition:.35s;
    outline:none;
}

.support-container textarea{
    min-height:140px;
    resize:vertical;
}

.support-container input:focus,
.support-container textarea:focus,
.support-container select:focus{

    border-color:#FFC400;
    background:#fff;
    box-shadow:0 0 0 5px rgba(255,196,0,.18);
}

.support-container select{
    cursor:pointer;
}

.support-container button{

    width:100%;
    padding:18px;
    border:none;
    border-radius:18px;
    background:#FFC400;
    color:#071c33;
    font-size:17px;
    font-weight:800;
    cursor:pointer;
    transition:.35s;
}

.support-container button:hover{

    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(255,196,0,.35);
}

.support-container button:active{

    transform:scale(.98);
}

/* Mobile */

@media(max-width:768px){

.support-page{

padding:120px 18px 60px;

}

.support-container{

padding:30px 22px;
border-radius:24px;

}

.support-container h1{

font-size:30px;

}

.support-container h5{

font-size:12px;

}

.support-container input,
.support-container textarea,
.support-container select{

padding:15px;
font-size:15px;

}

.support-container button{

padding:16px;
font-size:16px;

}

}
html{
    scroll-behavior:smooth;
}

.success-card{
    text-align:center;
}

.success-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#2E8B57;
    color:white;
    display:grid;
    place-items:center;
    font-size:42px;
    font-weight:900;
    margin:0 auto 22px;
}

.success-info{
    text-align:left;
    background:#fffaf0;
    padding:22px;
    border-radius:18px;
    margin-top:25px;
}

.success-info div{
    margin-bottom:12px;
    color:#071c33;
    font-weight:600;
}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section{
    padding:110px 8%;
    background:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:60px;
}

.contact-card{
    background:#071c33;
    border-radius:32px;
    padding:40px;
}

.contact-item{
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#FFC400;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.contact-item h3{
    color:white;
    margin-bottom:6px;
}

.contact-item p{
    color:#dbeafe;
}

.contact-action{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-action h2{
    font-size:44px;
    color:#071c33;
    margin-bottom:20px;
}

.contact-action p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:30px;
}

@media(max-width:900px){

.contact-wrapper{
grid-template-columns:1fr;
}

}

.site-nav{
    position:fixed;
    transition:.35s ease;
}

.site-nav.nav-scrolled{
    background:white;
    padding:16px 8%;
    box-shadow:0 15px 40px rgba(7,28,51,.12);
}

.site-nav.nav-scrolled .brand-text h2,
.site-nav.nav-scrolled .site-links a{
    color:#071c33;
}

.site-nav.nav-scrolled .brand-text span{
    color:#c99700;
}

.site-nav.nav-scrolled .nav-btn{
    background:#071c33;
    color:white;
}

.site-links a.active-link{
    color:#FFC400;
}

.site-nav.nav-scrolled .site-links a.active-link{
    color:#c99700;
}

/* ==========================
   REVEAL ANIMATION
========================== */

.reveal{
    opacity:0;
    transform:translateY(70px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.reveal{
    opacity:1 !important;
    transform:none !important;
}

.nav-btn{
    background:#FFC400;
    color:#071c33;
    padding:12px 22px;
    border-radius:999px;
    text-decoration:none;
    font-weight:900;
    display:inline-block;
}

.site-nav{
    gap:30px;
}

/* =========================
   MOBILE FIXES
========================= */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

section,
div,
.container{
    max-width:100%;
}

/* Hero */

@media (max-width:768px){

.hero-v2{
    grid-template-columns:1fr;
    padding:120px 20px 70px;
    text-align:center;
}

.hero-v2 h1{
    font-size:42px;
    line-height:1.15;
}

.hero-v2 p{
    font-size:16px;
}

.hero-actions{
    flex-direction:column;
    align-items:center;
}

.hero-image-card{
    position:relative;
    width:min(430px,100%);
    height:320px;
    right:0;
    top:0;
    margin-top:40px;
}

.hero-visual{
    min-height:auto;
}

.card-top,
.card-bottom{
    position:relative;
    left:0;
    right:0;
    top:0;
    bottom:0;
    width:100%;
    margin:15px 0;
}

/* Impact */

.impact-box{
    grid-template-columns:1fr;
}

/* Services */

.services-grid{
    grid-template-columns:1fr;
}

/* About */

.about-preview{
    grid-template-columns:1fr;
}

.about-points{
    grid-template-columns:1fr;
}

/* Contact */

.contact-wrapper{
    grid-template-columns:1fr;
}

/* Gallery */

.story-gallery{
    grid-template-columns:1fr;
}

.story-images{
    flex-direction:column;
    align-items:center;
}

.story-images img{
    width:100%;
    max-width:350px;
    height:250px !important;
}

/* Navigation */

.site-links{
    display:none;
}

.nav-btn{
    display:none;
}

}

.site-nav.nav-scrolled .hamburger span{
    background:#071c33;
}

/* =====================================
   DONATION FORM
===================================== */

.support-container form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.support-container p{
    margin:0;
}

.support-container label{
    display:block;
    font-size:15px;
    font-weight:700;
    color:#071c33;
    margin-bottom:8px;
}

.support-input{
    width:100%;
    padding:16px 18px;
    border:2px solid #e2e8f0;
    border-radius:16px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    background:#fff;
    transition:.3s ease;
    appearance:none;
}

.support-input:focus{
    border-color:#FFC400;
    box-shadow:0 0 0 4px rgba(255,196,0,.18);
    outline:none;
}

select.support-input{
    cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23071c33' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 18px center;
    background-size:16px;
    padding-right:50px;
}

.support-input:hover{
    border-color:#FFC400;
}

.support-container button{
    margin-top:10px;
    width:100%;
    padding:16px;
    border:none;
    border-radius:18px;
    background:#FFC400;
    color:#071c33;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    transition:.3s ease;
}

.support-container button:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 35px rgba(255,196,0,.35);
}

/* Mobile */

@media (max-width:768px){

.support-container{
    padding:30px 24px;
    border-radius:22px;
}

.support-container h1{
    font-size:30px;
}

.support-input{
    padding:15px;
    font-size:15px;
}

.support-container button{
    font-size:15px;
}

}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    font-weight:700;
    color:#071c33;
    font-size:15px;
}

.form-group + .form-group{
    margin-top:5px;
}

/* ==========================
   FOOTER
========================== */

.site-footer{
    background:#051321;
    color:white;
    padding:70px 8% 25px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:45px;
}

.footer-column h2{
    color:#FFC400;
    margin-bottom:18px;
}

.footer-column h3{
    color:#FFC400;
    margin-bottom:20px;
}

.footer-column p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-column a{
    display:block;
    color:#cbd5e1;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-column a:hover{
    color:#FFC400;
}

.footer-btn{
    display:inline-block !important;
    margin-top:15px;
    background:#FFC400;
    color:#071c33 !important;
    padding:14px 26px;
    border-radius:999px;
    font-weight:700;
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
}

.footer-bottom p{
    color:#94a3b8;
}

@media(max-width:768px){

.footer-content{

display:flex;
flex-direction:column;
text-align:center;
gap:35px;

}

.footer-column{

width:100%;

}

.footer-bottom{

text-align:center;

}

}

/* Mobile */

@media(max-width:900px){

.footer-container{
grid-template-columns:1fr;
gap:35px;
text-align:center;
}

.footer-btn{
display:inline-block;
}

.hero-v2{

    grid-template-columns:1fr !important;
    text-align:center;
    gap:45px;
    padding:120px 20px 70px;

}

.hero-v2-content{

    display:flex;
    flex-direction:column;
    align-items:center;

}

.hero-v2 h1{

    font-size:42px;

}

.hero-v2 p{

    max-width:100%;

}

.hero-actions{

    flex-direction:column;
    width:100%;

}

.hero-actions a{

    width:100%;

}

.hero-visual{

    display:flex;
    justify-content:center;

}

.hero-image-card{

    position:relative;
    width:100%;
    max-width:340px;

    height:420px;

    right:auto;
    top:auto;

}

.card-top{

    left:-8px;
    top:-18px;

}

.card-bottom{

    right:-8px;
    bottom:-18px;

}

.mini-card{

    min-width:130px;

}

.impact-box{
    grid-template-columns:1fr 1fr;
    margin-top:-40px;
    padding:20px;
    gap:15px;
}

.impact-item{
    border-right:none;
    border-bottom:1px solid rgba(7,28,51,.08);
}

.impact-item:nth-last-child(-n+2){
    border-bottom:none;
}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-card.large,
.gallery-card.wide{

grid-column:span 2;

}

}

/* ===================================
   MOBILE NAVIGATION
=================================== */

.hamburger{

display:none;
width:35px;
cursor:pointer;
z-index:1001;

}

.hamburger span{

display:block;
height:3px;
background:white;
margin:7px 0;
border-radius:20px;
transition:.35s;

}

.mobile-btn{

display:none;

}

@media (max-width:900px){

.site-nav{
    padding:18px 20px;
}

.nav-btn{
    display:none;
}

.hamburger{
    display:block;
}

.site-links{

    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;

    background:#071c33;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:25px;

    transition:.35s;

    z-index:999;

}

.site-links.active{
    right:0;
}

.site-links a{

    color:white;
    font-size:18px;
    margin:0;

}

.mobile-btn{

    display:inline-block;
    background:#FFC400;
    color:#071c33!important;

    padding:14px 28px;

    border-radius:999px;
    font-weight:800;

}

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(7px,7px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(7px,-7px);
}

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-card,
.contact-action{

width:100%;

}

.contact-action{

text-align:center;

}

.contact-action h2{

font-size:34px;

}

}

/* ==========================
GLOBAL MOBILE FIX
========================== */

*,
*::before,
*::after{

max-width:100%;

}

html,
body{

overflow-x:hidden;
width:100%;

}

img{

max-width:100%;
height:auto;
display:block;

}

section{

overflow:hidden;

}

/* ==========================================================
   HERO + CONTACT FIX (appended last on purpose — supersedes
   the conflicting rules above without deleting/editing them)
   ========================================================== */

/* This stylesheet has several older, conflicting mobile rules
   for the hero badges and impact grid scattered across
   duplicate @media blocks earlier in this file. !important is
   used deliberately below so this block wins reliably no
   matter what cascade order those older rules end up in —
   nothing above is deleted or edited. */

@media (max-width: 900px) {

    /* ---- HERO: photo + the two floating stat pills ----
       In hero.html, .mini-card (.card-top / .card-bottom) are
       SIBLINGS of .hero-image-card, not nested inside it. Making
       .hero-visual's box match the photo's box exactly (instead
       of stretching full-width) is what lets the corner offsets
       below actually land on the photo's corners. */
    .hero-visual {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 40px auto 90px !important;
    }

    .hero-image-card {
        position: relative !important;
        width: 100% !important;
        max-width: none !important;
        height: 300px !important;
        right: auto !important;
        top: auto !important;
    }

    .mini-card {
        position: absolute !important;
        width: auto !important;
        max-width: 200px !important;
        min-width: 0 !important;
        padding: 14px 18px !important;
    }

    .mini-card strong { font-size: 22px !important; }
    .mini-card span { font-size: 12px !important; }

    .card-top {
        top: -22px !important;
        left: -10px !important;
        right: auto !important;
        bottom: auto !important;
    }

    .card-bottom {
        bottom: -22px !important;
        right: -10px !important;
        left: auto !important;
        top: auto !important;
    }

    /* ---- IMPACT STATS ----
       The number text (30px font, e.g. "$450K+") is physically
       wider than a 2-column mobile cell, which forced the grid
       track — and the page — wider than the screen. Stack to a
       single column and shrink the type to fit comfortably. */
    .impact-box {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 24px 20px !important;
        margin-top: -50px !important;
    }

    .impact-item {
        min-width: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(7,28,51,.08) !important;
        padding: 12px 0 !important;
    }

    .impact-item:last-child {
        border-bottom: none !important;
    }

    .impact-item h3 { font-size: 24px !important; }
    .impact-item p { font-size: 13px !important; }
    .impact-icon { font-size: 26px !important; }

    /* ---- CONTACT CARD ----
       Unbreakable email/phone text was forcing the row (and the
       page) wider than the viewport. */
    .contact-item,
    .contact-item > div {
        min-width: 0 !important;
    }

    .contact-item p,
    .contact-item h3 {
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
}

/* DESKTOP: give the top-corner badge more clearance from the
   fixed nav before it scrolls underneath it. */
@media (min-width: 901px) {
    .card-top {
        top: 55px !important;
    }
}

/* ---- ABOUT SECTION: "12+ Years of Care" badge ----
   .floating-note (the badge) is a SIBLING of .about-photo-card,
   both inside .about-visual — but .about-visual has no CSS rule
   anywhere in this file, so it was never position:relative.
   With no positioned ancestor at all, .floating-note (position:
   absolute) falls back to positioning itself against the whole
   page instead of the photo next to it.

   !important + a second selector (targeting the same element via
   its other class, "reveal-left") used deliberately, same reason
   as the impact-item fix above: belt and braces against any
   cascade ordering surprise. */
.about-visual,
.about-preview > .reveal-left {
    position: relative !important;
}

.floating-note {
    z-index: 10 !important;
}