/* assets/css/style.css - Swatah Mitra Foundation Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800&family=Poppins:wght@600;700;800;900&display=swap');

:root {
    /* Brand Color Tokens */
    --primary-blue: #0B5FAE;
    --deep-blue: #084B8A;
    --secondary-blue: #1B74D4;
    --sky-blue: #EAF6FF;
    
    --primary-green: #34A853;
    --leaf-green: #5ECF68;
    --light-green: #E8F8EC;
    
    --accent-orange: #F4A300;
    
    --bg-page: #F7FBFD;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: #FFFFFF;
    
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    
    --border-color: rgba(11, 95, 174, 0.12);
    
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 30px -5px rgba(11, 95, 174, 0.08), 0 4px 12px -2px rgba(11, 95, 174, 0.04);
    --shadow-hover: 0 20px 40px -10px rgba(11, 95, 174, 0.18), 0 10px 20px -5px rgba(52, 168, 83, 0.1);
    
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables Override */
[data-theme="dark"] {
    --bg-page: #0B132B;
    --bg-card: rgba(15, 23, 42, 0.85);
    --bg-card-hover: #1E293B;
    --text-dark: #F8FAFC;
    --text-muted: #CBD5E1;
    --border-color: rgba(255, 255, 255, 0.1);
    --sky-blue: #1E293B;
    --light-green: #064E3B;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-page);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--leaf-green), var(--primary-blue));
    width: 0%;
    z-index: 2000;
    transition: width 0.1s ease-out;
}

.top-bar {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%);
    color: #EAF6FF;
    font-size: 0.875rem;
    padding: 8px 0;
}

.top-bar a {
    color: #EAF6FF;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--leaf-green);
}

.navbar-main {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: var(--transition);
}

.navbar-main.scrolled {
    padding: 6px 0;
    box-shadow: var(--shadow-soft);
}

.navbar-brand-img {
    height: 58px;
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

.nav-link-custom {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--text-dark);
    padding: 6px 10px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary-blue);
    background-color: var(--sky-blue);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    transform: rotate(20deg) scale(1.1);
}

/* Buttons System */
.btn-primary-custom {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: #FFFFFF !important;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(11, 95, 174, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 95, 174, 0.45);
}

.btn-secondary-custom {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--leaf-green) 100%);
    color: #FFFFFF !important;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary-custom:hover {
    background: #2E9B4D;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.45);
}

/* ==========================================================================
   Hero Section with Parallax & Animated Leaves
   ========================================================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #084B8A 0%, #0B5FAE 50%, #1B74D4 100%);
    color: #FFFFFF;
    padding: 120px 0 150px 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: blobFloat 10s infinite alternate ease-in-out;
}

.hero-blob-1 { top: -10%; right: -10%; }
.hero-blob-2 { bottom: -20%; left: -10%; animation-delay: 4s; }

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.15); }
}

/* Floating Leaf Element Keyframes */
.floating-leaf {
    position: absolute;
    width: 35px;
    height: 35px;
    opacity: 0.6;
    pointer-events: none;
    animation: leafFloat 8s infinite linear;
}

@keyframes leafFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.hero-title span {
    color: #5ECF68;
    background: linear-gradient(90deg, #5ECF68 0%, #34A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

/* ==========================================================================
   Wave Dividers & Section Styling
   ========================================================================== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Feature & Cause Cards */
.cause-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.cause-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.cause-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cause-card:hover .cause-img-wrap img {
    transform: scale(1.08);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--leaf-green) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.35);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(52, 168, 83, 0.5);
}

/* Media Gallery Styling */
.gallery-video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(52, 168, 83, 0.9);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 25px rgba(52, 168, 83, 0.6);
    transition: var(--transition);
}

.gallery-video-wrap:hover .gallery-video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

/* Interactive Animated Donate Button */
.btn-donate-pulse {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #B91C1C 100%);
    color: #FFFFFF !important;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.45);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    animation: btnGlowPulse 2.5s infinite ease-in-out;
}

.btn-donate-pulse:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.65);
}

.heart-beat-anim {
    animation: heartBeat 1.2s infinite ease-in-out;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.35); }
}

@keyframes btnGlowPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.45); }
    50% { box-shadow: 0 4px 25px rgba(239, 68, 68, 0.85); }
}

/* Compact Footer Styling */
.footer-main {
    background: #082440;
    color: #94A3B8;
    padding: 40px 0 15px 0;
    font-size: 0.9rem;
}

.footer-main h5 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-main h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #34A853;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #34A853;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 25px;
    font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    color: #FFFFFF;
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

/* Premium Social Media Icons System */
.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: #FFFFFF !important;
}

.social-icon-btn.fb:hover { color: #1877F2 !important; }
.social-icon-btn.insta:hover { color: #E4405F !important; }
.social-icon-btn.tw:hover { color: #1DA1F2 !important; }
.social-icon-btn.in:hover { color: #0A66C2 !important; }
.social-icon-btn.wa:hover { color: #25D366 !important; }
.social-icon-btn.yt:hover { color: #FF0000 !important; }

.topbar-social-link {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.topbar-social-link:hover {
    color: #34A853 !important;
    background: #FFFFFF !important;
    transform: scale(1.15);
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-section { padding: 80px 0 100px 0; }
}

/* ==========================================================================
   Vision & Objects Interactive Cards & Modals System
   ========================================================================== */
.vision-banner-card {
    background: linear-gradient(135deg, rgba(8, 75, 138, 0.95) 0%, rgba(11, 95, 174, 0.95) 100%);
    border-radius: 24px;
    color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(8, 75, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.vision-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.25) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vision-pillar-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.vision-pillar-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
    background: var(--bg-card-hover);
}

.vision-icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-green) 100%);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(11, 95, 174, 0.12);
    transition: var(--transition);
}

.vision-pillar-card:hover .vision-icon-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--leaf-green) 100%);
    color: #FFFFFF;
    transform: rotate(10deg) scale(1.1);
}

.object-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.object-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    opacity: 0.7;
    transition: var(--transition);
}

.object-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(11, 95, 174, 0.15);
    background: var(--bg-card-hover);
    border-color: rgba(52, 168, 83, 0.3);
}

.object-card:hover::after {
    height: 6px;
    opacity: 1;
}

.object-number-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(11, 95, 174, 0.25);
}

.object-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--sky-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: var(--transition);
}

.object-card:hover .object-icon-wrap {
    background: var(--primary-blue);
    color: #FFFFFF;
    transform: scale(1.1) rotate(-8deg);
}

.custom-pills .nav-link {
    color: var(--text-dark);
    border-radius: 10px;
    transition: var(--transition);
}

.custom-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(11, 95, 174, 0.3);
}

.obj-modal-header {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%);
    color: #FFFFFF;
}

.obj-modal-bullets {
    line-height: 1.8;
}

.obj-modal-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.obj-modal-bullets li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* ==========================================================================
   Global Header Banners & White Section Contrast Fix
   ========================================================================== */
.page-header-banner {
    position: relative;
    background: linear-gradient(135deg, #084B8A 0%, #0B5FAE 50%, #1B74D4 100%) !important;
    color: #FFFFFF !important;
    padding: 65px 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(8, 75, 138, 0.2);
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(244, 163, 0, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header-banner h1,
.page-header-banner h2,
.page-header-banner .display-5,
.page-header-banner .display-6 {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.page-header-banner p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.bg-gradient-light {
    background: linear-gradient(180deg, rgba(234, 246, 255, 0.6) 0%, rgba(247, 251, 253, 1) 100%);
}

[data-theme="dark"] .bg-gradient-light {
    background: linear-gradient(180deg, #0f172a 0%, #0b132b 100%);
}

/* Fix Bootstrap 5's bg-gradient override bug */
section.bg-gradient[style*="background"],
div.bg-gradient[style*="background"] {
    background-image: none !important;
}

/* ==========================================================================
   Interactive About Us Section Styles
   ========================================================================== */
.about-img-container {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(11, 95, 174, 0.15);
    transition: var(--transition);
}

.about-img-container:hover .about-img-main {
    transform: scale(1.02);
}

.floating-stat-badge {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    animation: floatBadge 4s infinite ease-in-out alternate;
}

.floating-stat-badge.badge-top {
    top: 20px;
    left: -20px;
}

.floating-stat-badge.badge-bottom {
    bottom: 20px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.about-tab-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
}

.about-tab-btn.active,
.about-tab-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: #FFFFFF !important;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(11, 95, 174, 0.3);
}

.feature-pill-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 18px;
    transition: var(--transition);
}

.feature-pill-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(52, 168, 83, 0.15);
}

/* ==========================================================================
   Interactive Support & Impact Calculator Styles
   ========================================================================== */
.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--leaf-green));
    opacity: 0;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.support-card:hover::before {
    opacity: 1;
}

.support-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-green) 100%);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px auto;
    transition: var(--transition);
}

.support-card:hover .support-icon-circle {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--leaf-green) 100%);
    color: #FFFFFF;
    transform: scale(1.1) rotate(10deg);
}

.impact-calc-box {
    background: linear-gradient(135deg, #084B8A 0%, #0B5FAE 100%);
    border-radius: 24px;
    color: #FFFFFF;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(8, 75, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.calc-btn-option {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 10px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.calc-btn-option.active,
.calc-btn-option:hover {
    background: #34A853;
    border-color: #34A853;
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(52, 168, 83, 0.5);
}

/* ==========================================================================
   FAQ Accordion & Trust Recognition Showcase
   ========================================================================== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--bg-card);
    transition: var(--transition);
}

.faq-accordion .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    background: var(--bg-card);
    padding: 18px 24px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background: var(--sky-blue);
}

.trust-badge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.trust-badge-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-soft);
}

.cta-banner-full {
    background: linear-gradient(135deg, #084B8A 0%, #34A853 100%);
    border-radius: 24px;
    color: #FFFFFF;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(52, 168, 83, 0.3);
}




