/* ===============================================
   SEVAAMRIT - Main Stylesheet
   Color Palette:
   - Saffron: #FF9933
   - Earth Brown: #8B4513
   - Forest Green: #2E8B57
   - Cream/Off-White: #FDFBF7
   - Deep Navy: #1a1a2e
   =============================================== */

/* CSS Variables */
:root {
    --saffron: #FF9933;
    --saffron-light: #FFB366;
    --saffron-dark: #E68A00;
    --earth-brown: #8B4513;
    --earth-brown-light: #A0522D;
    --forest-green: #2E8B57;
    --forest-green-light: #3CB371;
    --cream: #FDFBF7;
    --cream-dark: #F5F0E6;
    --deep-navy: #1a1a2e;
    --charcoal: #2d2d2d;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--saffron);
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.donate-btn {
    background: var(--saffron);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: var(--radius-xl);
    font-weight: 600;
}

.nav-link.donate-btn::after {
    display: none;
}

.nav-link.donate-btn:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .bar {
    background: var(--text-dark);
}

/* ===============================================
   HERO SECTION
   =============================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 69, 19, 0.7) 0%,
        rgba(26, 26, 46, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--saffron);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.4);
}

.btn-primary:hover {
    background: var(--saffron-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ===============================================
   SECTION COMMON STYLES
   =============================================== */

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--saffron);
    margin-bottom: 15px;
}

.section-tag.light {
    color: var(--saffron-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.small {
    margin-bottom: 40px;
}

.section-header.small h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* ===============================================
   ABOUT SECTION
   =============================================== */

.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature i {
    color: var(--forest-green);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--saffron);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.card-number {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--saffron);
    line-height: 1;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===============================================
   IMPACT SECTION
   =============================================== */

.impact {
    padding: 120px 0 180px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
}

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

.impact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--saffron);
    transform: scaleX(0);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.impact-icon.meals {
    background: rgba(46, 139, 87, 0.15);
    color: var(--forest-green);
}

.impact-icon.clothes {
    background: rgba(255, 153, 51, 0.15);
    color: var(--saffron);
}

.impact-icon.villages {
    background: rgba(139, 69, 19, 0.15);
    color: var(--earth-brown);
}

.impact-icon.volunteers {
    background: rgba(255, 153, 51, 0.15);
    color: var(--saffron-dark);
}

.impact-number {
    font-family: 'League Spartan', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.impact-sublabel {
    font-size: 0.85rem;
    color: var(--text-light);
}

.impact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.impact-wave svg {
    width: 100%;
    height: 120px;
}

.impact-wave path {
    fill: var(--white);
}

/* ===============================================
   INITIATIVES SECTION
   =============================================== */

.initiatives {
    padding: 120px 0;
    background: var(--white);
}

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

.initiative-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.initiative-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.card-tag {
    background: var(--saffron);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: 30px;
    position: relative;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--forest-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    top: -30px;
    right: 30px;
    box-shadow: var(--shadow-md);
}

.card-icon.clothes-icon {
    background: var(--saffron);
}

.card-icon.relief-icon {
    background: var(--earth-brown);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-features {
    margin-bottom: 20px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.card-features li i {
    color: var(--forest-green);
    font-size: 0.8rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.95rem;
}

.card-link:hover {
    gap: 15px;
    color: var(--saffron-dark);
}

/* ===============================================
   REACH/MAP SECTION
   =============================================== */

.reach {
    padding: 120px 0;
    background: var(--deep-navy);
    position: relative;
    overflow: hidden;
}

.reach-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
    opacity: 0.15;
}

.india-map {
    width: 50%;
    max-width: 600px;
}

.map-svg {
    width: 100%;
    height: auto;
}

.map-path {
    fill: none;
    stroke: var(--saffron);
    stroke-width: 2;
}

.location-pins .pin {
    fill: var(--saffron);
}

.location-pins .pin.pulse {
    animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {
    0%, 100% { r: 8; opacity: 1; }
    50% { r: 12; opacity: 0.6; }
}

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

.reach-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.reach-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.reach-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 153, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.active-regions h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.region-tag {
    background: rgba(255, 153, 51, 0.2);
    color: var(--saffron-light);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 153, 51, 0.3);
    transition: var(--transition);
}

.region-tag:hover {
    background: var(--saffron);
    color: var(--white);
}

/* ===============================================
   TESTIMONIALS SECTION
   =============================================== */

.testimonials {
    padding: 120px 0;
    background: var(--cream);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote {
    color: var(--saffron);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--saffron);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===============================================
   DONATE SECTION
   =============================================== */

.donate {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
    position: relative;
    overflow: hidden;
}

.donate-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

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

.donate-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.donation-impact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.impact-amount {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    min-width: 100px;
}

.impact-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.donate-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.donate-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.amount-btn {
    padding: 15px 10px;
    border: 2px solid var(--cream-dark);
    background: transparent;
    border-radius: var(--radius-sm);
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

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

.custom-amount {
    margin-bottom: 25px;
}

.custom-amount label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.input-wrapper:focus-within {
    border-color: var(--saffron);
}

.currency {
    padding: 15px;
    background: var(--cream-dark);
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.input-wrapper input {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.donation-type {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-option input {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--cream-dark);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.radio-option input:checked + .radio-custom {
    border-color: var(--saffron);
}

.radio-option input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--saffron);
    border-radius: 50%;
}

.radio-label {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.donate-btn {
    width: 100%;
    padding: 18px;
    background: var(--saffron);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.donate-btn:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.secure-badge i {
    color: var(--forest-green);
}

/* ===============================================
   PARTNERS SECTION
   =============================================== */

.partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.partner-logo span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.footer {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-wave path {
    fill: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 10px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--saffron);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--saffron);
    font-size: 1rem;
    margin-top: 3px;
}

.newsletter {
    margin-top: 25px;
}

.newsletter h5 {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--saffron);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--saffron-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal .registration {
    font-size: 0.8rem;
    margin-top: 5px;
}

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

.footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--saffron);
}

/* ===============================================
   BACK TO TOP BUTTON
   =============================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--saffron);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--saffron-dark);
    transform: translateY(-5px);
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 1024px) {
    .about-content {
        gap: 50px;
    }

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

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

    .initiatives-grid .initiative-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .donate-wrapper {
        gap: 50px;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 25px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-size: 1.1rem;
    }

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

    .about-image {
        order: -1;
    }

    .floating-card {
        left: 20px;
        bottom: 20px;
    }

    .image-accent {
        display: none;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .initiatives-grid .initiative-card:last-child {
        max-width: none;
    }

    .reach-stats {
        flex-direction: column;
        gap: 25px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .donation-type {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul li a:hover {
        padding-left: 0;
    }

    .contact-item {
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .donate-card {
        padding: 30px 20px;
    }

    .partners-logos {
        gap: 30px;
    }
}

/* ===============================================
   ACCESSIBILITY
   =============================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

