/* ===========================
   AAAGML Website - Modernized Design System
   Based on NGO Charity Fundraising PRO WordPress Theme
   =========================== */

/* CSS Variables - Extracted from WordPress Theme */
:root {
    /* Primary Colors from WordPress Theme - YOUR EXACT LEGACY COLORS */
    --primary-blue: #2fbeef;
    --accent-red: #d42a2a;
    --charity-gold: #E0C341;
    --ocean-blue: #039be5;
    --light-gray: #ebebeb;
    
    /* Extended Color Palette */
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-muted: rgba(255, 255, 255, 0.8);
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    --bg-overlay-light: rgba(0, 0, 0, 0.3);
    --border-color: #e9ecef;
    --border-light: #f1f1f1;
    
    /* Shadows & Effects */
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-inset: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-small: 2px;
    --radius-medium: 8px;
    --radius-large: 50px;
    --radius-circle: 50%;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-medium: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Typography */
    --font-primary: 'Toledo Bold', 'Arial Black', 'Helvetica Bold', sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --section-padding: 100px;
}

/* ===========================
   FONT DISPLAY OPTIMIZATION
   =========================== */

/* ===========================
   CUSTOM FONT DECLARATIONS
   =========================== */

@font-face {
    font-family: 'Toledo Bold';
    src: url('../assets/fonts/Toledo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* DEBUG: Font verification - remove in production */
/* 
h1::after, h2::after, h3::after, h4::after, h5::after, h6::after {
    content: " [Toledo Bold]";
    font-size: 0.5em;
    color: red;
    font-weight: normal;
}

p::after, span::after {
    content: " [Poppins]";
    font-size: 0.5em;
    color: blue;
    font-weight: normal;
}
*/

/* ===========================
   RESET & BASE STYLES
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary) !important;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

/* ===========================
   SMOOTH IMAGE LOADING
   =========================== */

img {
    opacity: 0.4;
    animation: fadeIn 0.3s ease-in-out forwards;
}

img[loading="lazy"] {
    opacity: 0.4;
    transition: opacity 0.4s ease-in-out;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===========================
   TYPOGRAPHY SYSTEM
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary) !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    font-family: var(--font-secondary) !important;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
    color: var(--text-light);
}

.text-large {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Ensure all text elements use correct fonts */
span, div, a, li, label, input, textarea, button {
    font-family: inherit;
}

/* Strong emphasis for headings font */
.section-title, .hero__title, .about__title, .impact__title {
    font-family: var(--font-primary) !important;
}

/* Strong emphasis for body text font */
.section-text, .hero__subtitle, .about__text, .impact__description {
    font-family: var(--font-secondary) !important;
}

/* ===========================
   LAYOUT COMPONENTS
   =========================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.section {
    padding: var(--section-padding) 0;
}

.section--compact {
    padding: calc(var(--section-padding) * 0.6) 0;
}

/* ===========================
   BUTTON SYSTEM
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-small);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  text-align: center;
    cursor: pointer;
    transition: var(--transition-medium);
    line-height: 1;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--ocean-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.btn--yellow {
    background: var(--charity-gold);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-large);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn--yellow:hover {
    background: #c9a93a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn--yellow .arrow {
    transition: transform 0.3s ease;
    font-size: 1.2em;
}

.btn--yellow:hover .arrow {
    transform: translateX(4px);
}

/* ===========================
   ANIMATED DONATE BUTTON - CIRCLE TO OVAL TRANSFORMATION
   =========================== */

.donate-btn-animated {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--charity-gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
  letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    overflow: visible;
    z-index: 10;
    
    /* Default state - Pill shape with text visible */
    width: 180px;
    height: 60px;
    border-radius: 30px;
    
    /* Smooth transition */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadow and effects */
    box-shadow: 0 4px 15px rgba(224, 195, 65, 0.3);
}

.donate-btn-animated:hover {
    /* Expanded state - Pill shape with rounded left side */
    width: 180px;
    height: 60px;
    border-radius: 30px;
    background: var(--charity-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 195, 65, 0.4);
}

.donate-btn-text {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 45px;
    position: absolute;
    left: 0;
}

.donate-btn-animated:hover .donate-btn-text {
    opacity: 1;
    transform: translateX(0);
}

.donate-btn-arrow {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white);
    width: 60px;
    height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donate-btn-animated:hover .donate-btn-arrow {
    left: 30px;
    transform: translate(-50%, -50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .donate-btn-animated {
        width: 160px;
        height: 55px;
        border-radius: 27.5px;
    }
    
    .donate-btn-animated:hover {
        width: 160px;
        height: 55px;
        border-radius: 27.5px;
    }
    
    .donate-btn-text {
        font-size: 0.8rem;
        margin-left: 40px;
    }
    
    .donate-btn-arrow {
        font-size: 1.2rem;
        width: 55px;
        height: 55px;
        left: 27.5px;
    }
    
    .donate-btn-animated:hover .donate-btn-arrow {
        left: 27.5px;
    }
}

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

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

/* Enhanced outline buttons for involvement cards */
.involvement__card .btn--outline {
    background: transparent;
    color: var(--charity-gold);
    border: 2px solid var(--charity-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.involvement__card .btn--outline:hover {
    background: var(--charity-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 195, 65, 0.3);
}

.btn--large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; /* High z-index to ensure header stays above all content sections */
    background: transparent !important;
    transition: var(--transition-medium);
    padding: 15px 0;
    min-height: 90px; /* Ensure consistent header height for spacing calculations */
}

.header .container {
    background: transparent !important;
}

/* Ensure header starts completely transparent */
.header:not(.scrolled) {
    background: rgba(0, 0, 0, 0) !important;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    background: transparent;
}

.navbar__brand {
    display: flex;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.header.scrolled .navbar__brand {
    color: var(--text-dark) !important;
}

.navbar__logo-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-right: var(--space-xs);
    transition: var(--transition-medium);
}

.navbar__logo-container:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.navbar__logo {
    width: 115%;
    height: 115%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    display: block;
    margin: -7.5%;
    transform: translateX(1%) translateY(-2%);
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
    margin: 0;
}

.navbar__link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.header.scrolled .navbar__link {
    color: var(--text-dark) !important;
}

.navbar__link:hover {
    color: var(--charity-gold);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--charity-gold);
    transition: width 0.3s ease;
}

.navbar__link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-large);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: var(--space-sm) 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-dark) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: var(--radius-small);
    margin: 0 var(--space-xs);
}

.dropdown-link:hover {
    background: var(--charity-gold);
    color: var(--white) !important;
    transform: translateX(5px);
}

.header.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
}

.header.scrolled .dropdown-link {
    color: var(--text-dark) !important;
}

/* Mobile Navigation - Hamburger on the right */
.navbar__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 10000;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff !important;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.header.scrolled .navbar__toggle span {
    background: var(--text-dark) !important;
}

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

.hero {
    min-height: 100vh;
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('../assets/images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center 15%;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    color: #ffffff !important;
    padding-bottom: 80px;
}

.hero__content {
    max-width: 650px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    color: #ffffff !important;
    margin-bottom: 2rem; /* Push content up from the very bottom */
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-primary);
    color: #ffffff !important;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero__donate-btn {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 3;
}

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

.about {
    background: linear-gradient(var(--bg-overlay-light), var(--bg-overlay-light)), 
                url('../assets/images/about/library-students.jpg');
    background-size: cover;
    background-position: 25% center;
    background-attachment: fixed;
    padding: var(--section-padding) 0;
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

.about__container {
    padding-top: 120px; /* Offset for wave overlap */
}

.about__content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-xxl);
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-xl);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.about__image {
    width: 280px;
    height: 350px;
    border-radius: var(--radius-circle);
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-medium);
}

.about__text h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
}

.about__text p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.about__text .btn {
    margin-top: var(--space-sm);
}

/* ===========================
   GOALS SECTION
   =========================== */

.goals {
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('../assets/images/goals/classroom-students.jpg');
    background-size: cover;
    background-position: 65% center;
    background-attachment: fixed;
    padding: var(--section-padding) 0;
    color: var(--white);
}

.goals__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.goals__title {
    color: var(--charity-gold);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
    font-family: var(--font-primary);
}

.goals__text {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.goals__text p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta {
    background: var(--white);
    padding: calc(var(--section-padding) * 0.8) 0;
    text-align: center;
}

.cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
}

.cta__subtitle {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===========================
   TESTIMONIAL SECTION - CLEAN SEPARATED DESIGN
   =========================== */

.testimonials {
    background: var(--white);
    padding: calc(var(--section-padding) * 0.8) 0;
    position: relative;
    clear: both;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--charity-gold);
    border-radius: 2px;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.testimonial__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    margin-top: var(--space-xl);
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-medium);
    overflow: hidden;
    background: var(--white);
}

.testimonial__image {
    position: relative;
    min-height: 350px;
}

.testimonial__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.testimonial__text {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.testimonial__quote {
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.4;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    quotes: """ """ "'" "'";
}

.testimonial__quote::before {
    content: open-quote;
    font-size: 1.2em;
    color: var(--charity-gold);
    margin-right: 0.1em;
}

.testimonial__quote::after {
    content: close-quote;
    font-size: 1.2em;
    color: var(--charity-gold);
    margin-left: 0.1em;
}

.testimonial__author {
  font-weight: 400;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: auto;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.01em;
    font-style: normal;
}

/* ===========================
   IMPACT SECTION - ISOLATED FULL-WIDTH DESIGN
   =========================== */

.impact {
    background: var(--bg-light);
    padding: 0;
    position: relative;
    clear: both;
    isolation: isolate;
}

.impact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 20%, var(--border-color) 80%, transparent 100%);
}

.impact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: center;
}

.impact__image {
    background: var(--light-gray);
    height: 600px;
    overflow: hidden;
    position: relative;
}

.impact__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.impact__text {
    padding: var(--space-xxl);
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
}

.impact__highlight {
    max-width: 500px;
}

.impact__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    font-family: var(--font-primary);
    font-weight: 700;
}

.impact__number {
    color: var(--ocean-blue);
    font-weight: 800;
}

.impact__description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-family: var(--font-secondary);
}

/* ===========================
   LOCATION SECTION
   =========================== */

.location {
    background: var(--bg-light);
    padding: calc(var(--section-padding) * 0.8) 0;
}

.location__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.location__text h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
}

.location__text p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.location__map {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-light);
    min-height: 300px;
}

.location__info {
    text-align: center;
    margin-bottom: var(--space-md);
}

.location__info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.map-container {
    width: 100%;
    min-height: 350px;
    height: 350px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    background: var(--bg-light);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-medium);
}

.map-info {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-light);
    border-radius: var(--radius-small);
    text-align: center;
}

.map-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.map-info strong {
    color: var(--primary-color);
}

/* Custom AAAGML Map Pin Overlay */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-medium);
}

.custom-map-pin {
    position: absolute;
    /* Real-time positioning synchronized with Google Maps red pin */
    top: 50%;
    left: 50%;
    /* FIXED: Changed transform to center the pin properly */
    transform: translate(-50%, -50%);
    z-index: 1000; /* Increased z-index to ensure visibility */
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.2s ease;
    /* Remove position transitions for real-time movement */
    /* Debug visibility */
    min-width: 50px;
    min-height: 50px;
}

.pin-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(224, 195, 65, 0.4);
    border: 3px solid var(--white);
    position: relative;
}

.pin-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--primary-color);
    transform: translateX(-50%) rotate(45deg);
}

.pin-logo {
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
    border-radius: 50%;
    object-fit: cover;
}

.pin-label {
    margin-top: 8px;
    background: var(--white);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: var(--radius-small);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

/* ===========================
   GET INVOLVED SECTION
   =========================== */

.get-involved {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../assets/images/get-involved/DSC04715.jpg");
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    padding: var(--section-padding) 0;
    position: relative;
}

.get-involved__content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.get-involved .text-large {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: var(--space-lg);
}

.get-involved__title {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-family: var(--font-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.get-involved__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    max-width: 1000px;
    margin: var(--space-lg) auto 0 auto;
    justify-items: center;
    align-items: center;
}

.involvement__card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xxl) var(--space-lg);
    border-radius: var(--radius-medium);
    text-align: center;
    transition: var(--transition-medium);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1.1 / 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 320px;
}

.involvement__card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.involvement__card h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
}

.involvement__card p {
    color: var(--white);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

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

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer__section h3 {
    color: var(--charity-gold);
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
  font-size: 1.25rem;
}

.footer__section p,
.footer__section a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.7;
    transition: var(--transition-fast);
}

.footer__section a:hover {
    color: var(--charity-gold);
}

.footer__section ul {
    list-style: none;
    padding: 0;
}

.footer__section li {
    margin-bottom: var(--space-xs);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Footer Social Links */
.footer__social {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) 0;
    color: var(--text-muted) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: var(--radius-small);
}

.footer__social-link:hover {
    color: var(--charity-gold) !important;
    transform: translateX(5px);
}

.footer__donate {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__donate a {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(224, 195, 65, 0.1);
    border: 1px solid var(--charity-gold);
    color: var(--charity-gold) !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-small);
    transition: all 0.3s ease;
}

.footer__donate a:hover {
    background: var(--charity-gold);
    color: var(--text-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 195, 65, 0.3);
}

/* ===========================
   ANIMATIONS
   =========================== */

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }

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

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .location__content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
  }
  
    .navbar__toggle {
        display: flex;
  }
  
  .hero {
        min-height: 65vh;
        text-align: center;
        padding-bottom: 80px;
    }
    
    .hero__donate-btn {
        position: static;
        margin-top: var(--space-lg);
    }
    
    .shape-divider {
        height: 80px;
    }
    
    .shape-divider-image {
        height: 80px;
    }
    
    .shape-divider svg {
        height: 80px;
    }
    
    .about {
        margin-top: -80px;
    }
    
    .about__container {
        padding-top: 80px;
    }
    
    .about__content {
        padding: var(--space-lg);
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
  }
}

@media (max-width: 480px) {
    .hero__donate-btn {
        position: static;
        margin-top: var(--space-md);
        align-self: center;
    }
    
    .btn--yellow {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ===========================
   DONATION PAGE STYLES
   =========================== */

.donate-hero {
    min-height: 60vh;
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('../assets/images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff !important;
    padding-bottom: 120px;
}

.donate-hero__content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    color: #ffffff !important;
    text-align: center;
    margin: 0 auto;
}

.donate-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-primary);
    color: #ffffff !important;
}

.donate-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.donation-options {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 249, 250, 0.1) 100%),
        url('../assets/images/donation-page/rendering/front-face-render.png'),
        url('../assets/images/donation-page/rendering/inside-render/inside-render.png');
    background-size: cover, 45% auto, 60% auto;
    background-position: center center, 25% center, 75% center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-attachment: fixed, fixed, fixed;
    padding: var(--section-padding) 0;
    margin-top: -120px;
    position: relative;
    min-height: 80vh;
}

.donation-options .container {
    padding-top: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
    background: rgba(255, 255, 255, 0.98);
    padding: var(--space-xl);
    border-radius: var(--radius-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xxl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.donation-amounts h3,
.donation-impact h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.amount-btn {
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: var(--space-md);
    border-radius: var(--radius-medium);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.custom-amount {
    margin-top: var(--space-lg);
}

.custom-amount label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.amount-input-group {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-medium);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.amount-input-group:focus-within {
    border-color: var(--primary);
}

.currency-symbol {
    background: var(--gray-light);
    padding: var(--space-md);
    font-weight: 600;
    color: var(--text-primary);
}

.amount-input-group input {
    border: none;
    padding: var(--space-md);
    font-size: 1.1rem;
    flex: 1;
    outline: none;
}

.donation-impact {
    background: var(--gray-lightest);
    padding: var(--space-xl);
    border-radius: var(--radius-medium);
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.impact-amount {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-small);
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.impact-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.donation-submit {
    text-align: center;
    margin-top: var(--space-xxl);
}

.btn--donate {
    font-size: 1.3rem;
    padding: var(--space-lg) var(--space-xxl);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.donation-note {
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

/* ===========================
   FUNDRAISING GOAL TRACKER
   =========================== */

.fundraising-goal {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%), 
                url('../assets/images/donation-page/DSC04825.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: var(--space-lg);
    border-radius: var(--radius-medium);
    margin: var(--space-lg) 0;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.goal-header h3 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
    color: var(--white);
}

.goal-header p {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    height: 60px;
    border-radius: 30px;
    margin-bottom: var(--space-xl);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 30px;
    width: 0%;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: var(--white);
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-medium);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--white);
    font-family: var(--font-primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--white);
}

.goal-message {
    background: rgba(255, 255, 255, 0.08);
    padding: var(--space-lg);
    border-radius: var(--radius-medium);
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: var(--space-md) var(--space-md) 0 var(--space-md);
    color: var(--white);
}

.goal-message p {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: var(--space-sm);
    color: var(--white);
}

.goal-message p:last-child {
    margin-bottom: 0;
    opacity: 0.9;
}

.section--alt {
    background: var(--gray-lightest);
}

.why-donate__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.why-donate__item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.why-donate__item:hover {
    transform: translateY(-5px);
}

.why-donate__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.why-donate__item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.why-donate__item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.support-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.btn--active {
    background: var(--primary) !important;
    color: var(--white) !important;
}

/* ===========================
   BLUEPRINTS SECTION STYLES
   =========================== */

.blueprints-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.blueprints__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
    position: relative;
}



.blueprints__text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.blueprints__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.blueprints__description:last-child {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.video-container {
    position: relative;
    background: var(--gray-lightest);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.library-video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-medium);
    display: block;
}

.video-caption {
    padding: var(--space-md);
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--white);
    margin: 0;
    font-size: 0.9rem;
}

/* ===========================
   PARTNERSHIP FORM STYLES
   =========================== */

.partnership-header {
    position: relative;
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 249, 250, 0.1) 100%), url('../assets/images/partner-page/classroom-background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.partnership-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.partnership-header .container {
    position: relative;
    z-index: 2;
}

.partnership-form {
    padding: var(--space-xxl) 0;
    background: var(--gray-lightest);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.form-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partnership-form-element {
    background: var(--white);
    padding: var(--space-xxl);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-medium);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--charity-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

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

.form-actions {
    text-align: center;
    margin-top: var(--space-xxl);
}

.form-note {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.form-success {
    background: var(--white);
    padding: var(--space-xxl);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.success-content h3 {
    color: var(--success-color, #10b981);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    font-family: var(--font-primary);
}

.success-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.btn-loading {
    display: none;
}

/* Checkbox styling for volunteer form */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: var(--space-sm);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.checkbox-item:hover {
    border-color: var(--charity-gold);
    background: rgba(212, 175, 55, 0.05);
}

.checkbox-item input[type="checkbox"] {
    margin-right: var(--space-sm);
    width: 18px;
    height: 18px;
    accent-color: var(--charity-gold);
}

.checkbox-item input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: var(--charity-gold);
}

.volunteer-header {
    position: relative;
    padding: var(--space-xxl) 0;
}

.volunteer-form {
    padding: var(--space-xxl) 0;
    background: var(--gray-lightest);
}

.volunteer-form-element {
    background: var(--white);
    padding: var(--space-xxl);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

/* ===========================
   FEATURES SECTION STYLES
   =========================== */

.features-section {
    background: var(--gray-lightest);
    padding: var(--space-xl) 0 var(--section-padding);
}

.features__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.features__header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.features__header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature__item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.feature__item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.feature__item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   TEAM PAGE STYLES
   =========================== */

.team-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 249, 250, 0.1) 100%), url('../assets/images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-members {
    padding: var(--space-xxl) 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.team-member__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0; /* Fallback background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
    display: block; /* Ensure image is displayed */
    min-height: 50px; /* Minimum height to ensure visibility */
}

.team-member:hover .team-member__photo {
    transform: scale(1.05);
}

.team-member__content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-member__name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.team-member__bio {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

/* Responsive adjustments for team grid */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .team-member__image {
        height: 250px;
    }
    
    .team-member__content {
        padding: var(--space-md);
    }
    
    .team-member__name {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .team-member__image {
        height: 200px;
    }
    
    .team-member__content {
        padding: var(--space-sm);
    }
}

/* Special styling for Yoni's photo to center the face better */
.yoni-photo {
    object-position: center 30% !important;
}

/* Special styling for Rev. Fr. John's photo to pan down */
.john-photo {
    object-position: center 25% !important;
}

/* Special styling for Mary's photo to pan down */
.mary-photo {
    object-position: center 35% !important;
}

/* Special styling for Benedict's photo to pan down */
.benedict-photo {
    object-position: center 45% !important;
}

/* ===========================
   EDUCATIONAL MATERIALS PAGE STYLES
   =========================== */

/* Technology Needs Section */
.technology-needs {
    background: var(--white);
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.tech-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-medium);
    padding: var(--space-md);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-light);
}

.tech-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--charity-gold);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.tech-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.tech-card p {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    font-size: 0.9rem;
}

.tech-specs {
    list-style: none;
    padding: 0;
}

.tech-specs li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
    position: relative;
    padding-left: var(--space-sm);
    font-size: 0.85rem;
    line-height: 1.3;
}

.tech-specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--charity-gold);
    font-weight: bold;
    font-size: 0.8rem;
}

/* Book Donations Section */
.book-donations {
    background: var(--bg-light);
}

.book-donations__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.book-donations__text h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.book-donations__text .text-large {
    margin-bottom: var(--space-lg);
}

.book-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.book-category {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-medium);
    border-left: 4px solid var(--charity-gold);
    transition: var(--transition-medium);
}

.book-category:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.book-category h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.book-category p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.book-donations__image {
    text-align: center;
}

.book-donations__photo {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
}

/* Future Library Vision Section */
.future-library__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.future-library__text h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.future-library__text .text-large {
    margin-bottom: var(--space-lg);
}

.vision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.vision-feature {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-medium);
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid var(--border-light);
}

.vision-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--charity-gold);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.vision-feature h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.vision-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.future-library__renderings {
    display: grid;
    gap: var(--space-lg);
}

.rendering-container {
    text-align: center;
}

.library-rendering {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

.library-rendering:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.rendering-caption {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Donate Materials Section */
.donate-materials {
    background: var(--bg-light);
}

.donate-materials__content h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.donate-materials__content .text-large {
    margin-bottom: var(--space-xl);
}

.donation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.donation-step {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-medium);
    text-align: center;
    position: relative;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.donation-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--charity-gold);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--charity-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto var(--space-md);
}

.donation-step h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.donation-step p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.prep-tips ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.prep-tips li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
    position: relative;
    padding-left: var(--space-md);
}

.prep-tips li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--charity-gold);
    font-weight: bold;
}

.shipping-info {
    background: var(--bg-light);
    padding: var(--space-md);
    border-radius: var(--radius-medium);
    margin-top: var(--space-sm);
}

.shipping-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.shipping-info strong {
    color: var(--text-dark);
}

/* CTA Buttons */
.cta__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.cta__buttons .btn {
    min-width: 200px;
}

/* Responsive Design for Educational Materials Page */
@media (max-width: 1024px) {
    .book-donations__content,
    .future-library__content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .donation-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .technology-grid {
        grid-template-columns: 1fr;
    }
    
    .book-categories,
    .vision-features {
        grid-template-columns: 1fr;
    }
    
    .donation-steps {
        grid-template-columns: 1fr;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta__buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}





/* ===========================
   TOTE BAG POPUP STYLES
   =========================== */

.popup-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    height: auto;
    background: transparent;
    display: none;
    z-index: 10000;
    animation: slideInCorner 0.3s ease-out;
}

.popup-overlay.active {
    display: block !important;
}

.popup-container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-medium);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    width: 320px;
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    animation: slideIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.popup-header {
    background: linear-gradient(135deg, rgba(224, 195, 65, 0.9) 0%, rgba(230, 184, 0, 0.9) 100%);
    color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-medium) var(--radius-medium) 0 0;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ff4444;
    border: 2px solid #ffffff;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-medium);
    z-index: 10003;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: auto !important;
    user-select: none;
}

.popup-close:hover,
.popup-close:focus {
    background: #ff6666;
    transform: scale(1.1);
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.popup-minimize {
    position: absolute;
    top: 10px;
    right: 50px;
    width: 30px;
    height: 30px;
    background: var(--charity-gold);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    z-index: 10002;
    pointer-events: auto !important;
    user-select: none;
}

.popup-minimize:hover {
    background: #d4af37;
    transform: scale(1.1);
}

.popup-content {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.popup-content .text-large {
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 500;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.popup-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
}

.popup-feature-item .feature-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--charity-gold);
}

.popup-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.popup-note {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    text-align: center;
    font-weight: 500;
}





/* Minimized popup styles */
.popup-overlay.minimized .popup-container {
    max-width: 60px;
    max-height: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: minimizeIn 0.3s ease-out;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-overlay.minimized .popup-container:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.popup-overlay.minimized .popup-header {
    border-radius: 50%;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.popup-overlay.minimized .popup-header h2 {
    font-size: 2rem;
    margin: 0;
    text-align: center;
}

.popup-overlay.minimized .popup-title {
    font-size: 2rem;
    margin: 0;
    text-align: center;
}

.popup-overlay.minimized .popup-header::after {
    display: none;
}

.popup-overlay.minimized .popup-content,
.popup-overlay.minimized .popup-features,
.popup-overlay.minimized .popup-cta {
    display: none;
}

.popup-overlay.minimized .popup-minimize {
    display: none !important;
}

/* Show minimize button only when popup is expanded */
.popup-overlay:not(.minimized) .popup-minimize {
    display: flex !important;
}

.popup-overlay.minimized .popup-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
    background: #ff4444;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    pointer-events: auto !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInCorner {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes minimizeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .popup-overlay {
        bottom: 10px;
        right: 10px;
    }
    
    .popup-container {
        width: 260px;
        max-width: 260px;
        max-height: 320px;
    }
    
    .popup-header {
        padding: var(--space-md);
    }
    
    .popup-header h2 {
        font-size: 1.1rem;
    }
    
    .popup-content {
        padding: var(--space-md);
    }
    
    .popup-overlay.minimized .popup-container {
        max-width: 50px;
        max-height: 50px;
        width: 50px;
        height: 50px;
    }
    
    .popup-overlay.minimized .popup-close {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
        top: -7px;
        right: -7px;
    }
}

@media (max-width: 480px) {
    .popup-overlay {
        bottom: 5px;
        right: 5px;
    }
    
    .popup-container {
        width: 240px;
        max-width: 240px;
        max-height: 280px;
    }
    
    .popup-header {
        padding: var(--space-sm);
    }
    
    .popup-header h2 {
        font-size: 1rem;
    }
    
    .popup-content {
        padding: var(--space-sm);
    }
    
    .popup-feature-item {
        font-size: 0.8rem;
    }
    
    .popup-overlay.minimized .popup-container {
        max-width: 45px;
        max-height: 45px;
        width: 45px;
        height: 45px;
    }
    
    .popup-overlay.minimized .popup-close {
        width: 12px;
        height: 12px;
        font-size: 0.5rem;
        top: -6px;
        right: -6px;
    }
}

/* ===========================
   FAQ SECTION STYLES
   =========================== */

.hero--faq {
    background: url('../assets/images/hero/hero-bg.jpg') center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}



.hero--faq .hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero--faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero--faq .hero__title {
    color: var(--white);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero--faq .hero__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-section {
    padding: var(--space-md) 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--space-md);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    margin-bottom: var(--space-xs);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-heavy);
}

.faq-question {
    padding: var(--space-sm);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition-medium);
    position: relative;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    padding-right: var(--space-md);
}

.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: var(--transition-medium);
    min-width: 24px;
    text-align: center;
    line-height: 1;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
    background: var(--bg-light);
}

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

.faq-answer p {
    padding: 0 var(--space-sm) var(--space-sm);
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.faq-answer a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .hero--faq {
        min-height: 30vh;
    }
    
    .hero--faq .hero__title {
        font-size: 2rem;
    }
    
    .hero--faq .hero__subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: var(--space-sm);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 var(--space-sm) var(--space-sm);
    }
    
    .faq-toggle-icon {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 var(--space-sm) var(--space-xs);
        font-size: 0.9rem;
    }
}