/* =====================================================
   LIFT LIVES TODAY - Main Stylesheet
   Colors: #6B1C23 (burgundy), #E8C9A0 (beige)
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES
   ===================================================== */
:root {
    --primary: #6B1C23;
    --primary-dark: #521519;
    --primary-light: #8a252e;
    --secondary: #E8C9A0;
    --text-dark: #2d2d2d;
    --text-muted: #6b6b6b;
    --accent: #E8C9A0;
    --accent-light: #f5e6d3;
    --white: #ffffff;
    --off-white: #faf8f5;
    --light-gray: #f5f3f0;
    --gray: #9a9a9a;
    --dark: #1a1a1a;
    --success: #28a745;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(107, 28, 35, 0.1);
    --shadow-lg: 0 10px 40px rgba(107, 28, 35, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

/* =====================================================
   2. RESET & BASE STYLES
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

/* =====================================================
   4. UTILITY CLASSES
   ===================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--light {
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn--light:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    box-shadow: 0 8px 25px rgba(232, 201, 160, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

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

.btn--outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1.0625rem;
}

.btn--full {
    width: 100%;
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-input::placeholder {
    color: var(--gray);
}

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

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-input {
    flex: 1;
}

.form-row .form-input--small {
    flex: 0 0 100px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   5. HEADER / NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 60px;
    width: auto;
    max-width: 290px;
    object-fit: contain;
}

/* Mobile Menu Logo */
.mobile-menu__header .logo__img {
    height: 50px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__menu {
    display: flex;
    gap: 25px;
}

.nav__link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 8px 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--primary);
}

.nav__btn {
    padding: 10px 24px;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
}

/* Mobile Menu - Hidden by default */
.mobile-menu {
    display: none;
}

.mobile-menu__overlay {
    display: none;
}

/* =====================================================
   6. HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FCC99C 0%, #f5b88a 50%, #f0a67a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero__badge {
    display: inline-block;
    background-color: rgba(107, 28, 35, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero__title {
    color: var(--primary);
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.hero__text {
    color: rgba(107, 28, 35, 0.8);
    font-size: 1.125rem;
    margin-bottom: 35px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__image {
    position: absolute;
    right: 3%;
    top: 55%;
    transform: translateY(-50%);
    max-width: 45%;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero__image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(40px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* =====================================================
   7. IMPACT SECTION
   ===================================================== */
.impact {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #fdfbf9 0%, #f8f5f0 50%, #f5ebe0 100%);
    overflow: hidden;
}

.impact__background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.impact__background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 28, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 8s ease-in-out infinite;
}

.impact__background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 201, 160, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 10s ease-in-out infinite reverse;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) translate(20px, -20px);
        opacity: 0.7;
    }
}

/* Floating shapes */
.impact__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float-shape 6s ease-in-out infinite;
}

.impact__shape--1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.impact__shape--2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.impact__shape--3 {
    width: 30px;
    height: 30px;
    background: var(--primary);
    top: 35%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.impact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.impact__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.impact-stat {
    text-align: center;
    padding: 35px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.impact-stat:first-child {
    padding-top: 0;
}

.impact-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.impact-stat__number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.impact-stat__label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: none;
}

.impact__content {
    padding-left: 20px;
}

.impact__content .section-subtitle {
    margin-bottom: 15px;
}

.impact__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.impact__text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 35px;
}
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* =====================================================
   8. MISSION & VISION SECTION
   ===================================================== */
.mission-vision {
    padding: 80px 0 60px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background Image - Right Side */
.mission-vision__bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.mission-vision__bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1200') center center / cover no-repeat;
    opacity: 0.08;
}

.mission-vision__bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--white) 0%, transparent 30%);
}

/* Particles Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 15s infinite ease-in-out;
}

.particle--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.particle--accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.particle--light {
    background: linear-gradient(135deg, rgba(107, 28, 35, 0.1) 0%, rgba(107, 28, 35, 0.05) 100%);
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(0, -50px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
        opacity: 0.4;
    }
}

/* Layout */
.mission-vision__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Header - Left Side */
.mission-vision__header {
    max-width: 480px;
}

.mission-vision__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mission-vision__line {
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.mission-vision__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.mission-vision__description {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

.mission-vision__buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mission-vision__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.mission-vision__link:hover {
    gap: 12px;
}

.mission-vision__link i {
    font-size: 0.875rem;
    transition: var(--transition);
}

/* Cards - Right Side */
.mission-vision__cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mv-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    width: 100%;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mv-card--light {
    background: linear-gradient(135deg, #f0f7f5 0%, #e8f4f0 100%);
    border-color: transparent;
}

.mv-card__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.mv-card__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--light-gray);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(107, 28, 35, 0.08);
    transition: var(--transition);
}

.mv-card:hover .mv-card__icon {
    background-color: var(--primary);
    color: var(--white);
}

.mv-card--light .mv-card__icon {
    background-color: var(--white);
}

.mv-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.mv-card__text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.mv-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.mv-card__link:hover {
    gap: 12px;
}

/* =====================================================
   9. CHAPTERS SECTION
   ===================================================== */
.chapters {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f3 50%, #f5f0eb 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Gradient */
.chapters__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.chapters__bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107, 28, 35, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    animation: chapters-bg-float 15s ease-in-out infinite;
}

.chapters__bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 201, 160, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: chapters-bg-float 18s ease-in-out infinite reverse;
}

@keyframes chapters-bg-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -40px) scale(1.1);
    }
}

.chapters__layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Header */
.chapters__header {
    max-width: 420px;
}

.chapters__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.chapters__line {
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.chapters__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.15;
}

.chapters__description {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

.local-stats {
    display: flex;
    gap: 50px;
}

.local-stats__item {
    display: flex;
    flex-direction: column;
}

.local-stats__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.local-stats__label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Right Side - Chapter Cards */
.chapters__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chapter-card {
    background-color: var(--white);
    padding: 28px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.chapter-card:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.chapter-card__flag {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.chapter-card__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chapter-card__info {
    flex: 0 0 160px;
}

.chapter-card__name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.chapter-card__location {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

.chapter-card__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 25px;
    border-left: 1px solid #eee;
}

.chapter-card__details p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.chapter-card__projects {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8125rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(107, 28, 35, 0.25);
}

.chapter-card--primary .chapter-stat__label {
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   10. TEAM SECTION
   ===================================================== */
.team {
    padding: 60px 0;
    background-color: var(--white);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card__image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--light-gray);
    transition: var(--transition);
}

.team-card:hover .team-card__image {
    border-color: var(--primary);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(107, 28, 35, 0.9));
    padding: 30px 0 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.team-card:hover .team-card__social {
    opacity: 1;
    transform: translateY(0);
}

.team-card__social a {
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.875rem;
    transition: var(--transition);
}

.team-card__social a:hover {
    background-color: var(--accent);
}

.team-card__name {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.team-card__role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.team__cta {
    text-align: center;
    margin-top: 50px;
}

/* =====================================================
   TEAM PAGE STYLES
   ===================================================== */
.page-titlebar {
    background-color: #f8f9fa;
    background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.page-titlebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 28, 35, 0.85);
}

.page-titlebar__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.page-titlebar__title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-titlebar__breadcrumbs {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.page-titlebar__breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-titlebar__breadcrumbs a:hover {
    color: #fff;
}

.page-titlebar__breadcrumbs .separator {
    margin: 0 10px;
}

.page-titlebar__breadcrumbs .current {
    color: #fff;
}

.team-page {
    padding: 80px 15px;
}

.team-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-card__link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.team-page__cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
}

.team-page__cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-page__cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* =====================================================
   TEAM MEMBER DETAIL PAGE - Reference Style
   ===================================================== */
.team-member-detail {
    padding: 50px 15px;
    background: #fff;
}

.single-team-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
}

.entry-image {
    position: relative;
}

.entry-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.entry-content {
    padding-top: 0px;
}

.entry-header {
    margin-bottom: 25px;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.entry-position {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.entry-socials {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.entry-socials .title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.entry-socials .socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.entry-socials .socials .social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #6B1C23;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: normal;
}

.entry-socials .socials .social-icon:hover {
    background-color: #521519;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    color: #ffffff;
}

.entry-socials .socials a:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.entry-info {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.entry-contact {
    margin-bottom: 10px;
}

.entry-contact .title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.entry-contact .content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding-bottom: 10px;
}

.entry-contact .content .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.entry-contact .content .detail-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.entry-contact .phone,
.entry-contact .email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.entry-contact .phone i,
.entry-contact .email i {
    color: var(--primary-color);
    width: 20px;
}

/* About Me Section */
.member-about-wrap {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.member-about-wrap .title-wrap {
    margin-bottom: 25px;
}

.member-about-wrap .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.member-about-wrap .sub-title {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-about-wrap .line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.member-about-wrap .desc p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.member-about-wrap .desc p:last-child {
    margin-bottom: 0;
}

.related-team {
    padding: 30px 10px;
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-member-layout {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-member-layout {
        grid-template-columns: 1fr;
    }
    
    .entry-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .entry-title {
        font-size: 2rem;
    }
}

.team-member__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
}

.team-member__info {
    display: flex;
    flex-direction: column;
}

.team-member__image {
    position: relative;
}

.team-member__image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-member__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.team-member__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.team-member__social a:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

.team-member__info {
    padding-top: 0;
}

.team-member__name {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--heading-color);
    line-height: 1.2;
}

.team-member__role {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-member__follow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 15px 0px 0px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.follow-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
}

.follow-social {
    display: flex;
    gap: 10px;
}

.follow-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #6B1C23;
    font-size: 16px;
    transition: all 0.3s ease;
}

.follow-social a:hover {
    background: #6B1C23;
    color: #ffffff !important;
}

.team-member__bio {
    margin-bottom: 30px;
}

.team-member__bio h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.team-member__bio p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-member__details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.detail-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 28, 35, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
}

.team-member__cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.team-member__skills {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.team-member__skills h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

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

.skill-item {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.skill-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.skill-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--heading-color);
}

.related-team {
    padding: 80px 15px;
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-member__grid {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-page__grid {
        grid-template-columns: 1fr;
    }
    
    .team-member__grid {
        grid-template-columns: 1fr;
    }
    
    .team-member__image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-member__cta {
        flex-direction: column;
    }
    
    .team-member__cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   11. DONATION SECTION
   ===================================================== */
.donation {
    padding: 60px 15px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 50%, #fafafa 100%);
    position: relative;
    overflow-x: hidden;
}

.donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 28, 35, 0.02) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.donation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Donation Form Box - Left Side */
.donation__form-wrapper {
    order: 1;
    max-width: 600px;
}

.donation-form {
    background: linear-gradient(135deg, #FCC99C 0%, #f5b88a 50%, #f0a67a 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(240, 166, 122, 0.4);
    position: relative;
    overflow: hidden;
}

.donation-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.donation-form__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.donation-form__title span {
    color: var(--primary-dark);
}

.donation-form__subtitle {
    color: rgba(107, 28, 35, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 30px;
    position: relative;
}

.donation-form__input-group {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 50px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.donation-form__prefix {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 18px 22px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px 0 0 50px;
}

.donation-form__amount-input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    background: transparent;
    font-family: inherit;
    text-align: left;
    width: 100%;
    transition: transform 0.15s ease;
}

.donation-form__amount-input:focus {
    outline: none;
}

.donation-form__amounts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
}

.amount-btn {
    padding: 13px 23px;
    border: 2px solid rgba(107, 28, 35, 0.3);
    background-color: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover {
    border-color: var(--primary);
    background-color: rgba(107, 28, 35, 0.1);
}

.amount-btn.active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.donation-form__submit {
    width: 100%;
    padding: 18px 40px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.donation-form__submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 28, 35, 0.4);
}

/* Content - Right Side */
.donation__content {
    order: 2;
}

.donation__content .section-subtitle {
    color: var(--primary);
    font-size: 0.9375rem;
    margin-bottom: 15px;
}

.donation__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.donation__text {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn--dark {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn--dark:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.donation-form__fields .form-row {
    margin-bottom: 5px;
}

.donation-form__note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.donation-form__note i {
    color: var(--success);
    margin-right: 5px;
}

/* =====================================================
   12. CONTACT SECTION
   ===================================================== */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #fdf9f6 50%, #f5ede8 100%);
    position: relative;
    overflow: hidden;
}

/* Floating bubbles animation */
.contact::before,
.contact::after {
    display: none;
}

@keyframes floatBubble1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 30px) rotate(90deg); }
    50% { transform: translate(30px, 60px) rotate(180deg); }
    75% { transform: translate(-20px, 40px) rotate(270deg); }
}

@keyframes floatBubble2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-40px, -30px) rotate(-90deg); }
    50% { transform: translate(-20px, -50px) rotate(-180deg); }
    75% { transform: translate(30px, -40px) rotate(-270deg); }
}

.contact .bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.contact .bubble:nth-child(1) {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: 10%;
    left: -30px;
    animation: floatBubble3 18s ease-in-out infinite;
}

.contact .bubble:nth-child(2) {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), #d4a574);
    top: 50%;
    left: 5%;
    animation: floatBubble4 25s ease-in-out infinite;
}

.contact .bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: 20%;
    right: 5%;
    animation: floatBubble5 22s ease-in-out infinite;
}

.contact .bubble:nth-child(4) {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--secondary), #d4a574);
    bottom: 10%;
    right: 15%;
    animation: floatBubble6 20s ease-in-out infinite;
}

@keyframes floatBubble3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes floatBubble4 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(20px) scale(0.9); }
}

@keyframes floatBubble5 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(20px) translateY(-25px); }
}

@keyframes floatBubble6 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-15px) translateY(15px); }
}

.contact .bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: 35%;
    left: 25%;
    animation: floatBubble3 16s ease-in-out infinite;
    animation-delay: -5s;
}

.contact .bubble:nth-child(6) {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary), #d4a574);
    bottom: 30%;
    left: 15%;
    animation: floatBubble4 20s ease-in-out infinite;
    animation-delay: -3s;
}

.contact .bubble:nth-child(7) {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: 70%;
    left: 30%;
    animation: floatBubble5 18s ease-in-out infinite;
    animation-delay: -7s;
}

.contact .bubble:nth-child(8) {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--secondary), #d4a574);
    top: 15%;
    right: 25%;
    animation: floatBubble6 24s ease-in-out infinite;
    animation-delay: -2s;
}

.contact .bubble:nth-child(9) {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    bottom: 40%;
    right: 30%;
    animation: floatBubble3 19s ease-in-out infinite;
    animation-delay: -6s;
}

.contact .bubble:nth-child(10) {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), #d4a574);
    top: 45%;
    right: 35%;
    animation: floatBubble4 21s ease-in-out infinite;
    animation-delay: -4s;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

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

.contact-item__icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item__content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item__content p {
    color: var(--text-muted);
    margin: 0;
}

.contact__social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.contact__social h4 {
    margin-bottom: 15px;
}

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

.social-links__item {
    width: 44px;
    height: 44px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-links__item:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form .form-input {
    margin-bottom: 15px;
    background-color: var(--white);
}

.contact-form .btn {
    margin-top: 10px;
}

/* =====================================================
   13. FOOTER
   ===================================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer__about .logo {
    display: block;
    margin-bottom: 20px;
}

.footer__about .logo__img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
}

.footer__about p {
    color: rgba(255, 255, 255, 0.75);
    margin: 20px 0;
    line-height: 1.8;
}

.footer__about .social-links__item {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.footer__about .social-links__item:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.footer__title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 25px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer__newsletter-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form .form-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.newsletter-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.newsletter-form .btn:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin: 0;
}

.footer__bottom-links {
    display: flex;
    gap: 25px;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer__bottom-links a:hover {
    color: var(--accent);
}

/* =====================================================
   14. RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1024px) {
    .hero__image {
        display: none;
    }

    .impact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .impact__stats {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .impact-stat {
        padding: 20px;
        border-bottom: none;
        border-right: 1px solid #e5e5e5;
    }

    .impact-stat:last-child {
        border-right: none;
    }

    .impact__content {
        padding-left: 0;
        text-align: center;
    }

    .mission-vision__layout,
    .chapters__layout,
    .donation__grid {
        grid-template-columns: 1fr;
    }

    .chapter-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px 20px;
        gap: 0;
    }

    .chapter-card__flag {
        margin-bottom: 12px;
    }

    .chapter-card__info {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e5e5e5;
        width: 100%;
    }

    .chapter-card__details {
        border-left: none;
        padding-left: 0;
        padding-top: 0;
        border-top: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .chapter-card__details p {
        margin-bottom: 0;
    }

    .chapter-card__projects {
        margin: 0 auto;
    }

    .mission-vision__cards {
        grid-template-columns: 1fr;
    }

    .mission-vision__header {
        max-width: 100%;
        text-align: center;
    }

    .mission-vision__subtitle {
        justify-content: center;
    }

    .mission-vision__buttons {
        justify-content: center;
    }

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

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

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

    .logo__img {
        height: 40px;
        max-width: 150px;
    }

    .nav__menu {
        display: none;
    }

    .nav__btn {
        display: none;
    }

    .nav__toggle {
        display: block;
    }

    /* Show Donate button on tablet but not mobile */
    @media (min-width: 600px) {
        .nav__btn {
            display: inline-flex;
        }
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background-color: var(--white);
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu__overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .mobile-menu__overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu__close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
        padding: 5px;
    }

    .mobile-menu__content {
        padding: 15px 0;
    }

    .mobile-nav__item {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 25px;
        color: var(--primary);
        font-weight: 500;
        font-size: 1rem;
        transition: var(--transition);
    }

    .mobile-nav__link:hover {
        background-color: var(--light-gray);
        color: var(--primary-dark);
    }

    .mobile-menu__donate {
        padding: 20px 25px;
    }

    .mobile-menu__donate .btn {
        width: 100%;
        text-align: center;
    }

    /* Reduce section padding on mobile */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .impact {
        padding: 60px 0;
    }

    .mission-vision {
        padding: 60px 0;
    }

    .particles {
        display: none;
    }

    .mission-vision__bg-image {
        display: none;
    }

    .chapters,
    .team,
    .donation,
    .contact {
        padding: 60px 0;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .chapters__bg {
        display: none;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .impact__stats {
        flex-direction: column;
        gap: 0;
    }

    .impact-stat {
        padding: 25px 0;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

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

    .impact-stat__number {
        font-size: 2.5rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-input--small {
        flex: 1;
    }

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .donation__features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .donation__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .donation__form-wrapper {
        order: 2;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .donation__content {
        order: 1;
        text-align: left;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .donation__title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }

    .donation__text {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .donation__content .section-subtitle {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        display: block;
    }

    .donation-form {
        padding: 30px 20px;
    }

    .donation-form__title {
        font-size: 1.25rem;
        word-wrap: break-word;
    }

    .donation-form__input-group {
        margin-bottom: 20px;
    }

    .donation-form__prefix {
        padding: 14px 15px;
        font-size: 1rem;
    }

    .donation-form__amount-input {
        padding: 14px 15px;
        font-size: 1.25rem;
    }

    .donation-form__amounts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 25px;
    }

    .amount-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .donation-form {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .mission-card {
        padding: 30px 25px;
    }

    .chapter-card__content {
        padding: 25px;
    }

    .donation-form__amounts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .amount-btn {
        padding: 10px 14px;
        font-size: 0.8125rem;
    }

    .donation-form__amount-input {
        font-size: 1.25rem;
    }

.donation-form__submit {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

    /* Mobile Menu */
    .mobile-menu__overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .mobile-menu__overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background-color: var(--white);
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu__close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
        padding: 5px;
    }

    .mobile-menu__content {
        padding: 15px 0;
    }

    .mobile-nav__item {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 25px;
        color: var(--primary);
        font-weight: 500;
        font-size: 1rem;
        transition: var(--transition);
    }

    .mobile-nav__link:hover {
        background-color: var(--light-gray);
        color: var(--primary-dark);
    }

    .mobile-nav__link i {
        font-size: 0.75rem;
        color: var(--text-muted);
    }
}

/* =====================================================
   ALERT MESSAGES
   ===================================================== */
.alert {
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #b8daff;
    color: #155724;
}

.alert-success i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.alert-success h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #155724;
}

.alert-success p {
    font-size: 0.9rem;
    color: #155724;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-error i {
    font-size: 1.5rem;
    color: #dc3545;
    margin-bottom: 5px;
}

.alert-error p {
    font-size: 0.9rem;
    color: #721c24;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8d7da;
    border-radius: 5px;
}
