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

:root {
    --navy: #0a1f44;
    --navy-dark: #061529;
    --blue: #1a4fba;
    --blue-light: #4a7fd9;
    --gold: #f5a623;
    --gold-light: #ffd97d;
    --white: #ffffff;
    --light-bg: #f4f7ff;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --dark: #111827;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background: #fff;
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== HEADER ==================== */
.site-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 18px 5%;
    position: relative;
    box-shadow: var(--shadow-md);
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.site-header h1 {
    color: var(--white);
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 900;
    letter-spacing: 1.2px;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

/* ==================== NAVIGATION ==================== */
nav {
    background: #0d2760;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav ul li a {
    display: block;
    padding: 18px 32px;
    color: #cdd5f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a:active {
    background: rgba(255,255,255,0.08);
    color: var(--gold);
}

nav ul li a:hover::after {
    width: 60%;
}

nav ul li a.active {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(245, 166, 35, 0.55);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 14px;
    min-height: 44px;
    min-width: 44px;
    margin-right: auto;
    margin-left: 16px;
    z-index: 1000;
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.hamburger:hover {
    background: rgba(245, 166, 35, 0.15);
    border-color: var(--gold);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
}

.hamburger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==================== HERO / BANNER ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 60%, #0d2d6e 100%);
    padding: 80px 5% 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(245,166,35,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05));
}

.page-hero-badge {
    display: inline-block;
    background: rgba(245,166,35,0.2);
    border: 2px solid rgba(245,166,35,0.5);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.page-hero h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

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

.page-hero p {
    color: #b8c8f0;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ==================== PHOTO SLIDESHOW ==================== */
.photo-slideshow {
    width: 100%;
    height: 740px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.photo-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.photo-slideshow .slide.active {
    opacity: 1;
}

/* ==================== MAIN CONTENT ==================== */
main {
    padding: 70px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(26,79,186,0.12);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-sub {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 680px;
}

/* ==================== INDEX: WELCOME SECTION ==================== */
.welcome-banner-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 70px;
}

.welcome-banner-flex section h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
}

.welcome-banner-flex section p {
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 1.08rem;
}

.banner-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 20px;
    padding: 48px 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.banner-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.banner-box h2 {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 900;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.banner-box p {
    color: #b8c8f0;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.banner-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245,166,35,0.3);
    position: relative;
    z-index: 1;
}

.banner-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

/* ==================== HERO STATS ==================== */
.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 70px 0;
    padding: 50px 5%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: #8fa3d0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ==================== PHOTO SECTION ==================== */
.photo-section {
    background: var(--light-bg);
    padding: 70px 5%;
    margin: 0 -5%;
}

.photo-section-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.photo-desc {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--navy);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 20px 6px;
}

.photo-desc1 {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.7;
    padding: 0 20px 20px;
}

/* ==================== WHY SUPPORT SECTION ==================== */
.why-support-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2d6e 100%);
    padding: 90px 5%;
    text-align: center;
    margin: 0 -5%;
}

.why-support-header {
    max-width: 720px;
    margin: 0 auto 64px;
}

.why-support-header .section-tag {
    background: rgba(245,166,35,0.2);
    color: var(--gold);
}

.why-support-header .section-title {
    color: var(--white);
}

.why-support-header .section-sub {
    color: #8fa3d0;
    margin-inline: auto;
}

.why-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto 56px;
}

.why-support-card {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.why-support-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
    border-color: rgba(245,166,35,0.4);
}

.why-support-num {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1;
}

.why-support-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.why-support-card p {
    color: #8fa3d0;
    font-size: 1.02rem;
    line-height: 1.8;
}

.why-support-cta {
    text-align: center;
}

/* ==================== ABOUT: INTRO ==================== */
.about-intro {
    margin-bottom: 70px;
}

.about-content-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.about-text p {
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 1.08rem;
}

.about-photo-slider {
    width: 100%;
    height: 740px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.about-photo-slider .about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.about-photo-slider .about-slide.active {
    opacity: 1;
}

/* ==================== VISION MISSION ==================== */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 70px 0;
}

.vm-card {
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.vm-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.vm-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.vm-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==================== TIMELINE ==================== */
.timeline-section {
    margin: 80px 0;
    padding: 60px 5%;
    background: var(--light-bg);
    border-radius: 20px;
}

.timeline {
    max-width: 900px;
    margin: 50px auto 0;
}

.timeline-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-row:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 70px;
    top: 40px;
    bottom: -40px;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--blue));
}

.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==================== AWARDS SECTION ==================== */
.awards-section {
    margin: 80px 0;
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    margin-top: 50px;
}

.award-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.award-photo {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon {
    font-size: 5rem;
}

.award-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.award-card p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 1.02rem;
}

.awards-section .section-sub {
    text-align: center;
    margin-inline: auto;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    margin: 80px 0;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px;
    margin-top: 50px;
}

.team-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    margin: 0 auto 20px;
}

.team-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.team-role {
    color: var(--gray);
    font-size: 0.98rem;
}

/* ==================== PROJECTS PAGE ==================== */
.projects-intro {
    margin-bottom: 60px;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding: 60px 0;
}

.project-card {
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: 18px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-card.highlight {
    background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(26,79,186,0.08));
    border-color: var(--gold);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.project-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.project-impact {
    margin-top: auto;
}

.impact-badge {
    display: inline-block;
    background: rgba(26,79,186,0.12);
    color: var(--blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.impact-badge.flagship {
    background: rgba(245,166,35,0.2);
    color: var(--gold);
}

.projects-intro .section-sub {
    text-align: center;
    margin-inline: auto;
}

/* ==================== IMPACT STATS ==================== */
.impact-stats {
    margin: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.stat-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 36px 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-intro {
    margin-bottom: 60px;
    text-align: center;
}

.contact-intro .section-sub {
    text-align: center;
    margin-inline: auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin: 60px 0;
}

.contact-form-container {
    background: var(--light-bg);
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e7ff;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,79,186,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245,166,35,0.3);
}

.form-submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.contact-info-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 6px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}

/* ==================== MEMBERSHIP INFO ==================== */
.membership-info {
    margin: 80px 0;
    padding: 60px 5%;
    background: var(--light-bg);
    border-radius: 20px;
    text-align: center;
}

.membership-info .section-sub {
    text-align: center;
    margin-inline: auto;
}


.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    margin-top: 50px;
}

.membership-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.membership-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.membership-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.membership-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list,
.steps-list {
    list-style-position: inside;
    color: var(--gray);
    line-height: 2;
    font-size: 1.02rem;
}

.benefits-list li,
.steps-list li {
    margin-bottom: 8px;
}

/* ==================== PARTNERSHIP SECTION ==================== */
.partnership-section {
    margin: 80px 0;
    padding: 60px 5%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.partnership-content .section-tag {
    background: rgba(245,166,35,0.2);
    color: var(--gold);
}

.partnership-content .section-title {
    color: var(--white);
}

.partnership-content p {
    color: #b8c8f0;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.partnership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin: 40px 0;
    text-align: left;
}

.partnership-type {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 24px;
}

.partnership-type h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

.partnership-type p {
    color: #b8c8f0;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    margin: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 32px 28px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.02rem;
}

.faq-item a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 70px 5%;
    text-align: center;
    margin: 80px 0;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 5% 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col p {
    color: #8fa3d0;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #8fa3d0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
    text-align: center;
}

.footer-bottom p {
    color: #8fa3d0;
    font-size: 0.95rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .welcome-banner-flex,
    .about-content-flex,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-row::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0d2760;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        gap: 0;
        z-index: 998;
    }

    nav ul.open {
        display: flex;
    }

    nav ul li a {
        padding: 16px 28px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .photo-slideshow,
    .about-photo-slider {
        height: 320px;
    }

    .hero-stats {
        gap: 32px;
        padding: 40px 5%;
    }

    .project-grid,
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .site-header {
        flex-direction: column;
        gap: 12px;
        padding: 16px 5%;
    }

    .header-logo {
        height: 50px;
    }

    .site-header h1 {
        font-size: 1.2rem;
    }

    nav ul li a {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .photo-slideshow,
    .about-photo-slider {
        height: 260px;
    }

    main {
        padding: 50px 5%;
    }
}