/*
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 {
    /* Colors */
    --color-primary: #2d5f5d;
    --color-primary-dark: #1a3938;
    --color-primary-light: #3d7f7d;
    --color-secondary: #d4af37;
    --color-accent: #e85d4f;
    --color-success: #48c774;
    --color-info: #3298dc;
    
    /* Neutrals */
    --color-dark: #1a1a1a;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-border: #e0e6ed;
    --color-bg-light: #f8f9fa;
    --color-white: #ffffff;
    
    /* Typography */
    --font-primary: 'Nunito Sans', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* 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;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.logo-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-display);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a:not(.btn-donate)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width var(--transition-base);
}

.nav-links a:not(.btn-donate):hover::after,
.nav-links a:not(.btn-donate).active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.btn-donate {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(232, 93, 79, 0.3);
    transition: all var(--transition-base);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 79, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

/* 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(
        135deg,
        rgba(29, 57, 56, 0.85) 0%,
        rgba(45, 95, 93, 0.75) 50%,
        rgba(29, 57, 56, 0.85) 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 450px;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 160px);
    padding: 3rem 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: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-slider-content .hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-slider-content .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Quick Causes Buttons */
.quick-causes {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.quick-cause-btn {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.1rem;
    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.82rem;
    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);
}

.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);
}

.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: 24px;
    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: 1.25rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    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: 1.5rem;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cause-badge {
    font-size: 1.5rem;
}

.cause-name {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
}

/* Form Content */
.donate-form-content {
    padding: 2rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    text-align: center;
}

/* Amount Grid */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 1rem;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    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.5rem;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 0.5rem 1.25rem;
    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.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-right: 0.5rem;
}

.custom-amount-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    outline: none;
    padding: 0.5rem;
}

.custom-amount-input::placeholder {
    color: var(--color-text-light);
    opacity: 0.5;
}

.currency-code {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-left: 0.5rem;
}

/* Donate Button */
.btn-donate-now {
    width: 100%;
    padding: 1.25rem;
    background: var(--color-secondary);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    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: 1rem;
}

.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.8rem;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.5;
}

/* 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: var(--color-secondary);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: capitalize;
}

.btn-campaign:hover {
    background: #c19d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 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 STATS
   ======================================== */
.impact-stats {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* ========================================
   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
   ======================================== */
.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;
}

.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;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -20px); }
}

/* ========================================
   CAUSES SECTION
   ======================================== */
.causes {
    background: var(--color-bg-light);
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.cause-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cause-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cause-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cause-content {
    padding: 2rem;
}

.cause-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.cause-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cause-progress {
    margin-bottom: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.progress-bar {
    height: 8px;
    background: var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    transition: width 1s ease;
}

.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);
}

/* ========================================
   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
   ======================================== */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a:hover {
    color: var(--color-secondary);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    position: relative;
    padding: 10rem 0 6rem;
    margin-top: 80px;
    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: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-secondary);
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: right;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -42px;
    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-content {
    padding: 1.5rem 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.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-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 2.5rem;
}

.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;
}

.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;
}

.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
   ======================================== */
.how-we-work {
    background: var(--color-bg-light);
    padding: 6rem 0;
}

.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-info-wrapper {
    position: sticky;
    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: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   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);
    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);
}

.btn-action:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   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: 50px;
    }
    
    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 2rem;
    }
    
    .timeline-year {
        font-size: 1.75rem;
    }
    
    .timeline-year::after {
        right: -32px;
    }
    
    .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;
    }
}

/* ========================================
   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.5rem;
    border-bottom: 2px solid var(--color-border);
    background: var(--color-white);
    flex-shrink: 0;
}
.cart-panel-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
}
.cart-panel-title svg { color: var(--color-primary); }
.cart-item-count-badge {
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
}
.cart-close-btn {
    width: 36px; height: 36px;
    border: none; border-radius: 50%;
    background: var(--color-bg-light);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--color-text);
    transition: all var(--transition-fast);
}
.cart-close-btn:hover { background: var(--color-border); }

/* 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; }

/* 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 — 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: var(--color-dark); }
.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 */
.cart-items-wrapper {
    flex: 1;
    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 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-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; }

.suggested-cause-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-border);
}
.suggested-cause-item:last-child { border-bottom: none; }
.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);
}
.btn-add-suggested:hover { background: var(--color-primary-dark); transform: scale(1.05); }

/* Cart Summary */
.cart-summary {
    border-top: 2px solid var(--color-border);
    padding: 1.5rem;
    background: var(--color-bg-light);
    flex-shrink: 0;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
}
.summary-row .fee-info { cursor: help; color: var(--color-text-light); }
.summary-total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--color-border);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}
.summary-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0.75rem 0 1.25rem;
}
.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.btn-checkout {
    padding: 0.9rem;
    background: var(--color-secondary);
    color: var(--color-dark);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
}
.btn-checkout:hover { background: #c19d2f; transform: translateY(-2px); }
.btn-view-cart {
    padding: 0.9rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
}
.btn-view-cart:hover { background: var(--color-primary); color: #fff; }

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    transition: all var(--transition-base);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-cart-btn:hover { transform: scale(1.1); background: var(--color-primary-dark); }
.floating-cart-icon { font-size: 1.5rem; }
.floating-cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    width: 20px; height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}
@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
