/*
Theme Name: Ummah Charity
Theme URI: https://ummah.org
Author: Hamid Hussain
Author URI: ahwebsol.in
Description: A beautiful, responsive charity website with donation cart functionality. Built with ACF and Elementor compatibility.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ummah-theme
Tags: charity, donation, nonprofit, responsive, elementor

Ummah Charity Theme, Copyright 2024
Ummah is distributed under the terms of the GNU GPL v2 or later.
*/

/*
 * This file is only for WordPress theme registration.
 * All actual styles are in assets/css/style.css
 * Do not add CSS here - WordPress just needs this for theme info.
 */

/* ========================================
   UMMAH CHARITY - MAIN STYLESHEET
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Default colors - will be overridden by ACF */
    --color-primary: #1A2CA3;
    --color-primary-dark: #152390;
    --color-secondary: #d4af37;
    --color-accent: #F68048;
    --color-accent-dark: #e56f38;


    /* Neutral colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-text: #4a5568;
    --color-text-light: #718096;
    --color-bg-light: #f7fafc;
    --color-border: #e2e8f0;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;

    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 0.7rem 0;
    z-index: 1002;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-item i {
    color: #F68048;
}

.top-bar-right {
    display: flex;
    gap: 0.8rem;
}

.top-bar-social {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-social:hover {
    background: #F68048;
    transform: translateY(-2px);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    background: #1A2CA3;
}

.navbar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.2rem;
    color: #1A2CA3;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-icon {
    color: #fff;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text {
    color: #fff;
}

/* Brand Logo Image */
.brand-logo-link {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 90px; /* Reserve space for logo */
}

.brand-logo-image {
    display: block;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Logo switching on scroll */
.logo-default {
    opacity: 1;
    display: block;
    position: relative;
}

.logo-scroll {
    opacity: 0;
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* When navbar is scrolled, show white logo only */
.navbar.scrolled .logo-default {
    opacity: 0 !important;
    display: none !important;
}

.navbar.scrolled .logo-scroll {
    opacity: 1 !important;
    display: block !important;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
}

/* If no scroll logo exists in HTML, keep default visible on scroll */
.navbar.scrolled .logo-default:only-child {
    opacity: 1 !important;
    display: block !important;
}

/* Ensure brand logo link doesn't collapse when default is hidden */
.navbar.scrolled .brand-logo-link {
    min-height: 90px;
}

.mobile-brand-logo {
    max-width: 200px;
}

/* Mobile nav logo image */
.mobile-nav-logo .brand-logo-image {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Mobile menu - show scroll logo when menu is open (dark background) */
.mobile-nav-logo .logo-default {
    opacity: 1;
    display: block;
}

.mobile-nav-logo .logo-scroll {
    opacity: 0;
    display: none;
}

/* When mobile drawer is active, show the scroll (white) logo if available */
.mobile-nav-drawer.active .mobile-nav-logo .logo-scroll {
    opacity: 1;
    display: block;
}

.mobile-nav-drawer.active .mobile-nav-logo .logo-default {
    opacity: 0;
    display: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li.nav-donate-item {
    margin-left: 0.5rem;
}

.nav-menu a {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-menu a {
    color: rgba(255, 255, 255, 0.95);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #1A2CA3;
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-menu a::after {
    background: #F68048;
}

.nav-menu a:hover {
    color: #F68048;
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Donate Button */
.btn-nav-donate {
    display: inline-block;
    padding: 0.95rem 2.5rem;
    background: #F68048;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(246, 128, 72, 0.4);
}

.btn-nav-donate:hover {
    background: #e56f38;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(246, 128, 72, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: #fff;
}

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

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

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

/* Body Padding */
body {
    padding-top: 130px;
}

/* Responsive */
@media (max-width: 1400px) {

    .top-bar-inner,
    .navbar-inner {
        padding: 0 4rem;
    }
}

@media (max-width: 1200px) {

    .top-bar-inner,
    .navbar-inner {
        padding: 0 2rem;
    }

    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .navbar-inner {
        padding: 0 1.5rem;
        position: relative;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Desktop nav menu hidden on mobile */
    .nav-menu {
        display: none;
    }

    body {
        padding-top: 70px;
    }
}

/* Mobile Navigation Drawer */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.mobile-nav-drawer.active {
    left: 0;
    display: block;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #1A2CA3 0%, #2d5f5d 100%);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.mobile-nav-logo .logo-icon {
    font-size: 1.5rem;
}

/* Mobile nav logo image */
.mobile-nav-logo .brand-logo-image {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.mobile-nav-close svg {
    stroke: #ffffff;
}

.mobile-nav-content {
    padding: 1.5rem;
    height: calc(100vh - 73px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-menu li a {
    display: block;
    padding: 1rem 1.25rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    background: linear-gradient(135deg, #1A2CA3 0%, #2d5f5d 100%);
    color: #ffffff;
    transform: translateX(5px);
}

/* Mobile Donate Section */
.mobile-donate-section {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
}

.btn-nav-donate-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #F68048 0%, #e56f38 100%);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(246, 128, 72, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.btn-nav-donate-mobile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(246, 128, 72, 0.5);
}

.btn-nav-donate-mobile:active {
    transform: translateY(-1px);
}

.btn-nav-donate-mobile .donate-icon {
    font-size: 1.6rem;
}

.btn-nav-donate-mobile .donate-text {
    font-size: 1.15rem;
}

.mobile-donate-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

/* Desktop - hide mobile drawer */
@media (min-width: 901px) {
    .mobile-menu-overlay {
        display: none;
    }

    .mobile-nav-drawer {
        display: none;
    }

    .hamburger {
        display: none;
    }
}


/* Responsive */
/* Responsive adjustments */
@media (max-width: 1400px) {
    .top-bar-content {
        padding: 0 4rem;
    }

    .nav-wrapper {
        padding: 1rem 4rem;
    }
}

.nav-links {
    gap: 2rem;
}


@media (max-width: 1200px) {
    .top-bar-content {
        padding: 0 2rem;
    }

    .top-bar-left {
        gap: 1.5rem;
    }

    .nav-wrapper {
        padding: 1rem 2rem;
    }
}

.nav-links {
    gap: 1.5rem;
}

.nav-links a {
    font-size: 0.95rem;
}


@media (max-width: 900px) {

    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    /* Navbar goes to top on mobile */
    .navbar {
        top: 0;
    }

    body {
        padding-top: 75px;
        /* Just navbar */
    }
}

@media (max-width: 600px) {
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
}

.nav-wrapper {
    padding: 1rem 1.5rem;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.nav-links a {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--color-dark);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.btn-donate {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 1.4rem;
    }

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

    .nav-links {
        width: 280px;
        padding: 5rem 1.5rem 2rem;
    }
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    margin-top: 0;
    overflow: hidden;
}

/* Front page hero - ensure no gap from top */
body.front-page .hero-slider,
body.home .hero-slider {
    margin-top: 0;
    padding-top: 0;
}

/* Slider Container */
.slider-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient if image not loaded */
    background-image: linear-gradient(135deg,
            rgba(45, 95, 93, 0.95) 0%,
            rgba(29, 57, 56, 0.9) 50%,
            rgba(45, 95, 93, 0.95) 100%);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 44, 163, 0.8) 0%,
            rgba(26, 44, 163, 0.5) 50%,
            rgba(26, 44, 163, 0.2) 85%,
            rgba(26, 44, 163, 0) 100%);
    z-index: 1;
}

/* Video Slides */
.slide-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

.slide-video-direct {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Hero Content Container */
.hero-slider-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: center;
    min-height: calc(100vh - 160px);
    padding: 2rem 0;
}

/* Left Side - Text Content */
.hero-text-content {
    color: var(--color-white);
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-slider-content .hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-slider-content .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Quick Causes Buttons */
.quick-causes {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.quick-cause-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.quick-cause-btn:hover,
.quick-cause-btn.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.quick-cause-btn .redirect-icon {
    font-size: 0.9rem;
    margin-left: 0.25rem;
    opacity: 0.8;
}

.cause-icon {
    font-size: 1.1rem;
}

/* Additional Causes Tags */
.additional-causes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.cause-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cause-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.cause-tag.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.cause-tag .redirect-icon {
    font-size: 0.85rem;
    margin-left: 0.25rem;
    opacity: 0.8;
}

.tag-icon {
    font-size: 1.1rem;
}

/* Right Side - Donation Form */
.hero-donate-form {
    animation: fadeInRight 1s ease-out 0.6s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.donate-form-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Form Header with Tabs */
.donate-form-header {
    background: var(--color-bg-light);
    padding: 0;
}

.form-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.form-tab {
    padding: 0.9rem 0.75rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition-base);
}

.form-tab:hover {
    background: rgba(45, 95, 93, 0.05);
}

.form-tab.active {
    background: var(--color-white);
    border-bottom-color: var(--color-secondary);
    color: var(--color-dark);
}

/* Current Cause Display */
.current-cause {
    padding: 1rem 1.25rem;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.cause-badge {
    font-size: 1.25rem;
}

.cause-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
}

/* Form Content */
.donate-form-content {
    padding: 1.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.6rem;
    text-align: center;
}

/* Currency Display */
.currency-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--color-bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.currency-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.currency-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Amount Grid */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.amount-btn {
    padding: 0.75rem;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-base);
}

.amount-btn:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 93, 0.15);
}

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

/* Custom Amount Input */
.custom-amount {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 0.4rem 1rem;
    transition: all var(--transition-base);
}

.custom-amount:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

.currency-symbol {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-right: 0.4rem;
}

.custom-amount-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    outline: none;
    padding: 0.4rem;
}

.custom-amount-input::placeholder {
    color: var(--color-text-light);
    opacity: 0.5;
}

.currency-code {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-left: 0.4rem;
}

/* Donate Button */
.btn-donate-now {
    width: 100%;
    padding: 0.85rem;
    background: var(--color-secondary);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.75rem;
}

.btn-donate-now:hover {
    background: #c19d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.btn-donate-now:active {
    transform: translateY(0);
}

/* Recurring Info */
.recurring-info {
    font-size: 0.7rem;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.4;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 2rem;
}

.slider-control.next {
    right: 2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    width: 40px;
    border-radius: 10px;
}

/* Scroll Indicator */
.hero-slider .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 20;
}

/* ========================================
   HERO SLIDER RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .hero-slider-content {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }

    .hero-slider-content .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-slider-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-donate-form {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-text-content {
        text-align: center;
    }

    .quick-causes {
        justify-content: center;
    }

    .additional-causes {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-slider-content {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-slider-content .hero-title {
        font-size: 2.5rem;
    }

    .hero-slider-content .hero-subtitle {
        font-size: 1.1rem;
    }

    .quick-causes {
        flex-direction: column;
    }

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

    .slider-control {
        width: 40px;
        height: 40px;
    }

    .slider-control.prev {
        left: 1rem;
    }

    .slider-control.next {
        right: 1rem;
    }

    .slider-indicators {
        bottom: 1.5rem;
    }

    .hero-slider .scroll-indicator {
        display: none;
    }

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

@media (max-width: 480px) {
    .hero-slider-content .hero-title {
        font-size: 2rem;
    }

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

    .form-tab {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .donate-form-content {
        padding: 1.5rem;
    }

    .custom-amount-input {
        font-size: 1.5rem;
    }
}

/* ========================================
   ORIGINAL HERO STYLES (for reference/fallback)
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(45, 95, 93, 0.95) 0%,
            rgba(29, 57, 56, 0.9) 50%,
            rgba(45, 95, 93, 0.95) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 93, 79, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.7),
            transparent);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    text-align: center;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

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

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

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

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ========================================
   FEATURED CAMPAIGNS SECTION
   ======================================== */
.featured-campaigns {
    padding: 6rem 0;
    background: var(--color-bg-light);
    overflow: hidden;
}

.campaigns-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.campaigns-intro {
    flex: 1;
    max-width: 900px;
}

.campaigns-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.campaigns-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--color-secondary);
}

.campaigns-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.campaigns-controls {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.campaign-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--color-dark);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.campaign-nav-btn:hover {
    background: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.campaign-nav-btn:active {
    transform: scale(0.95);
}

.campaign-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Slider Wrapper */
.campaigns-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.campaigns-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
}

.campaigns-slider::-webkit-scrollbar {
    display: none;
}

/* Campaign Card */
.campaign-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    display: grid;
    grid-template-columns: 45% 55%;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.campaign-image {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.campaign-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
}

.campaign-badge {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}

.campaign-year {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 1rem;
}

.campaign-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.campaign-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.campaign-impact {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
}

.campaign-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
    line-height: 1;
}

.btn-campaign {
    width: 100%;
    padding: 1rem 2rem;
    background: #F68048;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: capitalize;
}

.btn-campaign:hover {
    background: #e56f3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(246, 128, 72, 0.4);
}

.btn-campaign:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .campaign-card {
        flex: 0 0 calc(60% - 1rem);
        min-width: calc(60% - 1rem);
    }
}

@media (max-width: 1024px) {
    .campaigns-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .campaigns-controls {
        align-self: flex-end;
    }

    .campaign-card {
        flex: 0 0 calc(70% - 1rem);
        min-width: calc(70% - 1rem);
    }
}

@media (max-width: 768px) {
    .featured-campaigns {
        padding: 4rem 0;
    }

    .campaigns-title {
        font-size: 2.25rem;
    }

    .campaigns-header {
        margin-bottom: 2rem;
    }

    .campaigns-controls {
        position: static;
        margin-top: 1rem;
    }

    .campaign-nav-btn {
        width: 45px;
        height: 45px;
    }

    .campaign-card {
        flex: 0 0 85%;
        min-width: 85%;
        grid-template-columns: 1fr;
    }

    .campaign-image {
        height: 250px;
    }

    .campaign-content {
        padding: 2rem;
    }

    .campaign-year {
        font-size: 2.5rem;
    }

    .campaign-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .campaigns-title {
        font-size: 1.75rem;
    }

    .campaigns-description {
        font-size: 0.95rem;
    }

    .campaign-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .campaign-content {
        padding: 1.5rem;
    }

    .campaign-year {
        font-size: 2rem;
    }

    .campaign-price {
        font-size: 1.75rem;
    }

    .btn-campaign {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   IMPACT STATISTICS - WITH BOXES
   ======================================== */

.impact-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

/* Icon Container */
.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(26, 44, 163, 0.1) 0%, rgba(26, 44, 163, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(26, 44, 163, 0.15) 0%, rgba(26, 44, 163, 0.1) 100%);
}

/* FontAwesome Icons */
.stat-icon-fa {
    font-size: 3rem !important;
}

.stat-icon-fa i {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    line-height: 1 !important;
}

/* Number */
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}

/* Label */
.stat-label {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .impact-stats {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 2.5rem 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
    }

    .stat-icon-fa {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .stat-icon-fa {
        font-size: 2rem !important;
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* ========================================
   MISSION SECTION ENHANCED STYLES
   ======================================== */

/* Mission tag with enhanced secondary color styling */
.mission .mission-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.mission .mission-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
    border-radius: 2px;
}

/* Mission title - H1 with prominent styling */
.mission .mission-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

/* Enhanced mission description */
.mission .mission-description {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
}

/* ========================================
   MISSION SECTION
   ======================================== */
.mission {
    background: var(--color-white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.mission-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.value-icon {
    font-size: 1.5rem;
}

.mission-visual {
    position: relative;
    height: 500px;
    overflow: visible;
}

/* Add padding to next section to prevent overlap */
.mission + section,
.mission + .causes {
    margin-top: 2rem;
}

.visual-card {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.visual-card.card-1 {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: float 6s ease-in-out infinite;
}

.visual-card.card-2 {
    width: 50%;
    height: 60%;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation: float 6s ease-in-out 2s infinite;
}

.visual-card.card-3 {
    width: 40%;
    height: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    animation: float 6s ease-in-out 4s infinite;
}

/* Visual card size variations */
.visual-card.card-size-small {
    width: 200px;
    height: 200px;
}

.visual-card.card-size-medium {
    width: 280px;
    height: 280px;
}

.visual-card.card-size-large {
    width: 350px;
    height: 350px;
}

/* Adjust card positions based on size */
.visual-card.card-1.card-size-large {
    top: -20px;
    left: -20px;
}

.visual-card.card-2.card-size-large {
    top: 100px;
    right: 50px;
}

.visual-card.card-3.card-size-large {
    bottom: -30px;
    right: 150px;
}

/* Visual card image styling */
.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Add subtle shadow to image cards */
.visual-card:has(img) {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Hover effect for image cards */
.visual-card:has(img):hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Ensure smooth transitions */
.visual-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Reduce floating animation on mobile to prevent overlap */
@media (max-width: 768px) {
    .visual-card {
        animation: float 3s ease-in-out infinite;
    }

    .visual-card.card-1 {
        top: 0 !important;
        left: 0 !important;
    }

    .visual-card.card-2 {
        bottom: 0 !important;
        right: 0 !important;
    }

    .visual-card.card-3 {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* Image overlay on hover */
.visual-card img {
    transition: transform 0.4s ease;
}

.visual-card:hover img {
    transform: scale(1.05);
}

/* Optional: Add gradient overlay for text */
.visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.visual-card:hover::after {
    opacity: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -20px);
    }
}

/* ========================================
   CAUSES SECTION
   ======================================== */
.causes {
    background: var(--color-bg-light);
}

/* Causes Grid - Responsive 4 Column Layout */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

/* Cause Card */
.cause-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.cause-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Cause Image */
.cause-image {
    position: relative;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Image with photo */
.cause-image.has-photo {
    background-size: cover;
}

/* Image with gradient */
.cause-image.has-gradient {
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional overlay for better text contrast */
.cause-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cause-card:hover .cause-image-overlay {
    opacity: 1;
}

/* Cause Content */
.cause-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cause-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cause-description {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Progress Bar */
.cause-progress {
    margin-bottom: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 10px;
    transition: width 1s ease-out;
}

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

/* Button */
.btn-cause {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-base);
}

.btn-cause:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 93, 0.3);
}

/* Responsive Breakpoints */

/* 3 columns on tablets */
@media (max-width: 1200px) {
    .causes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* 2 columns on small tablets */
@media (max-width: 900px) {
    .causes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cause-image {
        height: 240px;
    }
}

/* 1 column on mobile */
@media (max-width: 600px) {
    .causes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cause-image {
        height: 220px;
    }

    .cause-content {
        padding: 1.5rem;
    }

    .cause-title {
        font-size: 1.3rem;
    }
}

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

.btn-cause {
    display: block;
    text-align: center;
    padding: 0.9rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 10px;
    font-weight: 700;
    transition: all var(--transition-base);
}

.btn-cause:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   ENHANCED PAGE HEADLINES
   ======================================== */

/* --- Causes Section (Where We Help) --- */
.causes .causes-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.causes .causes-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
    border-radius: 2px;
}

.causes .causes-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

/* --- Story Section (About Page) --- */
.story-section .story-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.story-section .story-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
    border-radius: 2px;
}

.story-section .story-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

/* --- Values Section --- */
.values-section .values-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.values-section .values-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center !important;
}

/* --- Team Section --- */
.team-section .team-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.team-section .team-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* --- Timeline Section --- */
.timeline-section .timeline-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.timeline-section .timeline-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* --- Services Page Header --- */
.services-hero-header {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-hero-header .container {
    display: flex;
    justify-content: center;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center !important;
}

.services-hero-content .services-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.services-hero-content .services-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
    border-radius: 2px;
}

.services-hero-content .services-title,
.services-hero-content h1.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-align: center !important;
    display: block;
}

.services-hero-content .services-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    text-align: center !important;
}

/* --- How We Work Section --- */
.how-we-work {
    background: var(--color-bg-light);
    padding: 6rem 0;
}

.how-we-work .section-header.centered {
    text-align: center !important;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 4rem;
}

.how-we-work .section-header.centered .how-we-work-tag {
    display: block;
    text-align: center;
}

.how-we-work .how-we-work-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.how-we-work .how-we-work-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
    border-radius: 2px;
}

.how-we-work .section-title.how-we-work-title,
.how-we-work .how-we-work-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Section --- */
.contact-form-wrapper .contact-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-form-wrapper .contact-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
    border-radius: 2px;
}

.contact-form-wrapper .contact-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* --- Quick Actions Section --- */
.quick-actions .quick-actions-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.quick-actions .quick-actions-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* --- FAQ Section --- */
.faq-section .faq-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.faq-section .faq-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* --- CTA Section Enhanced --- */
.cta .cta-tag {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta .cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.cta .cta-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-dark) 100%);
    z-index: -1;
}

.cta-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER - BEAUTIFUL DESIGN
   ======================================== */

.footer {
    background: var(--footer-bg, linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%));
    color: var(--footer-text, rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
}

/* Footer Main */
.footer-main {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

/* 3 Columns Layout (when contact column is hidden) */
.footer-grid.footer-3-columns {
    grid-template-columns: 2fr 1fr 1fr;
}

/* Footer About Column */
.footer-about {
    max-width: 350px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-text .logo-icon {
    font-size: 2rem;
    color: var(--color-accent);
}

.footer-logo-text .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

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

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--footer-text, rgba(255, 255, 255, 0.7));
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column {
    /* Default styling for all columns */
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--footer-text, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--footer-text, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-contact span {
    color: var(--footer-text, rgba(255, 255, 255, 0.7));
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about {
        text-align: center;
        max-width: 100%;
    }

    .footer-logo-text {
        justify-content: center;
    }

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

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 1.5rem;
    }
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    position: relative;
    padding: 10rem 0 6rem;
    margin-top: 0px;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(45, 95, 93, 0.9) 0%,
            rgba(29, 57, 56, 0.85) 100%);
    z-index: -1;
}

.page-header-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story-section {
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.image-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   VISION & MISSION
   ======================================== */
.vision-mission {
    background: var(--color-bg-light);
    padding: 6rem 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.vm-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.vm-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.vm-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.vm-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.value-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    background: var(--color-bg-light);
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.team-initial {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========================================
   TIMELINE
   ======================================== */
.timeline-section {
    padding: 6rem 0;
}

.timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-secondary);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: center;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    position: relative;
    background: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--color-bg-light);
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-year::after {
    right: auto;
    left: -50px;
}

.timeline-content {
    padding: 2rem 2.5rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   SERVICES DETAILED
   ======================================== */
.services-intro {
    padding: 3rem 0;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}


.service-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    display: block;
    line-height: 1;
}

.service-icon i::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-style: normal;
}

.service-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2.5rem;
}

/* ========================================
   SERVICES PAGE - IMAGE STYLING
   ======================================== */

/* Service Visual Container */
.service-visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Images */
.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 1;
}

.service-visual img.loaded {
    opacity: 1;
}

/* Hide placeholder when image loads successfully */
.service-visual.loaded .visual-placeholder {
    display: none !important;
}

/* Show placeholder when image is hidden due to error */
.service-visual img[style*="display: none"] + .visual-placeholder {
    display: flex !important;
}

/* Hover Effect - Lift Up */
.service-detail:hover .service-visual {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Hover Effect - Zoom Image */
.service-detail:hover .service-visual img {
    transform: scale(1.05);
}

/* Loading Animation - Fade In */
.service-visual {
    animation: fadeInUp 0.8s ease-out backwards;
}

/* Stagger animation for each service */
.service-detail:nth-child(1) .service-visual {
    animation-delay: 0.1s;
}

.service-detail:nth-child(2) .service-visual {
    animation-delay: 0.2s;
}

.service-detail:nth-child(3) .service-visual {
    animation-delay: 0.3s;
}

.service-detail:nth-child(4) .service-visual {
    animation-delay: 0.4s;
}

.service-detail:nth-child(5) .service-visual {
    animation-delay: 0.5s;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Visual Placeholder (if no image) */
.visual-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.visual-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.visual-text {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Service Detail Container */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

/* Reverse Layout - Image on Left, Content on Right */
.service-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-content {
    order: 2 !important;
}

.service-detail.reverse .service-visual {
    order: 1 !important;
}

/* Explicit alignment classes */
.service-detail.image-left .service-content {
    order: 2 !important;
}

.service-detail.imageLeft .service-visual {
    order: 1 !important;
}

.service-detail.imageRight .service-content {
    order: 1 !important;
}

.service-detail.imageRight .service-visual {
    order: 2 !important;
}

/* Add subtle overlay effect on image */
.service-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-detail:hover .service-visual::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail.reverse .service-content,
    .service-detail.reverse .service-visual {
        order: initial;
    }

    .visual-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .service-visual {
        border-radius: 15px;
    }

    .service-visual img {
        border-radius: 15px;
    }

    .visual-placeholder {
        min-height: 250px;
        border-radius: 15px;
    }

    .visual-text {
        font-size: 1.5rem;
    }
}

/* Image Loading Skeleton */
.service-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            #f0f0f0 0%,
            #e0e0e0 50%,
            #f0f0f0 100%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
    border-radius: 20px;
    z-index: 1;
}

.service-visual img {
    position: relative;
    z-index: 2;
}

.service-visual.loaded::before {
    display: none;
}

@keyframes skeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Parallax Effect on Scroll */
.service-visual {
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    .service-detail:hover .service-visual img {
        transform: scale(1.05) translateZ(0);
    }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .service-visual,
    .service-visual img,
    .service-detail:hover .service-visual,
    .service-detail:hover .service-visual img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* Featured Items*/
.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-impact {
    display: flex;
    gap: 3rem;
}

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

.impact-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.impact-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.service-visual {
    position: relative;
    height: 500px;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.visual-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   HOW WE WORK
   ======================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.process-step {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: var(--color-white);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

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

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
}

/* ========================================
   Contact Form 7 Styling
   ======================================== */

.cf7-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cf7-contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Row Layout - Two Columns */
.cf7-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cf7-contact-form .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cf7-contact-form .wpcf7-label {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cf7-contact-form .wpcf7-text,
.cf7-contact-form .wpcf7-email,
.cf7-contact-form .wpcf7-tel,
.cf7-contact-form .wpcf7-select,
.cf7-contact-form .wpcf7-textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--color-white);
    width: 100%;
    box-sizing: border-box;
}

.cf7-contact-form .wpcf7-text:focus,
.cf7-contact-form .wpcf7-email:focus,
.cf7-contact-form .wpcf7-tel:focus,
.cf7-contact-form .wpcf7-select:focus,
.cf7-contact-form .wpcf7-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

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

.cf7-contact-form .wpcf7-submit {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
}

/* CF7 Validation Messages */
.cf7-contact-form .wpcf7-not-valid-tip {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.cf7-contact-form .wpcf7-response-output {
    margin: 1rem 0 0 0;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.cf7-contact-form .wpcf7-mail-sent-ok {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.cf7-contact-form .wpcf7-validation-errors,
.cf7-contact-form .wpcf7-mail-sent-ng {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #c62828;
}

/* Responsive - Stack form rows on mobile */
@media (max-width: 768px) {
    .cf7-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* CF7 Notice */
.cf7-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.cf7-notice p {
    margin: 0;
    color: #856404;
}

.cf7-notice strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Form Messages (Success/Error) */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message.success {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.form-message.error {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #c62828;
}

/* Contact Information */
.contact-info-wrapper {
    top: 100px;
    height: fit-content;
}

.contact-info-card {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 20px;
}

.info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.info-description {
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-content h4 {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-connect {
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.social-connect h4 {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links-large {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    z-index: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Social Media Brand Colors */
.social-link.social-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5bca 100%);
}

.social-link.social-twitter,
.social-link.social-x {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

/* X (Twitter) Icon - Specific Styling */
.social-link.social-x i {
    font-size: 1.5rem;
    font-weight: 400;
}

.social-link.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.social-linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.social-link.social-youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.social-link.social-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* ========================================
   QUICK ACTIONS
   ======================================== */
.quick-actions {
    background: var(--color-bg-light);
    padding: 6rem 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.action-card {
    background: var(--color-white);
    background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.action-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.action-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.action-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-action {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(26, 44, 163, 0.3);
    margin-top: 0.5rem;
    text-decoration: none;
}

.btn-action:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 44, 163, 0.4);
    color: var(--color-white);
    text-decoration: underline;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 6rem 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .mission-content,
    .story-content,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-info-wrapper {
        position: static;
    }
}

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

    section {
        padding: 4rem 0;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-white);
        flex-direction: column;
        padding: 3rem;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-base);
        z-index: 999;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .page-title {
        font-size: 2.5rem;
    }

    .stats-grid,
    .causes-grid,
    .values-grid,
    .team-grid,
    .process-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }

    .mission-values {
        flex-direction: column;
        gap: 1rem;
    }

    .mission-visual {
        height: 400px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

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

    .timeline::before {
        left: 50%;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-year {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .timeline-year::after {
        right: auto;
        left: 50%;
        bottom: -40px;
        top: auto;
        transform: translateX(-50%);
    }

    .timeline-item:nth-child(even) .timeline-year::after {
        left: 50%;
        right: auto;
    }

    .timeline-content {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   HERO SECTION - MOBILE RESPONSIVE
   ======================================== */

/* Mobile Optimizations */
@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero-tag {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Quick Causes - Stack on Mobile */
    .quick-causes {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .quick-cause-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .quick-cause-btn .cause-icon {
        font-size: 1.2rem;
    }

    /* Additional Cause Tags */
    .additional-causes {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .cause-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Donation Form - Full Width on Mobile */
    .donation-form {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1.5rem;
        border-radius: 15px;
    }

    /* Form Tabs */
    .form-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-tab {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Amount Grid - 2 Columns on Mobile */
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .amount-btn {
        padding: 1rem 0.5rem;
        font-size: 1.1rem;
    }

    .amount-label {
        font-size: 0.75rem;
    }

    /* Custom Amount Input */
    .custom-amount {
        margin-top: 1rem;
    }

    .custom-amount input {
        padding: 0.9rem;
        font-size: 1rem;
    }

    /* Donate Button */
    .btn-donate-now {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
        /* Hide on mobile */
    }
}

/* Small Mobile (Portrait) */
@media (max-width: 600px) {
    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Quick Causes - Smaller */
    .quick-causes {
        gap: 0.4rem;
    }

    .quick-cause-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .quick-cause-btn .cause-icon {
        font-size: 1rem;
    }

    /* Donation Form */
    .donation-form {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .form-header h3 {
        font-size: 1.1rem;
    }

    .form-description {
        font-size: 0.85rem;
    }

    /* Amount Grid - Stack on Very Small Screens */
    .amount-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .amount-btn {
        padding: 0.9rem;
    }

    /* Form Tabs - Smaller Text */
    .form-tab {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .form-tab-icon {
        font-size: 1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 4rem 0 2rem;
    }

    .hero-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .hero-text {
        flex: 1;
        max-width: 50%;
        text-align: left;
    }

    .donation-form {
        flex: 1;
        max-width: 400px;
    }

    /* Amount Grid - 3 Columns in Landscape */
    .amount-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (iPad) */
@media (min-width: 601px) and (max-width: 900px) {
    .hero-content {
        padding: 0 2rem;
    }

    .donation-form {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Amount Grid - 3 Columns on Tablet */
    .amount-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
}

/* Large Tablet / Small Desktop */
@media (min-width: 901px) and (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .donation-form {
        max-width: 380px;
    }
}

/* Hero Video - Responsive */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 900px) {
    .hero-video {
        object-position: center;
    }

    /* Use static image on mobile instead of video for performance */
    .hero.has-video::after {
        content: '';
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: 0;
    }

    .hero.has-video .hero-video {
        display: none;
        /* Hide video on mobile */
    }
}

/* Slider Controls - Mobile */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .slider-controls {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    /* Slider Dots */
    .slider-dots {
        bottom: 0.5rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* Container - Responsive Padding */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6rem;
}

@media (max-width: 1400px) {
    .container {
        padding: 0 4rem;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
}

/* Form Input Fields - Touch Friendly */
@media (max-width: 900px) {

    .custom-amount input,
    .form-input,
    .form-select {
        font-size: 16px !important;
        /* Prevents zoom on iOS */
        min-height: 44px;
        /* Touch target size */
    }

    /* Buttons - Touch Friendly */
    .btn-donate-now,
    .amount-btn,
    .form-tab {
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--color-secondary);
    color: var(--color-white);
}

::-moz-selection {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* ========================================
   DONATION CART PANEL (Right Sidebar)
   ======================================== */

/* Cart Trigger Button */
.cart-trigger {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 900;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 12px 0 0 12px;
    padding: 1rem 0.75rem;
    cursor: pointer;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-base);
}

.cart-trigger:hover {
    background: var(--color-primary-dark);
    padding-right: 1rem;
}

.cart-trigger svg {
    width: 22px;
    height: 22px;
}

.cart-trigger-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.cart-trigger-count {
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -4px;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-base);
}

.cart-trigger-count.visible {
    opacity: 1;
    transform: scale(1);
}

/* Cart Panel Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100%;
    background: var(--color-white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-panel.active {
    transform: translateX(0);
}

/* Cart Header */
.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--color-border);
    background: linear-gradient(135deg, #1A2CA3 0%, #2d5f5d 100%);
    flex-shrink: 0;
}

.cart-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 6px;
}

.cart-icon-wrapper svg {
    stroke: #ffffff;
}

.cart-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cart-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.cart-count {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50px;
    padding: 0.15rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.cart-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.cart-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-close-btn svg {
    stroke: #ffffff;
    width: 20px;
    height: 20px;
}

/* Cart Body Scrollable */
.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

.cart-panel-body::-webkit-scrollbar {
    width: 4px;
}

.cart-panel-body::-webkit-scrollbar-track {
    background: transparent;
}

.cart-panel-body::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

/* Cart Empty State */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    text-align: center;
}

.cart-empty-icon {
    font-size: 4rem;
    opacity: 0.3;
}

.cart-empty p {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* Toast Notifications */
.donation-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2d5f5d;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10001;
    font-weight: 600;
}

.donation-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.donation-toast.success {
    background: #46b450;
}

.donation-toast.error {
    background: #dc3232;
}

/* Donation Type Tabs in Panel */
.panel-donate-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 2px solid var(--color-border);
    background: var(--color-bg-light);
    flex-shrink: 0;
}

.panel-tab {
    padding: 1rem 0.5rem;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.panel-tab:hover {
    background: rgba(45, 95, 93, 0.05);
}

.panel-tab.active {
    background: var(--color-white);
    border-bottom-color: var(--color-secondary);
    color: var(--color-dark);
}

/* Cause Display in Panel */
.panel-cause-display {
    padding: 1.1rem 1.5rem;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.panel-cause-icon {
    font-size: 1.4rem;
}

.panel-cause-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
}

/* Amount Chooser in Panel */
.panel-amount-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.panel-amount-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: center;
}

.panel-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.panel-amount-btn {
    padding: 0.85rem 0.5rem;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.panel-amount-btn:hover {
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

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

/* Custom Amount in Panel */
.panel-custom-amount {
    display: flex;
    align-items: center;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.1rem;
    transition: all var(--transition-base);
}

.panel-custom-amount:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

.panel-currency-symbol {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-right: 0.5rem;
}

.panel-amount-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    outline: none;
    padding: 0.3rem;
    width: 100%;
}

.panel-currency-code {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-light);
}

/* Add to Cart Button in Panel */
.panel-add-to-cart-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--color-secondary);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.panel-add-to-cart-btn:hover {
    background: #c19d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.panel-add-to-cart-btn:active {
    transform: translateY(0);
}

/* Cart Items List */
.cart-items-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-items-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem;
    background: var(--color-bg-light);
    border-radius: 12px;
    animation: slideInItem 0.3s ease-out;
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-image {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    overflow: hidden;
}

.cart-item-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.cart-item-type {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.cart-item-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    font-size: 1rem;
    padding: 0.1rem;
    transition: color var(--transition-fast);
    line-height: 1;
}

.cart-item-remove:hover {
    color: var(--color-accent);
}

/* Add More Impact Section */
.add-more-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.add-more-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.add-more-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    flex: 1;
}

.add-more-badge {
    background: var(--color-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-more-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    font-size: 1.2rem;
    transition: transform var(--transition-base);
    line-height: 1;
    padding: 0;
}

.add-more-toggle.open {
    transform: rotate(180deg);
}

.add-more-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.add-more-items {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.add-more-items.open {
    max-height: 600px;
}

.add-more-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem;
    background: var(--color-bg-light);
    border-radius: 10px;
    border: 1.5px solid transparent;
    transition: border-color var(--transition-base);
}

.add-more-item:hover {
    border-color: var(--color-primary);
}

.add-more-item-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.add-more-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-more-item-info {
    overflow: hidden;
}

.add-more-item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.add-more-item-desc {
    font-size: 0.78rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.add-more-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.add-more-item-price {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1rem;
}

.add-more-add-btn {
    padding: 0.45rem 1rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.add-more-add-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* Order Summary */
.cart-summary-section {
    padding: 1.5rem;
    flex-shrink: 0;
    background: var(--color-white);
    border-top: 2px solid var(--color-border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.cart-summary-row.subtotal {
    color: var(--color-text-light);
}

.cart-summary-row.fee {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cart-summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    border-top: 2px solid var(--color-border);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.cart-100-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.cart-action-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.cart-checkout-btn {
    padding: 1rem;
    background: var(--color-secondary);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    cursor: pointer;
    transition: all var(--transition-base);
}

.cart-checkout-btn:hover {
    background: #c19d2f;
    transform: translateY(-2px);
}

.cart-view-btn {
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.cart-view-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Added-to-cart pulse toast */
.cart-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-primary);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 1300;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
    }

    .cart-action-btns {
        grid-template-columns: 1fr;
    }
}

/* Cart Panel Responsive - Enhanced */
@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        max-width: 100vw;
    }

    .cart-panel-header {
        padding: 1rem 1.25rem;
        background: linear-gradient(135deg, #1A2CA3 0%, #2d5f5d 100%);
    }

    /* Mobile: Hide Add More Impact accordion by default */
    .accordion-content {
        max-height: 0;
    }

    .accordion-content.expanded {
        max-height: 650px;
    }

    .cart-header-left {
        gap: 0.6rem;
    }
}

/* Desktop: Show Add More Impact accordion expanded by default */
@media (min-width: 769px) {
    .accordion-content {
        max-height: 650px;
    }
}

.cart-icon-wrapper {
    width: 28px;
    height: 28px;
    padding: 5px;
}

.cart-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.cart-icon {
    font-size: 1.4rem;
}

.cart-title {
    font-size: 1.1rem;
}

.cart-count {
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
}

.cart-close-btn {
    width: 36px;
    height: 36px;
}

.cart-close-btn svg {
    width: 18px;
    height: 18px;
}

.cart-items {
    padding: 0;
}

.cart-rendered-item {
    padding: 1rem 1.25rem;
}

.cart-items-wrapper {
    max-height: 55%;
}

.cart-summary-wrapper {
    flex-basis: 45%;
    min-height: 45%;
}

.cart-summary {
    padding: 0.9rem 1.25rem;
}

.summary-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.summary-title {
    font-size: 0.85rem;
}

.summary-total-value {
    font-size: 1.05rem;
}

.accordion-header {
    padding: 0.9rem 1.25rem;
}

.accordion-title {
    font-size: 0.95rem;
}

.add-more-content {
    padding: 0 1.25rem 1.25rem;
}

.suggested-cause-item {
    gap: 0.75rem;
    padding: 0.75rem;
}

.suggested-image {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
}

.suggested-info h4 {
    font-size: 0.85rem;
}

.suggested-info p {
    font-size: 0.75rem;
}

.suggested-price {
    font-size: 0.85rem;
}

.btn-add-suggested {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    min-width: 50px;
}

.btn-checkout {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
}

.btn-clear-cart {
    width: 44px;
    height: 44px;
}
}

@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
    }

    .cart-panel-header {
        padding: 0.9rem 1rem;
    }

    .cart-header-left {
        gap: 0.5rem;
    }

    .cart-icon-wrapper {
        width: 26px;
        height: 26px;
        padding: 4px;
    }

    .cart-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .cart-title {
        font-size: 1rem;
    }

    .cart-count {
        font-size: 0.7rem;
        padding: 0.1rem 0.4rem;
        min-width: 20px;
    }

    .cart-close-btn {
        width: 34px;
        height: 34px;
    }

    .cart-close-btn svg {
        width: 16px;
        height: 16px;
    }

    .cart-items-wrapper {
        max-height: 50%;
    }

    .cart-summary-wrapper {
        flex-basis: 50%;
        min-height: 50%;
    }

    .cart-rendered-item {
        padding: 0.9rem 1rem;
    }

    .cart-item-thumb {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .cart-item-name {
        font-size: 0.9rem;
    }

    .cart-item-price {
        font-size: 0.95rem;
    }

    .accordion-icon {
        font-size: 1rem;
    }

    .accordion-badge {
        display: none;
    }

    .suggested-cause-item {
        flex-wrap: wrap;
    }

    .suggested-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
    }

    .btn-checkout {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }

    .btn-clear-cart {
        width: 42px;
        height: 42px;
    }

    .btn-clear-cart svg {
        width: 18px;
        height: 18px;
    }

    .cart-actions {
        gap: 0.5rem;
    }

    .summary-note {
        font-size: 0.7rem;
        padding: 0.5rem;
    }

    /* Floating cart button on mobile */
    .floating-cart-btn {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-cart-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .floating-cart-badge {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
        border-width: 2px;
        line-height: 1;
    }
}

@media (min-width: 769px) {
    .cart-panel {
        width: 420px;
    }
}

/* ========================================
   CART PANEL — NEW STRUCTURE STYLES
   ======================================== */

/* Header */
.cart-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-icon {
    font-size: 1.6rem;
}

.cart-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.cart-count {
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    padding: 0.15rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Scrollable items wrapper - 60% of panel */
.cart-items-wrapper {
    flex: 0 0 auto;
    max-height: 60%;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.cart-items-wrapper::-webkit-scrollbar {
    width: 4px;
}

.cart-items-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

/* Cart items - remove extra padding */
.cart-items {
    padding: 0;
}

/* Cart empty */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    gap: 0.75rem;
    color: var(--color-text-light);
}

/* Cart Summary Wrapper - 40% of panel */
.cart-summary-wrapper {
    flex: 1;
    flex-basis: 40%;
    min-height: 40%;
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--color-border);
    background: var(--color-bg-light);
}

.cart-empty-icon {
    font-size: 3.5rem;
    opacity: 0.25;
}

.cart-empty p {
    font-weight: 600;
    color: var(--color-text);
}

.cart-empty span {
    font-size: 0.9rem;
}

/* Rendered cart item */
.cart-rendered-item {
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
    animation: fadeInUp 0.3s ease-out;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cart-item-type-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    background: rgba(45, 95, 93, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
}

.cart-item-remove-btn {
    width: 26px;
    height: 26px;
    border: none;
    background: var(--color-bg-light);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.cart-item-remove-btn:hover {
    background: #ffe5e5;
    color: var(--color-accent);
}

.cart-item-body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-thumb {
    width: 48px;
    height: 48px;
    background: var(--color-bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cart-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.cart-item-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
}

/* Add More Impact */
.add-more-impact {
    border-top: 2px dashed var(--color-border);
    padding: 1.5rem;
    margin-top: 0.5rem;
}

.add-more-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.add-more-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark);
}

.urgent-badge {
    background: var(--color-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.add-more-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

/* Add More Impact Accordion */
.add-more-accordion {
    border-top: 2px dashed var(--color-border);
    background: var(--color-bg-light);
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
}

/* Default: accordion content expanded */
.accordion-content.expanded {
    max-height: 650px;
}

.accordion-toggle.rotated .chevron-icon {
    transform: rotate(180deg);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.accordion-header:hover {
    background: rgba(45, 95, 93, 0.05);
}

.accordion-header[aria-expanded="true"] {
    border-bottom-color: var(--color-border);
}

.accordion-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.accordion-icon {
    font-size: 1.2rem;
}

.accordion-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark);
}

.accordion-badge {
    background: rgba(45, 95, 93, 0.1);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.accordion-toggle {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.accordion-toggle:hover {
    background: var(--color-primary);
}

.accordion-toggle:hover .chevron-icon {
    stroke: #fff;
}

.accordion-toggle .chevron-icon {
    transition: transform var(--transition-base);
    stroke: var(--color-text);
}

.accordion-toggle.rotated .chevron-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-bg-light);
}

.accordion-content.expanded {
    max-height: 650px;
}

.add-more-content {
    padding: 0 1.5rem 1.5rem;
}

.suggested-causes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.add-more-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.suggested-cause-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.suggested-cause-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.suggested-image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: #fff;
}

.suggested-info {
    flex: 1;
    min-width: 0;
}

.suggested-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.suggested-info p {
    font-size: 0.78rem;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggested-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
}

.suggested-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.btn-add-suggested {
    padding: 0.4rem 1rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.btn-add-suggested:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

.btn-add-suggested.added {
    background: #46b450;
}

.btn-add-suggested .btn-added-text {
    display: none;
}

.btn-add-suggested.added .btn-add-text {
    display: none;
}

.btn-add-suggested.added .btn-added-text {
    display: inline;
}

/* Cart Summary */
.cart-summary {
    padding: 1rem 1.5rem;
    background: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    flex: 1;
}

.cart-summary::-webkit-scrollbar {
    width: 4px;
}

.cart-summary::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-items-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--color-white);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

.summary-details {
    background: var(--color-white);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--color-text);
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text);
}

.fee-tooltip {
    cursor: help;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
}

.fee-tooltip svg {
    opacity: 0.6;
}

.summary-value {
    font-weight: 700;
    color: var(--color-dark);
}

.summary-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.4rem 0;
}

.summary-total-row {
    padding-top: 0.6rem;
    margin-top: 0.15rem;
}

.summary-total-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-total-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
}

.summary-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 0.6rem;
    background: rgba(70, 180, 80, 0.1);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.summary-note svg {
    stroke: #46b450;
    flex-shrink: 0;
}

.cart-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-clear-cart {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #e53e3e;
    border: 2px solid #e53e3e;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.btn-clear-cart:hover {
    background: #e53e3e;
    color: #fff;
}

.btn-clear-cart svg {
    width: 20px;
    height: 20px;
}

.btn-checkout {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #F68048 0%, #e56f38 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(246, 128, 72, 0.3);
}

.btn-checkout:hover {
    background: #c19d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.btn-checkout svg {
    transition: transform var(--transition-base);
}

.btn-checkout:hover svg {
    transform: translateX(4px);
}

.btn-checkout-link {
    flex: 1;
    display: block;
}

.btn-checkout-link .btn-checkout {
    width: 100%;
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2CA3 0%, #2d5f5d 100%);
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(26, 44, 163, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    padding: 0;
}

.floating-cart-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 44, 163, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.floating-cart-btn:active {
    transform: scale(1.05);
}

.floating-cart-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.floating-cart-btn svg {
    stroke: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.floating-cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(135deg, #F68048 0%, #e56f38 100%);
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1A2CA3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translate(30%, -30%);
    line-height: 1;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Floating cart pulse animation */
.floating-cart-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 44, 163, 0.25) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.4;
    }
}

/* Inner shine effect */
.floating-cart-btn::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 10px;
    width: 18px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

/* Custom CSS For COlors*/
.btn-donate,
.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-donate:hover,
.btn-primary:hover {
    background: var(--color-accent-dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a::after {
    background: var(--color-primary);
}

.hero::before {
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.progress-fill {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

/* ========================================
   PAGE HEADER - CUSTOMIZABLE
   ======================================== */

.page-header {
    position: relative;
    padding: 6rem 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Text Color Variations */
.page-header.text-light .page-tag,
.page-header.text-light .page-title,
.page-header.text-light .page-subtitle {
    color: #ffffff;
}

.page-header.text-dark .page-tag,
.page-header.text-dark .page-title,
.page-header.text-dark .page-subtitle {
    color: #1a1a1a;
}

.page-header.text-light .page-tag {
    color: #F68048;
}

.page-header.text-dark .page-tag {
    color: #1A2CA3;
}

/* Responsive */
@media (max-width: 900px) {
    .page-header {
        padding: 4rem 0;
        min-height: 250px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 3rem 0;
        min-height: 200px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .page-tag {
        font-size: 0.8rem;
    }
}

/* ========================================
   CHECKOUT PAGE STYLES
   ======================================== */
.checkout-page-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 0.5rem 0 2rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.checkout-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.checkout-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1a1a1a;
}

.checkout-logo .logo-icon {
    font-size: 1.75rem;
}

.checkout-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.secured-checkout-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: rgba(70, 180, 80, 0.1);
    border-radius: 50px;
    color: #46b450;
    font-size: 0.8rem;
    font-weight: 600;
}

.secured-checkout-badge svg {
    stroke: #46b450;
    width: 18px;
    height: 18px;
}

.checkout-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.checkout-subtitle {
    font-size: 0.95rem;
    color: #718096;
}

/* Checkout Grid */
.checkout-grid {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Checkout Main Form */
.checkout-main {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-section {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f4f8;
}

.checkout-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #1A2CA3 0%, #2d5f5d 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Form Styles */
.form-row {
    display: flex;
    gap: 1rem;
}

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

.form-row-third>.form-group {
    flex: 1;
}

.form-group {
    flex: 1;
    margin-bottom: 0.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5a677b;
    margin-bottom: 0.15rem;
}

.form-group .required {
    color: #e53e3e;
}

.form-group .optional {
    color: #a0aec0;
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #eceff4;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1A2CA3;
    box-shadow: 0 0 0 3px rgba(26, 44, 163, 0.08);
}

.form-group input::placeholder {
    color: #a0aec0;
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
    gap: 0.65rem;
}

.country-code-select {
    width: 130px;
    padding: 0.75rem 0.65rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #fff;
    cursor: pointer;
}

.country-code-select:focus {
    outline: none;
    border-color: #1A2CA3;
}

.phone-input-wrapper input {
    flex: 1;
}

/* Country Select */
.country-select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fff;
    cursor: pointer;
}

.country-select:focus {
    outline: none;
    border-color: #1A2CA3;
}

/* Checkbox Styles */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #fff;
}

.checkbox-wrapper input:checked+.checkbox-custom {
    background: linear-gradient(135deg, #1A2CA3 0%, #2d5f5d 100%);
    border-color: #1A2CA3;
}

.checkbox-wrapper input:checked+.checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.checkbox-label {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.45;
}

.checkbox-label a {
    color: #1A2CA3;
    text-decoration: underline;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-card {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem;
    transition: all 0.2s ease;
    background: #fff;
}

.payment-option:hover .payment-card {
    border-color: #cbd5e0;
}

.payment-option.active .payment-card {
    border-color: #1A2CA3;
    background: rgba(26, 44, 163, 0.02);
    box-shadow: 0 0 0 3px rgba(26, 44, 163, 0.08);
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
}

.payment-icon {
    font-size: 1.35rem;
}

.payment-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.payment-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-powered {
    font-size: 0.8rem;
    color: #718096;
}

.payment-cards {
    display: flex;
    gap: 0.4rem;
}

.card-icon {
    font-size: 0.7rem;
    font-weight: 700;
    color: #718096;
    padding: 0.15rem 0.4rem;
    background: #f7fafc;
    border-radius: 3px;
}

.paypal-icon {
    font-size: 1.2rem;
}

/* Payment Section Content */
.payment-section-content {
    margin-top: 0.85rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 10px;
}

.stripe-card-element {
    padding: 0.85rem;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.65rem;
}

.stripe-errors {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 0.4rem;
}

.paypal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1.25rem;
    color: #718096;
}

.paypal-info svg {
    stroke: #46b450;
    width: 42px;
    height: 42px;
}

/* Checkout Actions */
.checkout-actions {
    margin-top: 0.85rem;
}

.btn-submit-checkout {
    width: 100%;
    padding: 1.1rem 1.75rem;
    background: linear-gradient(135deg, #F68048 0%, #e56f38 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 16px rgba(246, 128, 72, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.btn-submit-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(246, 128, 72, 0.45);
}

.btn-submit-checkout:active {
    transform: translateY(0);
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    font-size: 0.8rem;
    color: #718096;
}

.checkout-security-note svg {
    stroke: #46b450;
    width: 14px;
    height: 14px;
}

/* Order Summary Sidebar */
.checkout-sidebar {
    width: 380px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
    /* Safely clears theme header + WP admin bar */
    align-self: flex-start;
    height: fit-content;
    z-index: 100;
}

.order-summary-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.25rem;
}

.summary-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1.5px solid #eef2f7;
}

/* Summary Cart Items */
.summary-cart-items {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 0.85rem;
    padding-right: 0.25rem;
}

.summary-cart-items::-webkit-scrollbar {
    width: 4px;
}

.summary-cart-items::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.summary-cart-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f7fafc;
}

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

.summary-item-icon {
    width: 38px;
    height: 38px;
    background: #f7fafc;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.summary-item-info {
    flex: 1;
    min-width: 0;
}

.summary-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-item-type {
    font-size: 0.7rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.summary-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1A2CA3;
    flex-shrink: 0;
}

/* Summary Totals */
.summary-totals {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.85rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.summary-total {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    padding-top: 0.65rem;
}

.summary-total span:last-child {
    color: #1A2CA3;
    font-size: 1.2rem;
}

.summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.4rem 0;
}

.summary-charity-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    font-size: 0.8rem;
    color: #718096;
    padding: 0.65rem;
    background: rgba(70, 180, 80, 0.08);
    border-radius: 7px;
}

.summary-charity-note svg {
    stroke: #46b450;
    width: 14px;
    height: 14px;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 0.65rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f7fafc;
}

.trust-badge svg {
    stroke: #46b450;
    width: 22px;
    height: 22px;
}

.trust-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
    line-height: 1.3;
}

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-grid {
        flex-direction: column;
        gap: 0.75rem;
    }

    .checkout-sidebar {
        width: 100%;
        position: static;
    }

    .checkout-page-wrapper {
        padding: 1rem 0 2.5rem;
    }

    .checkout-grid {
        padding: 0 1rem;
    }

    .checkout-main {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .checkout-header-content {
        flex-direction: column;
        gap: 0.85rem;
    }

    .checkout-title {
        font-size: 1.5rem;
    }

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

    .phone-input-wrapper {
        flex-direction: column;
    }

    .country-code-select {
        width: 100%;
    }

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

    .payment-card-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .trust-badge {
        padding: 0.75rem 0.5rem;
    }

    .trust-badge span {
        font-size: 0.65rem;
    }

    /* Mobile: Order Summary header inside totals card - side by side */
    .summary-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .summary-title-mobile {
        font-size: 0.9rem;
        font-weight: 700;
        color: #1a1a1a;
    }

    .summary-items-count-mobile {
        font-size: 0.75rem;
        font-weight: 600;
        color: #718096;
        background: #f7fafc;
        padding: 0.2rem 0.5rem;
        border-radius: 50px;
    }

    /* Hide desktop header on mobile */
    .summary-header {
        display: none;
    }

    .order-summary-card {
        padding: 1rem;
    }

    .summary-cart-items {
        max-height: 150px;
    }
}

/* Desktop: Hide mobile header */
@media (min-width: 601px) {
    .summary-header-mobile {
        display: none;
    }
}

/* ========================================
   VOLUNTEER APPLY PAGE STYLES
   ======================================== */

.volunteer-apply-hero {
    padding: 6rem 0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.volunteer-apply-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.volunteer-hero-content {
    max-width: 600px;
}

.volunteer-apply-tag {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.volunteer-apply-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.volunteer-apply-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.volunteer-hero-content .btn {
    margin-bottom: 1rem;
}

.volunteer-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.volunteer-intro-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.volunteer-intro-section .intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.volunteer-intro-section .intro-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.volunteer-intro-section .section-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.volunteer-intro-section .section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.volunteer-intro-section .section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.volunteer-intro-section .intro-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.volunteer-intro-section .intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.volunteer-intro-section .stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border: 2px solid rgba(45, 95, 93, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.volunteer-intro-section .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 0 0 8px 8px;
    transition: width 0.4s ease;
}

.volunteer-intro-section .stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(45, 95, 93, 0.1) 0%, rgba(45, 95, 93, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.volunteer-intro-section .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 95, 93, 0.2);
    border-color: rgba(45, 95, 93, 0.2);
}

.volunteer-intro-section .stat-item:hover::before {
    width: 80%;
}

.volunteer-intro-section .stat-item:hover::after {
    width: 80px;
    height: 80px;
    opacity: 1;
}

.volunteer-intro-section .stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a4a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(45, 95, 93, 0.35), inset 0 -3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.volunteer-intro-section .stat-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.volunteer-intro-section .stat-icon-wrapper i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.volunteer-intro-section .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

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

.volunteer-requirements {
    padding: 6rem 0;
    background: var(--color-white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.requirement-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.requirement-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.requirement-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.volunteer-benefits {
    padding: 6rem 0;
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.volunteer-roles {
    padding: 6rem 0;
    background: var(--color-white);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.role-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.role-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.role-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-icon i {
    font-size: 1.25rem;
    color: var(--color-white);
}

.role-type {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(45, 95, 93, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.role-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.role-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.role-details {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.role-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.role-detail i {
    color: var(--color-primary);
}

.volunteer-application-form {
    padding: 6rem 0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.volunteer-application-form .section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.volunteer-application-form .section-tag.form-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.volunteer-application-form .section-tag.form-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.volunteer-application-form .section-title.form-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.volunteer-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.volunteer-form .form-group.full-width {
    grid-column: 1 / -1;
}

.volunteer-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.volunteer-form .form-group input,
.volunteer-form .form-group select,
.volunteer-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    background: var(--color-white);
}

.volunteer-form .form-group input:focus,
.volunteer-form .form-group select:focus,
.volunteer-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

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

.volunteer-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.volunteer-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.volunteer-form .checkbox-group label {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.volunteer-form .checkbox-group a {
    color: var(--color-primary);
    text-decoration: none;
}

.volunteer-form .checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 2rem;
}

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

.volunteer-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.volunteer-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.volunteer-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.volunteer-cta .cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.volunteer-cta .btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
}

.volunteer-cta .btn-secondary:hover {
    background: var(--color-bg-light);
}

/* ========================================
   VOLUNTEER EXPLORE PAGE STYLES
   ======================================== */

.volunteer-programs-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.volunteer-programs-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.programs-hero-content {
    max-width: 600px;
}

.programs-tag {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.programs-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.programs-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.programs-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.volunteer-programs-intro {
    padding: 5rem 0;
}

.volunteer-programs-intro .intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.volunteer-programs-intro .intro-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.volunteer-programs-list {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.program-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.program-content {
    padding: 2rem;
}

.program-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.program-meta i {
    color: var(--color-primary);
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.program-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.program-features i {
    color: var(--color-success);
}

.program-footer {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.program-footer .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.volunteer-process {
    padding: 5rem 0;
}

.process-subtitle,
.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--color-border);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.volunteer-testimonials {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img,
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role,
.testimonial-program,
.testimonial-amount {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.volunteer-impact-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.volunteer-impact-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.volunteer-impact-stats .stat-card {
    text-align: center;
    padding: 2rem;
}

.volunteer-impact-stats .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volunteer-impact-stats .stat-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.volunteer-impact-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.volunteer-impact-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.volunteer-programs-cta {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.volunteer-programs-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.volunteer-programs-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.volunteer-programs-cta .cta-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FUNDRAISER PAGE STYLES
   ======================================== */

.fundraiser-hero {
    padding: 6rem 0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.fundraiser-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fundraiser-hero-content {
    max-width: 600px;
}

.fundraiser-tag {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.fundraiser-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.fundraiser-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.fundraiser-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fundraiser-hero .btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.fundraiser-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.fundraiser-intro {
    padding: 6rem 0;
    background: var(--color-white);
}

.fundraiser-intro .intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.fundraiser-intro .intro-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.fundraiser-intro .section-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.fundraiser-intro .section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.fundraiser-intro .section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.fundraiser-intro .intro-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fundraiser-intro .intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.fundraiser-intro .stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border: 2px solid rgba(45, 95, 93, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fundraiser-intro .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 0 0 8px 8px;
    transition: width 0.4s ease;
}

.fundraiser-intro .stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(45, 95, 93, 0.1) 0%, rgba(45, 95, 93, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.fundraiser-intro .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 95, 93, 0.2);
    border-color: rgba(45, 95, 93, 0.2);
}

.fundraiser-intro .stat-item:hover::before {
    width: 80%;
}

.fundraiser-intro .stat-item:hover::after {
    width: 80px;
    height: 80px;
    opacity: 1;
}

.fundraiser-intro .stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a4a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(45, 95, 93, 0.35), inset 0 -3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.fundraiser-intro .stat-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.fundraiser-intro .stat-icon-wrapper i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fundraiser-intro .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

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

.fundraiser-features {
    padding: 6rem 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.fundraiser-process {
    padding: 6rem 0;
    background: var(--color-white);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #b8941f 100%);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-large i {
    font-size: 2.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.active-fundraisers {
    padding: 6rem 0;
    background: var(--color-white);
}

.fundraisers-subtitle,
.ideas-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

.fundraisers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.fundraiser-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.fundraiser-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.fundraiser-type-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.fundraiser-content {
    padding: 2rem;
}

.fundraiser-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.fundraiser-organizer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.fundraiser-organizer i {
    color: var(--color-primary);
}

.fundraiser-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.fundraiser-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.fundraiser-progress {
    margin-bottom: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.raised {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.goal {
    color: var(--color-text-light);
}

.currency {
    font-size: 0.85rem;
}

.progress-bar {
    height: 10px;
    background: var(--color-border);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50px;
    transition: width var(--transition-base);
}

.progress-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.progress-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.progress-stats i {
    color: var(--color-accent);
}

.fundraiser-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.fundraiser-footer .btn {
    width: 100%;
    text-align: center;
}

.fundraiser-ideas {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.fundraiser-ideas .section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.fundraiser-ideas .section-tag.ideas-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.fundraiser-ideas .section-tag.ideas-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.fundraiser-ideas .section-title.ideas-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.ideas-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.idea-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border: 2px solid rgba(45, 95, 93, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.idea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 0 0 8px 8px;
    transition: width 0.4s ease;
}

.idea-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 95, 93, 0.2);
    border-color: rgba(45, 95, 93, 0.2);
}

.idea-card:hover::before {
    width: 80%;
}

.idea-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.idea-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.idea-icon i {
    font-size: 2.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.idea-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.idea-description {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.fundraiser-testimonials {
    padding: 6rem 0;
    background: var(--color-white);
}

.fundraiser-faq {
    padding: 6rem 0;
    background: var(--color-white);
}

.fundraiser-start-form {
    padding: 6rem 0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.fundraiser-start-form .section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.fundraiser-start-form .section-tag.form-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.fundraiser-start-form .section-tag.form-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.fundraiser-start-form .section-title.form-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.fundraiser-start-form .form-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fundraiser-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fundraiser-form .form-group.full-width {
    grid-column: 1 / -1;
}

.fundraiser-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.fundraiser-form .form-group input,
.fundraiser-form .form-group select,
.fundraiser-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    background: var(--color-white);
}

.fundraiser-form .form-group input:focus,
.fundraiser-form .form-group select:focus,
.fundraiser-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

.fundraiser-form .form-group textarea {
    resize: vertical;
}

.fundraiser-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.fundraiser-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.fundraiser-form .checkbox-group label {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.fundraiser-form .checkbox-group a {
    color: var(--color-primary);
    text-decoration: none;
}

.fundraiser-form .checkbox-group a:hover {
    text-decoration: underline;
}

.fundraiser-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #b8941f 100%);
}

.fundraiser-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fundraiser-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.fundraiser-cta .cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.fundraiser-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fundraiser-cta .btn-secondary,
.fundraiser-cta .btn-outline {
    background: var(--color-white);
    color: var(--color-secondary);
}

.fundraiser-cta .btn-secondary:hover,
.fundraiser-cta .btn-outline:hover {
    background: var(--color-bg-light);
}

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

.fundraiser-cta .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-secondary);
}

/* ========================================
   RESPONSIVE STYLES FOR NEW PAGES
   ======================================== */

@media (max-width: 992px) {
    .volunteer-apply-hero .container,
    .volunteer-programs-hero .container,
    .fundraiser-hero .container {
        grid-template-columns: 1fr;
    }

    .volunteer-hero-content,
    .programs-hero-content,
    .fundraiser-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .volunteer-hero-image,
    .programs-hero-image,
    .fundraiser-hero-image {
        order: -1;
    }

    .volunteer-hero-image img,
    .programs-hero-image img,
    .fundraiser-hero-image img {
        height: 400px;
    }

    .volunteer-intro-section .intro-content,
    .volunteer-programs-intro .intro-content,
    .fundraiser-intro .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .volunteer-intro-section .intro-text,
    .fundraiser-intro .intro-text {
        max-width: 100%;
    }

    .volunteer-intro-section .intro-stats,
    .fundraiser-intro .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .volunteer-apply-title,
    .programs-title,
    .fundraiser-title,
    .volunteer-intro-section .section-title,
    .volunteer-application-form .section-title.form-title,
    .fundraiser-intro .section-title,
    .fundraiser-ideas .section-title.ideas-title,
    .fundraiser-start-form .section-title.form-title {
        font-size: 2rem;
    }

    .volunteer-apply-hero,
    .volunteer-programs-hero,
    .fundraiser-hero,
    .volunteer-intro-section,
    .volunteer-requirements,
    .volunteer-benefits,
    .volunteer-roles,
    .volunteer-application-form,
    .volunteer-cta,
    .volunteer-programs-intro,
    .volunteer-programs-list,
    .volunteer-process,
    .volunteer-testimonials,
    .volunteer-impact-stats,
    .volunteer-programs-cta,
    .fundraiser-intro,
    .fundraiser-features,
    .fundraiser-process,
    .active-fundraisers,
    .fundraiser-ideas,
    .fundraiser-testimonials,
    .fundraiser-faq,
    .fundraiser-start-form,
    .fundraiser-cta {
        padding: 3rem 0;
    }

    .volunteer-intro-section .intro-stats,
    .fundraiser-intro .intro-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .programs-grid,
    .fundraisers-grid {
        grid-template-columns: 1fr;
    }

    .volunteer-form .form-grid,
    .fundraiser-form .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .volunteer-cta .cta-title,
    .volunteer-programs-cta .cta-title,
    .fundraiser-cta .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons,
    .fundraiser-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .program-footer {
        flex-direction: column;
    }

    .ideas-grid,
    .features-grid,
    .benefits-grid,
    .requirements-grid,
    .roles-grid {
        grid-template-columns: 1fr;
    }

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

    .process-timeline,
    .process-steps-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .volunteer-impact-stats .stats-grid {
        grid-template-columns: 1fr;
    }

    .fundraiser-type-badge,
    .program-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   PARTNER PAGE STYLES
   ======================================== */

/* Partner Hero Section - Match story-section style */
.partner-hero {
    padding: 6rem 0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.partner-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.partner-hero-content {
    max-width: 600px;
}

.partner-tag {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.partner-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.partner-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.partner-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.partner-hero-buttons .btn {
    margin-bottom: 0;
}

.partner-hero-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.partner-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partner Intro Section - Match standard page styling */
.partner-intro-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.partner-intro-section .intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-intro-section .intro-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.partner-intro-section .section-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.partner-intro-section .section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.partner-intro-section .section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-intro-section .intro-description {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.partner-intro-section .intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.partner-intro-section .stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 20px;
    border: 2px solid rgba(45, 95, 93, 0.08);
    transition: all var(--transition-base);
    position: relative;
    overflow: visible;
    box-shadow: var(--shadow-sm);
}

.partner-intro-section .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.partner-intro-section .stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a4a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(45, 95, 93, 0.35);
    position: relative;
    z-index: 1;
}

.partner-intro-section .stat-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.partner-intro-section .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

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

/* Partnership Tiers - Match standard card styling */
.partnership-tiers {
    padding: 6rem 0;
    background: var(--color-white);
}

.tiers-tag {
    color: var(--color-primary);
}

.tiers-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(45, 95, 93, 0.1);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.tier-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(45, 95, 93, 0.1) 0%, rgba(45, 95, 93, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-icon i {
    font-size: 2rem;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.tier-investment {
    margin-bottom: 1.5rem;
}

.investment-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.investment-period {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.tier-description {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--color-dark);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li i {
    color: var(--color-primary);
    margin-top: 0.25rem;
}

/* Partner Benefits - Match values-section styling */
.partner-benefits {
    padding: 6rem 0;
    background: var(--color-white);
}

.benefits-tag {
    color: var(--color-primary);
}

.benefits-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(45, 95, 93, 0.1) 0%, rgba(45, 95, 93, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Partner Testimonials - Match team-section styling */
.partner-testimonials {
    padding: 6rem 0;
    background: var(--color-white);
}

.testimonials-tag {
    color: var(--color-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-dark);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder i {
    color: white;
    font-size: 1.5rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Partnership Form Section - Match contact form styling */
.partnership-form-section {
    padding: 6rem 0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.partnership-form-section .section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partnership-form-section .section-tag.form-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.partnership-form-section .section-tag.form-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.partnership-form-section .section-title.form-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.partnership-form-section .form-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-form-section .form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.partnership-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.partnership-form .form-group.full-width {
    grid-column: 1 / -1;
}

.partnership-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.partnership-form .form-group input,
.partnership-form .form-group select,
.partnership-form .form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all var(--transition-base);
    font-family: inherit;
    background: var(--color-white);
}

.partnership-form .form-group input:focus,
.partnership-form .form-group select:focus,
.partnership-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

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

.partnership-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.partnership-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.partnership-form .checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.partnership-form .checkbox-group a {
    color: var(--color-primary);
    text-decoration: none;
}

.partnership-form .checkbox-group a:hover {
    text-decoration: underline;
}

.partnership-form .form-submit {
    margin-top: 2rem;
}

/* Partner CTA Section - Match standard CTA styling */
.partner-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.partner-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.partner-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.partner-cta .cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partner-cta .cta-email {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: 600;
}

.partner-cta .cta-email i {
    margin-right: 0.5rem;
    opacity: 0.9;
}

.partner-cta .cta-email a {
    color: var(--color-white);
    text-decoration: underline;
}

.partner-cta .cta-email a:hover {
    text-decoration: none;
}

/* Partner Page Responsive */
@media (max-width: 992px) {
    .partner-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partner-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .partner-hero-buttons {
        justify-content: center;
    }

    .partner-hero-image {
        order: -1;
        height: 400px;
    }

    .partner-intro-section .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partner-title,
    .partner-intro-section .section-title,
    .partnership-form-section .section-title.form-title {
        font-size: 2rem !important;
    }

    .partner-hero {
        padding: 4rem 0;
    }

    .partner-intro-section,
    .partnership-tiers,
    .partner-benefits,
    .partner-testimonials,
    .partnership-form-section,
    .partner-cta {
        padding: 4rem 0;
    }

    .partner-intro-section .intro-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tiers-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .partner-cta .cta-title {
        font-size: 2rem;
    }

    .partner-hero-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .partner-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .partner-hero-buttons .btn {
        width: 100%;
    }

    .tier-card {
        padding: 2rem 1.5rem;
    }

    .partnership-form-section .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .partner-hero .container {
        gap: 2rem;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS FIXES
   ======================================== */

/* Global Mobile Optimizations - Prevent horizontal scroll */
@media (max-width: 1200px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    * {
        box-sizing: border-box;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

    /* Reduce heading sizes for tablet */
    .hero-title,
    .hero-slider-content .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.2;
    }

    .section-title,
    .page-title {
        font-size: 2.2rem !important;
    }

    /* Fix hero donate form - prevent shifting right */
    .hero-slider-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-donate-form {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .donate-form-card {
        max-width: 100%;
    }

    /* Fix text alignment */
    .hero-text-content {
        text-align: center;
        padding: 0 1rem;
    }

    .quick-causes,
    .additional-causes {
        justify-content: center;
        padding: 0 1rem;
    }

    /* Fix service images */
    .service-visual {
        max-width: 100%;
        overflow: hidden;
    }

    .service-visual img {
        width: 100%;
        object-fit: cover;
    }

    /* Fix mission section */
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-visual {
        height: 400px;
        margin-bottom: 2rem;
    }

    /* Prevent mission visual cards from overlapping next section */
    .mission + section,
    .mission + .causes {
        margin-top: 3rem;
    }

    /* Fix story section - reduce white space */
    .story-section {
        padding: 3rem 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image {
        height: 300px;
        margin-top: 2rem;
    }

    .story-text {
        text-align: center;
    }

    /* Fix values section - center and larger title */
    .values-section {
        padding: 3rem 0;
    }

    .values-section .values-title {
        text-align: center;
        font-size: 2rem !important;
    }

    .values-section .values-tag {
        text-align: center;
        display: block;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Fix causes section */
    .causes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Medium Mobile - 768px and below */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Further reduce heading sizes */
    .hero-title,
    .hero-slider-content .hero-title {
        font-size: 2rem !important;
        line-height: 1.15;
    }

    .hero-subtitle,
    .hero-slider-content .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    .section-title,
    .page-title {
        font-size: 1.75rem !important;
    }

    .page-subtitle {
        font-size: 1rem !important;
    }

    /* Fix hero donate form positioning */
    .hero-slider {
        padding-top: 0;
        overflow-x: hidden;
    }

    .hero-slider-content {
        padding: 1rem 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-text-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-donate-form {
        width: 100%;
        max-width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
    }

    .donate-form-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
    }

    .donate-form-content {
        padding: 1.25rem;
    }

    /* Fix form tabs for mobile */
    .form-tabs {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-tab {
        padding: 0.75rem;
        font-size: 0.85rem;
        border-bottom: 1px solid var(--color-border);
    }

    /* Stack quick causes vertically */
    .quick-causes {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
    }

    .quick-cause-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    /* Stack additional causes */
    .additional-causes {
        flex-wrap: wrap;
        gap: 0.4rem;
        padding: 0;
    }

    .cause-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }

    /* Fix amount grid */
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .amount-btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    /* Fix custom amount input */
    .custom-amount {
        padding: 0.3rem 0.75rem;
    }

    .custom-amount-input {
        font-size: 1.2rem !important;
    }

    .currency-symbol {
        font-size: 1rem;
    }

    .currency-code {
        font-size: 0.75rem;
    }

    /* Fix service section */
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .service-detail.reverse {
        grid-template-columns: 1fr;
    }

    .service-content,
    .service-visual {
        width: 100%;
        max-width: 100%;
    }

    .service-visual {
        height: 300px;
    }

    .service-icon-box {
        width: 60px;
        height: 60px;
    }

    .service-icon {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.5rem !important;
    }

    .service-description {
        font-size: 0.95rem;
    }

    /* Fix feature items */
    .feature-item {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-icon i {
        font-size: 0.75rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }

    /* Fix impact stats */
    .service-impact {
        gap: 1.5rem;
    }

    .impact-number {
        font-size: 1.75rem !important;
    }

    .impact-label {
        font-size: 0.85rem;
    }

    /* Fix process steps */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    /* Fix causes grid */
    .causes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Fix mission values */
    .mission-values {
        flex-direction: column;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .value-text {
        font-size: 1rem;
    }

    /* Fix mission visual on mobile - prevent overlap */
    .mission-visual {
        height: 350px;
        margin-bottom: 3rem;
    }

    .visual-card {
        overflow: hidden;
    }

    /* Ensure proper spacing after mission section */
    .mission + section,
    .mission + .causes,
    .causes-section {
        margin-top: 4rem;
        padding-top: 2rem;
    }

    /* Fix story section on mobile - reduce white space */
    .story-section {
        padding: 2.5rem 0;
    }

    .story-image {
        height: 250px;
        margin-bottom: 1rem;
    }

    .story-text {
        text-align: center;
    }

    .story-title {
        font-size: 1.75rem !important;
        text-align: center;
    }

    /* Fix values section on mobile - center and larger title */
    .values-section {
        padding: 2.5rem 0;
    }

    .values-section .values-title {
        font-size: 2.2rem !important;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .values-section .values-tag {
        font-size: 0.9rem;
        text-align: center;
        display: block;
        margin-bottom: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon-large {
        font-size: 3rem;
    }

    .value-title {
        font-size: 1.25rem;
    }

    .value-description {
        font-size: 0.9rem;
    }

    /* Fix stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    /* Fix CTA section */
    .cta-title {
        font-size: 1.75rem !important;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    /* Fix page header */
    .page-header {
        padding: 3rem 0;
    }

    .page-tag {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 1.75rem !important;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* Fix contact section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.25rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    /* Fix footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }

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

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    /* Center footer titles on mobile */
    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li {
        font-size: 0.9rem;
    }

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

    /* Fix slider controls */
    .slider-control {
        width: 36px;
        height: 36px;
    }

    .slider-control.prev {
        left: 0.5rem;
    }

    .slider-control.next {
        right: 0.5rem;
    }

    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    /* Even smaller headings for small screens */
    .hero-title,
    .hero-slider-content .hero-title {
        font-size: 1.6rem !important;
    }

    .hero-subtitle,
    .hero-slider-content .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .section-title,
    .page-title {
        font-size: 1.5rem !important;
    }

    /* Fix story section on small mobile */
    .story-section {
        padding: 2rem 0;
    }

    .story-image {
        height: 200px;
    }

    .story-title {
        font-size: 1.5rem !important;
    }

    .story-text p {
        font-size: 0.9rem;
    }

    /* Fix values section on small mobile - larger centered title */
    .values-section {
        padding: 2rem 0;
    }

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

    .values-section .values-tag {
        font-size: 0.85rem;
    }

    .value-card {
        padding: 1.25rem;
    }

    .value-icon-large {
        font-size: 2.5rem;
    }

    .value-title {
        font-size: 1.1rem;
    }

    .value-description {
        font-size: 0.85rem;
    }

    /* Compact donate form */
    .donate-form-content {
        padding: 1rem;
    }

    .amount-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .amount-btn {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .btn-donate-now {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .recurring-info {
        font-size: 0.65rem;
    }

    /* Smaller service visuals */
    .service-visual {
        height: 220px;
    }

    .visual-text {
        font-size: 1.5rem;
    }

    /* Fix mission visual on small mobile */
    .mission-visual {
        height: 280px;
        margin-bottom: 2.5rem;
    }

    .visual-card.card-1 {
        width: 55% !important;
        height: 60% !important;
    }

    .visual-card.card-2 {
        width: 45% !important;
        height: 50% !important;
    }

    .visual-card.card-3 {
        width: 35% !important;
        height: 35% !important;
    }

    /* Compact feature items */
    .feature-item {
        grid-template-columns: auto 1fr;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }

    .feature-icon i {
        font-size: 0.65rem;
    }

    .feature-text h4 {
        font-size: 0.9rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }

    /* Compact stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Compact cards */
    .campaign-card,
    .cause-card,
    .action-card {
        padding: 1.25rem;
    }

    .campaign-title,
    .cause-title {
        font-size: 1.1rem !important;
    }

    .campaign-description,
    .cause-description {
        font-size: 0.85rem;
    }

    .campaign-price,
    .cause-price {
        font-size: 1rem !important;
    }

    /* Compact buttons */
    .btn,
    .btn-primary,
    .btn-donate,
    .btn-cause {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Fix timeline */
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .timeline-year {
        font-size: 1.25rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* Fix navbar */
    .navbar-inner {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

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

    /* Mobile nav drawer */
    .mobile-nav-drawer {
        width: 280px;
    }

    .mobile-nav-menu li a {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    /* Top bar */
    .top-bar {
        display: none;
    }

    /* Fix all images */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Prevent any overflow */
    * {
        max-width: 100%;
    }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .hero-title,
    .hero-slider-content .hero-title {
        font-size: 1.4rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
    }

    .section-title,
    .page-title {
        font-size: 1.3rem !important;
    }

    .service-visual {
        height: 180px;
    }

    .stat-number {
        font-size: 1.75rem !important;
    }

    .impact-number {
        font-size: 1.5rem !important;
    }
}

/* Fix for landscape orientation on mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-slider {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .hero-slider-content {
        min-height: auto;
    }

    .hero-title,
    .hero-slider-content .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-donate-form {
        margin-top: 1.5rem;
    }

    .donate-form-card {
        max-width: 400px;
    }
}

/* Small Mobile - 390px and below (Realme, iPhone, etc.) */
@media (max-width: 390px) {
    .container {
        padding: 0 1rem;
    }

    .hero-slider {
        padding-top: 0;
    }

    .hero-slider-content {
        padding: 0.75rem 0;
        gap: 1.5rem;
    }

    .hero-text-content {
        padding: 0 0.75rem;
    }

    /* Center align donation form on small screens */
    .hero-donate-form {
        width: 100%;
        max-width: 100%;
        margin: 1.5rem auto 0;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .donate-form-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .donate-form-content {
        padding: 1rem;
    }

    /* Fix form tabs for very small screens */
    .form-tabs {
        grid-template-columns: 1fr;
    }

    .form-tab {
        padding: 0.6rem;
        font-size: 0.75rem;
    }

    /* Adjust amount grid */
    .amount-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .amount-btn {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    /* Fix custom amount input */
    .custom-amount {
        padding: 0.25rem 0.5rem;
    }

    .custom-amount-input {
        font-size: 1rem !important;
    }

    .currency-symbol {
        font-size: 0.9rem;
    }

    .currency-code {
        font-size: 0.65rem;
    }

    /* Fix donate button */
    .btn-donate-now {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    /* Fix quick causes */
    .quick-causes {
        flex-direction: column;
        gap: 0.4rem;
    }

    .quick-cause-btn {
        width: 100%;
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
    }

    .additional-causes {
        gap: 0.3rem;
    }

    .cause-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }
}

/* Ensure proper text rendering on all devices */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
    .hero-slider {
        min-height: -webkit-fill-available;
    }

    body {
        min-height: 100vh;
    }
}