/**
 * Custom Styles for AEA Custom Theme
 * 
 * @package AEA_Custom_Theme
 */

/* ============================================
   DESIGN TOKENS - CSS Custom Properties
   ============================================ */
:root {
    /* Colors - Light Mode */
    --background: 0 0% 100%;
    --foreground: 0 0% 13%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 13%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 13%;
    --primary: 0 0% 13%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 0% 96%;
    --secondary-foreground: 0 0% 13%;
    --muted: 0 0% 96%;
    --muted-foreground: 0 0% 45%;
    --accent: 41 100% 49%;
    --accent-foreground: 0 0% 13%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 0 0% 89%;
    --input: 0 0% 89%;
    --ring: 41 100% 49%;
    --radius: 0.5rem;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Legacy variables for backwards compatibility */
    --primary-color: hsl(var(--primary));
    --primary-dark: hsl(0 0% 8%);
    --primary-light: hsl(0 0% 20%);
    --secondary-color: hsl(var(--foreground));
    --text-color: hsl(var(--foreground));
    --text-light: hsl(var(--muted-foreground));
    --bg-color: hsl(var(--background));
    --bg-light: hsl(var(--secondary));
    --border-color: hsl(var(--border));
    --spacing-unit: 1rem;
    --max-width: 1280px;
    --font-primary: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-handwritten: "Caveat", cursive;
    --transition: var(--transition-smooth);
}

.text-white { color: hsl(var(--white)) !important; }
.bg-white { background-color: hsl(var(--white)); }

/* Colors - Dark Mode */
.dark {
    --background: 0 0% 10%;
    --foreground: 0 0% 98%;
    --card: 0 0% 12%;
    --card-foreground: 0 0% 98%;
    --popover: 0 0% 12%;
    --popover-foreground: 0 0% 98%;
    --primary: 0 0% 98%;
    --primary-foreground: 0 0% 13%;
    --secondary: 0 0% 20%;
    --secondary-foreground: 0 0% 98%;
    --muted: 0 0% 18%;
    --muted-foreground: 0 0% 65%;
    --accent: 41 100% 49%;
    --accent-foreground: 0 0% 13%;
    --destructive: 0 62% 45%;
    --destructive-foreground: 0 0% 100%;
    --border: 0 0% 20%;
    --input: 0 0% 20%;
    --ring: 41 100% 49%;
}

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

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    border-color: hsl(var(--border));
}

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

/* Ensure all images are responsive */
img,
picture,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover,
a:focus {
    color: hsl(var(--accent));
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-unit);
    color: hsl(var(--foreground));
}

p {
    margin-bottom: var(--spacing-unit);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: var(--spacing-unit);
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-unit);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

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

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

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

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
.hero-heading{
    font-size: 4.5rem !important;
    color: #000 !important;
}
/* ============================================
   Header Styles
   ============================================ */
/* ============================================
   Header Styles - Matching Lovable Design
   ============================================ */
.site-header {  
    background: rgb(44, 44, 44);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-logo-link,
.site-branding a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.custom-logo-link:hover,
.site-branding a:hover {
    opacity: 0.8;
}

.custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-title a {
    color: hsl(var(--foreground));
    text-decoration: none;
}

.site-title a:hover {
    color: hsl(var(--accent));
}

.site-description {
    display: none;
}

/* ============================================
   Navigation
   ============================================ */
.main-navigation {
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.menu-toggle:hover,
.menu-toggle:focus {
    color: hsl(var(--accent));
}

.menu-toggle .menu-icon {
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

/* Hide Submenus by Default */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-left: 0;
}

/* Show Submenu on Hover */
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu .sub-menu li:last-child {
    border-bottom: none;
}

.nav-menu .sub-menu a {
    padding: 0.75rem 1.5rem;
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
    background: rgba(249, 177, 1, 0.1);
    color: hsl(var(--accent));
}

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

.nav-menu a:hover,
.nav-menu a:focus {
    color: hsl(var(--accent));
    text-decoration: none;
}

.nav-menu .current-menu-item > a,
.nav-menu .current-page-item > a {
    color: hsl(var(--accent));
    font-weight: 600;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: hsl(var(--accent));
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a:focus::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current-page-item > a::after {
    width: 100%;
}

/* Menu Item with Dropdown Indicator */
.nav-menu .menu-item-has-children > a {
    padding-right: 1.5rem;
    position: relative;
}

.nav-menu .menu-item-has-children > a::before {
    content: '▼';
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.625rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
}

.nav-menu .menu-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Fix underline for items with children */
.nav-menu > li.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: hsl(var(--accent));
    transition: width 0.3s ease;
}

.nav-menu > li.menu-item-has-children > a:hover::after,
.nav-menu > li.menu-item-has-children > a:focus::after {
    width: calc(100% - 1.5rem);
}

/* Mobile Menu */
@media (max-width: 968px) {
    .header-inner {
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .site-branding {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: auto;
    }
    
    .menu-toggle {
        display: block;
        font-size: 1.75rem;
        padding: 0.5rem;
        color: #fff !important;
    }
    
    
    .site-header.menu-active .menu-toggle {
        color: #fff !important;
    }
    
    .main-navigation {
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .header-donate-btn {
        display: none;
    }
    
    .main-navigation .nav-menu {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid hsl(var(--border));
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        border-radius: 0;
        z-index: 999;
    }
    
    .main-navigation .nav-menu.active {
        display: flex;
    }
    
    .main-navigation .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-navigation .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .main-navigation .nav-menu a {
        padding: 1rem 0;
        width: 100%;
        color: #2c2c2c;
    }
    
    /* Mobile: Show submenus as expandable (no hover) */
    .main-navigation .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        margin-top: 0;
        padding-left: 1rem;
        display: none;
    }
    
    .main-navigation .nav-menu .sub-menu.active {
        display: block;
    }
    
    .main-navigation .nav-menu .menu-item-has-children > a::before {
        content: '+';
        border: none;
        width: auto;
        height: auto;
        margin-left: 0.5rem;
        font-size: 1.25rem;
        font-weight: 300;
    }
    
    .main-navigation .nav-menu .menu-item-has-children > a.active::before {
        content: '−';
    }
    
    .header-donate-btn {
        order: 1;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .site-branding {
        order: 0;
    }
}

@media (max-width: 640px) {
    .top-bar {
        padding: 0.375rem 0;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.8125rem;
    }
    
    .header-inner {
        flex-wrap: nowrap;
        padding: 0.5rem 0;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-donate-btn {
        display: none;
    }
    
    .site-branding {
        width: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .custom-logo {
        max-height: 50px;
    }
    
    .menu-toggle {
        order: 2;
    }
    
    .main-navigation {
        order: 2;
        margin-left: auto;
    }
    
    .site-header {
        padding: 0.75rem 0;
    }
}

/* ============================================
   Main Content
   ============================================ */
.site-content {
    
    min-height: calc(100vh - 300px);
}

.site-main {
    width: 100%;
}

/* Layout with sidebar */
.has-sidebar .site-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

/* ============================================
   Posts & Articles
   ============================================ */


.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.entry-title a {
    color: hsl(var(--foreground));
    text-decoration: none;
}

.entry-title a:hover {
    color: hsl(var(--accent));
}

.entry-meta {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.entry-meta span {
    display: inline-block;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.entry-content {
    margin-bottom: 2rem;
}

.entry-content img {
    border-radius: 8px;
}

.entry-content a {
    text-decoration: underline;
}

.entry-footer {
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
    margin-top: 2rem;
}

.read-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.read-more:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    text-decoration: none;
    opacity: 0.9;
}

/* ============================================
   Sidebar
   ============================================ */
.sidebar {
    width: 100%;
}

.widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: hsl(var(--card));
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid hsl(var(--accent));
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: hsl(var(--foreground));
    color: hsl(var(--background));
    padding: 3rem 0 1rem;
    
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-widget-area img{
    width: 160px;
    height: auto;
}
.footer-widget-area p{
    font-size: 0.875rem;
}
.footer-widget-area .widget {
    background: transparent;
    padding: 0;
    border: none; /* remove white borders on dark footer */
}

.footer-widget-area .widget-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.footer-widget-area a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget-area a:hover {
    color: #fff;
}

.site-info {
    text-align: center;
    padding-top: 2rem;
    border-top: none; /* match reference: no top divider line */
    color: rgba(255, 255, 255, 0.7);
}
.donate-hero-title-highlight {
    position: relative;
    display: inline-block;
    font-family: var(--font-handwritten);
    font-weight: 700;
    
    text-decoration: none;
    line-height: 1.2;
    color: #fff !important;
}
.donate-hero-cards{
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.donate-hero-card{
    background: #e96f62;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-align: center;
}
.donate-hero-card h2{
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.donate-hero-card p{
    font-size: 0.75rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
}
.donate-page-layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.donate-info-header{
    margin-bottom: 2rem;
}
.donate-info-section-title{
    font-size: 2.5rem;
    font-weight: 900;
    color: #f9b101;
    margin-bottom: 0.5rem;
}
.donate-toggle-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    
    margin-bottom: 2rem;
}
.donation-amounts-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:1rem;
}
.donation-amounts-grid button p{
    font-size: 1.25rem;
    font-weight: 700;
    color: #f9b101;
    margin-bottom: 0.5rem;
}
.donation-amounts-grid button{
    width: 100%;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    border: 1px solid #f9b101 !important;
    background: #fff !important;
    color: #f9b101 !important;
    cursor: pointer;
    display:block;
}
.donate-toggle-button {
    background: #dfdfdf;
    border: none;
    color: #d44e25;
    cursor: pointer;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: none;
    letter-spacing: 0.03em;
}
.donate-toggle-button.active {
    background: #f9b101;
    color: #fff;
    box-shadow: 0 2px 16px rgba(249,177,1,0.20);
}
.donate-toggle-content { display: none; }
.donate-toggle-content.active { display: block; }
/* ============================================
   ACF Components
   ============================================ */
.hero-section {
    padding: 8rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-text {
    font-family: var(--font-primary);
    font-size: 1.125rem; /* text-lg */
    max-width: 42rem; /* max-w-2xl = 672px */
    margin: 0 0 2rem 0;
    color: rgba(255, 255, 255, 0.95); /* text-white/95 */
    line-height: 1.625; /* leading-relaxed */
    font-weight: 500; /* font-medium */
    text-align: left;
}

/* Responsive font sizes */
@media (min-width: 640px) {
    .hero-text {
        font-size: 1.25rem; /* sm:text-xl */
    }
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 1.5rem; /* md:text-2xl */
    }
}

/* Strong tag inside hero text */
.hero-text strong {
    color: #ffffff; /* text-white */
    font-weight: 700; /* font-bold */
}

.hero-section-lovable .hero-text {
    margin: 0 0 2rem 0;
    text-align: left;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero actions buttons - ensure proper styling */
.hero-actions .btn {
    min-width: auto;
}

.hero-actions .btn-primary,
.hero-actions .bg-accent {
    background-color: #F9B101 !important;
    color: #000000 !important;
}

.hero-actions .btn-secondary,
.hero-actions .bg-foreground {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 3px solid #ffffff !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

@media (min-width: 640px) {
    .hero-actions .btn-secondary,
    .hero-actions .bg-foreground {
        border-width: 4px;
    }
}

.btn-large {
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: calc(var(--radius) + 2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.content-section {
    padding: 5rem 0;
}

.content-section:nth-child(even) {
    background-color: hsl(var(--secondary));
}

/* Ensure CTA uses dark background even if it's an even content section */
.action-section.bg-foreground {
    background-color: hsl(var(--foreground)) !important;
}

.section-content-wrapper {
    margin-top: 2rem;
}

.section-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .section-content-with-image {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.layout-image-left .section-content-with-image {
    grid-template-columns: 1fr 1fr;
}

.layout-image-right .section-content-with-image {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.layout-image-right .section-content-with-image > * {
    direction: ltr;
}

.layout-text-center .section-content-wrapper {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-image {
    width: 100%;
}

.section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3rem); /* Unified size for all section titles */
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900; /* Unified weight for all section titles */
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title + .section-content-wrapper {
    margin-top: 3rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Impact Areas Grid */
.impact-areas-section .grid-4 {
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .impact-areas-section .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-image {
    margin-bottom: 1.5rem;
    border-radius: calc(var(--radius) + 2px);
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    
    letter-spacing: -0.01em;
}

.card-content {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.card-content p {
    margin-bottom: 1rem;
}

.card-action {
    margin-top: auto;
    padding-top: 1rem;
}

.card {
    background: hsl(var(--card));
    border-radius: calc(var(--radius) + 4px);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid hsl(var(--border));
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: hsl(var(--accent) / 0.3);
}

/* Impact card specific overrides */
/* Removed - using .impact-card styles instead */

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    cursor: pointer;
    white-space: nowrap;
    height: auto;
}

.btn:hover {
    text-decoration: none;
}

/* Primary Button (Yellow/Accent) - Matching Reference */
.btn-primary,
.bg-accent.text-accent-foreground {
    background-color: #F9B101 !important;
    color: #000000 !important;
    border: 1px solid #F9B101 !important;
    font-weight: 700;
    font-size: 1.125rem; /* text-lg */
    padding: 1.5rem 2rem; /* py-6 px-8 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}

.btn-primary:hover,
.bg-accent.text-accent-foreground:hover {
    background-color: rgba(249, 177, 1, 0.9) !important; /* #F9B101/90 */
    color: #000000 !important;
    transform: scale(1.01); /* hover:scale-105 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    border-width: 1px !important;
}

/* Responsive sizing for primary button */
@media (min-width: 640px) {
    .btn-primary,
    .bg-accent.text-accent-foreground {
        font-size: 1.25rem; /* sm:text-xl */
        padding: 1.75rem 2.5rem; /* sm:py-7 sm:px-10 */
        border-width: 4px; /* sm:border-4 */
    }
}

/* Heart icon in button */
.btn-primary svg,
.bg-accent.text-accent-foreground svg,
.btn-heart-icon {
    width: 1.25rem; /* h-5 w-5 */
    height: 1.25rem;
    margin-right: 0.5rem; /* mr-2 */
    fill: currentColor;
    stroke: currentColor;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .btn-primary svg,
    .bg-accent.text-accent-foreground svg,
    .btn-heart-icon {
        width: 1.5rem; /* sm:h-6 sm:w-6 */
        height: 1.5rem;
    }
}

/* Secondary Button (Learn Our Story) - Matching Reference */
.btn-secondary,
.bg-foreground.text-primary-foreground {
    background-color: rgba(0, 0, 0,1) !important; /* bg-white/10 */
    color: #ffffff !important; /* text-white */
    border: 1px solid #000000 !important; /* border-white border-3 */
    backdrop-filter: blur(4px) !important; /* backdrop-blur-sm */
    -webkit-backdrop-filter: blur(4px) !important;
    font-weight: 700; /* font-bold */
    font-size: 1.125rem; /* text-lg */
    padding: 1.5rem 2rem; /* py-6 px-8 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover, .bg-foreground.text-primary-foreground:hover {
    background-color: hsl(var(--foreground) / .9) !important; /* hover:bg-white */
    color: #ffffff !important; /* hover:text-foreground */
    border-width: 1px !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive sizing for secondary button */
@media (min-width: 640px) {
    .btn-secondary,
    .bg-foreground.text-primary-foreground {
        font-size: 1.25rem; /* sm:text-xl */
        padding: 1.75rem 2.5rem; /* sm:py-7 sm:px-10 */
        border-width: 4px; /* sm:border-4 */
    }
}

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

.btn-outline:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* ============================================
   Enhanced Spacing & Typography
   ============================================ */
.content-section .section-content {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.content-section .section-content p {
    margin-bottom: 1.5rem;
}

.content-section .section-content h3 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section .section-content ul,
.content-section .section-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section .section-content li {
    margin-bottom: 0.75rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .has-sidebar .site-main {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 6rem 1.5rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header-inner {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .site-main {
        padding: 0;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .entry-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   Search Form
   ============================================ */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.search-form label {
    display: none;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: hsl(var(--accent));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.search-form input[type="submit"] {
    padding: 0.75rem 1.5rem;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.search-form input[type="submit"]:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    opacity: 0.9;
}

/* ============================================
   Social Media Links
   ============================================ */
.social-media-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

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

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================
   Footer Navigation
   ============================================ */
.footer-navigation {
    margin-top: 1rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-menu a:hover {
    color: #fff;
}

/* Override footer menu layout inside new footer */
.site-footer .footer-menu {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}
.site-footer .footer-menu li {
    margin: 0 0 0.5rem 0;
}
.site-footer .footer-menu a {
    color: hsla(var(--background), 0.70);
}
.site-footer .footer-menu a:hover {
    color: hsl(var(--accent));
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    margin-bottom: 2rem;
    text-align: center;
}

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

.page-title span {
    color: hsl(var(--accent));
}

/* ============================================
   Error 404
   ============================================ */
.error-404 {
    padding: 3rem 0;
    text-align: center;
}

.error-404 .page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: hsl(var(--accent));
}

.error-404 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404-widgets {
    margin-top: 3rem;
}

.error-404-widgets .widget {
    background: transparent;
    padding: 0;
}

.error-404-widgets .widget ul {
    list-style: none;
    margin-left: 0;
}

.error-404-widgets .widget ul li {
    margin-bottom: 0.5rem;
}

.error-404-widgets .widget ul li a {
    color: hsl(var(--foreground));
}

/* ============================================
   Sticky Header
   ============================================ */
.site-header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-header.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* ============================================
   UTILITY CLASSES USING DESIGN TOKENS
   ============================================ */

/* Background Colors */
.bg-background {
    background-color: hsl(var(--background));
}

.bg-foreground {
    background-color: hsl(var(--foreground));
}

.bg-primary {
    background-color: hsl(var(--primary));
}

.bg-secondary {
    background-color: hsl(var(--secondary));
}

.bg-accent {
    background-color: hsl(var(--accent));
}

.bg-muted {
    background-color: hsl(var(--muted));
}

.bg-card {
    background-color: hsl(var(--card));
}

/* Text Colors */
.text-background {
    color: hsl(var(--background));
}

.text-foreground {
    color: hsl(var(--foreground));
}

.text-primary {
    color: hsl(var(--primary));
}

.text-primary-foreground {
    color: hsl(var(--primary-foreground));
}

.text-secondary {
    color: hsl(var(--secondary));
}

.text-secondary-foreground {
    color: hsl(var(--secondary-foreground));
}

.text-accent {
    color: hsl(var(--accent));
}

.text-accent-foreground {
    color: hsl(var(--accent-foreground));
}

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

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

/* Border Colors */
.border-border {
    border-color: hsl(var(--border));
}

.border-input {
    border-color: hsl(var(--input));
}

.border-accent {
    border-color: hsl(var(--accent));
}

/* Footer utility helpers (Tailwind-like) */
.border-t-4 { border-top-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-style: solid; }
.border-t-1{  border-style: solid; border-width: 0px;border-top-width: 1px; }
.border { border-width: 1px; border-style: solid; }
.border-background\/20 { border-color: hsla(var(--background), 0.20); }
.bg-background\/10 { background-color: hsla(var(--background), 0.10); }
.site-footer a.bg-background\/10 { background-color: hsl(var(--background) / .1) !important;color: #fff; }
.text-background\/70 { color: hsla(var(--background), 0.70); }
.text-background\/60 { color: hsla(var(--background), 0.60); }
.hover\:text-accent:hover { color: hsl(var(--accent)); }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.w-10 { width: 2.5rem; } .h-10 { height: 2.5rem; }
.rounded-full { border-radius: 9999px; }
.flex { display: flex; } .items-center { align-items: center; } .items-start { align-items: flex-start; } .justify-center { justify-content: center; }
.gap-3 { gap: 0.75rem; } .gap-2 { gap: 0.5rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; }
.font-bold { font-weight: 700; } .font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: 1rem; }
.leading-relaxed { line-height: 1.75; }
.relative { position: relative; } .absolute { position: absolute; }
.bottom-0 { bottom: 0; } .left-0 { left: 0; }
.w-0 { width: 0; } .w-full { width: 100%; }
.h-0\.5 { height: 2px; }
.group:hover .group-hover\:w-full { width: 100%; }
.transition-all { transition-property: all; transition-duration: 0.15s; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.duration-300 { transition-duration: 0.3s; }
.hover\:bg-accent:hover { background-color: hsl(var(--accent)); }
.hover\:scale-110:hover { transform: scale(1.10); }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); } }
.mb-8 { margin-bottom: 2rem; }
.pt-8 { padding-top: 2rem; }

.n-btn{
    padding: 0.5rem 3.5rem !important;
}
/* Font Families */
.font-sans {
    font-family: var(--font-primary);
}

.font-handwritten {
    font-family: var(--font-handwritten);
}

/* Border Radius */
.rounded-lg {
    border-radius: var(--radius);
}

.rounded-md {
    border-radius: calc(var(--radius) - 2px);
}

.rounded-sm {
    border-radius: calc(var(--radius) - 4px);
}

/* Transitions */
.transition-smooth {
    transition: var(--transition-smooth);
}

/* Tailwind-like utility classes used in templates */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.duration-500 {
    transition-duration: 0.5s;
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.opacity-100 {
    opacity: 1;
}

/* Hover variants (note the escaped selectors) */
.hover\:shadow-2xl:hover {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:border-\[\#F9B101\]:hover {
    --tw-border-opacity: 1;
    border-color: rgb(249 177 1 / var(--tw-border-opacity, 1));
}

.hover\:-translate-y-2:hover {
    --tw-translate-y: -0.5rem;
    transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y)) rotate(var(--tw-rotate, 0)) skew(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}
.knowledge-hub-grid{
    margin:0 7rem;
    
}
.knowledge-hub-item{
    padding:5rem 10rem !important;
}
.knowledge-hub-item h2{
    font-size: 3rem !important;
    font-weight: 700;
    margin-bottom: 1rem !important;
}
.knowledge-hub-item p{
    font-size: 1.25rem !important;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 1rem !important;
}
/* ============================================
   CUSTOM ANIMATIONS
   ============================================ */

/* Paint Stroke Animation */
.paint-stroke {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: draw 2s ease-out forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Fade In Animation */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

/* Fade In Up Animation */
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scale In Animation */
@keyframes scale-in {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Slide In Right Animation */
@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-right {
    animation: slide-in-right 0.7s ease-out;
}

/* Slide In Left Animation */
@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-left {
    animation: slide-in-left 0.7s ease-out;
}

/* Counter Animation */
@keyframes counter {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-counter {
    animation: counter 0.6s ease-out;
}

/* Float Animation */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Slow Animation */
@keyframes pulse-slow {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

/* Wiggle Animation */
@keyframes wiggle {
    0%,
    100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

.animate-wiggle {
    animation: wiggle 1s ease-in-out infinite;
}

/* ============================================
   SCROLL TRIGGERED ANIMATIONS
   ============================================ */

/* Initial state - elements are hidden */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0.6s;
}

/* Animation states - triggered by JavaScript */
.animate-on-scroll.animated {
    opacity: 1;
    visibility: visible;
}

/* Fade in up animation on scroll */
.animate-on-scroll[data-animation="fade-in-up"] {
    transform: translateY(30px);
}

.animate-on-scroll[data-animation="fade-in-up"].animated {
    transform: translateY(0);
}

/* Fade in animation on scroll */
.animate-on-scroll[data-animation="fade-in"] {
    transform: translateY(20px);
}

.animate-on-scroll[data-animation="fade-in"].animated {
    transform: translateY(0);
}

/* Slide in left animation on scroll */
.animate-on-scroll[data-animation="slide-in-left"] {
    transform: translateX(-50px);
}

.animate-on-scroll[data-animation="slide-in-left"].animated {
    transform: translateX(0);
}

/* Slide in right animation on scroll */
.animate-on-scroll[data-animation="slide-in-right"] {
    transform: translateX(50px);
}

.animate-on-scroll[data-animation="slide-in-right"].animated {
    transform: translateX(0);
}

/* Scale in animation on scroll */
.animate-on-scroll[data-animation="scale-in"] {
    transform: scale(0.9);
}

.animate-on-scroll[data-animation="scale-in"].animated {
    transform: scale(1);
}

/* Delay support for staggered animations */
.animate-on-scroll[data-delay="200"] {
    transition-delay: 0.2s;
}

.animate-on-scroll[data-delay="300"] {
    transition-delay: 0.3s;
}

.animate-on-scroll[data-delay="400"] {
    transition-delay: 0.4s;
}

.animate-on-scroll[data-delay="500"] {
    transition-delay: 0.5s;
}

.animate-on-scroll[data-delay="600"] {
    transition-delay: 0.6s;
}

.animate-on-scroll[data-delay="700"] {
    transition-delay: 0.7s;
}

.animate-on-scroll[data-delay="800"] {
    transition-delay: 0.8s;
}

/* ============================================
   WORDPRESS BLOCK STYLES
   ============================================ */

.wp-block-button__link {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.wp-block-button__link:hover {
    opacity: 0.9;
}

/* Accent Button Style */
.wp-block-button.is-style-accent .wp-block-button__link {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

/* ============================================
   Lovable Design Specific Styles
   ============================================ */

/* ============================================
   Top Yellow Bar
   ============================================ */
.top-bar {
    background: hsl(var(--accent));
    padding: 0.5rem 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 101;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-phone {
    color: hsl(0, 0%, 13%);
    font-weight: 500;
}

.top-bar-phone a {
    color: hsl(0, 0%, 13%);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-phone a:hover {
    opacity: 0.8;
}

.top-bar-donate {
    font-weight: 600;
    text-decoration: none;
    padding: 0.375rem 4rem;
    border-radius: var(--radius);
    background-color: hsl(0, 0%, 13%);
    color: hsl(var(--accent));
    transition: all 0.3s ease;
}

.top-bar-donate:hover {
    background-color: hsl(0, 0%, 20%);
    transform: translateY(-1px);
}

/* Header Donate Button */
.header-donate-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: hsl(var(--foreground));
    color: hsl(var(--background));
    white-space: nowrap;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-donate-btn:hover {
    background: hsl(var(--accent));
    color: hsl(0, 0%, 13%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section - Lovable Style */
.hero-section-lovable {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-section-lovable .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem var(--spacing-unit);
    position: relative;
    z-index: 4;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Curved Yellow SVG Element */
.hero-yellow-curve {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    opacity: 0.7;
}

.hero-curve-svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

@media (min-width: 768px) {
    .hero-yellow-curve {
        width: 66.666667%; /* md:w-2/3 equivalent */
    }
}

@media (max-width: 767px) {
    .hero-yellow-curve {
        width: 100%; /* w-full on mobile */
        opacity: 0.5; /* Reduce opacity on mobile for better readability */
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.7); /* Darker overlay on mobile */
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding: 2rem;
    text-align: left; /* Left-align content */
    font-family: var(--font-primary);
}

.hero-section-lovable .container {
    display: flex;
    justify-content: flex-start; /* Align content to left */
    align-items: center;
}

.hero-section-lovable .hero-title,
.hero-section-lovable .hero-text,
.hero-section-lovable .hero-actions {
    text-align: left;
}

.hero-section-lovable .hero-actions {
    justify-content: flex-start;
}

.hero-section-lovable .hero-stats {
    justify-content: flex-start;
}

/* Hero Title - Match reference font-weight: 900 (font-black) */
.hero-section-lovable .hero-title {
    font-family: var(--font-primary);
    font-weight: 900; /* font-black */
    letter-spacing: -0.02em;
}

/* Hero Title Highlight - Yellow with SVG Underline */
.hero-title-highlight {
    position: relative;
    display: inline-block;
    font-family: var(--font-handwritten); /* Caveat font */
    font-weight: 700;
    color: #F9B101 !important;
    text-decoration: none;
    line-height: 1.2;
}

/* Responsive font sizes for highlighted text */
.hero-title-highlight {
    font-size: 2.5rem; /* text-5xl */
}

@media (min-width: 640px) {
    .hero-title-highlight {
        font-size: 3rem; /* sm:text-6xl */
    }
}

@media (min-width: 768px) {
    .hero-title-highlight {
        font-size: 4rem; /* md:text-7xl */
    }
}

@media (min-width: 1024px) {
    .hero-title-highlight {
        font-size: 5rem; /* lg:text-8xl */
    }
}

/* SVG Underline */
.hero-highlight-svg {
    position: absolute;
    bottom: -0.5rem; /* -bottom-2 */
    left: 0;
    width: 100%;
    height: 12px;
}

@media (min-width: 640px) {
    .hero-highlight-svg {
        bottom: -0.75rem; /* sm:-bottom-3 */
    }
}

@media (min-width: 768px) {
    /* Impact Stats Grid - 2 columns on tablets */
    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    /* Impact Stats Grid - 3 columns on desktop */
    .impact-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Paint stroke animation */
.hero-highlight-svg .paint-stroke {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 2s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-title .underline {
    color: hsl(var(--accent)) !important;
    text-decoration: underline;
    text-decoration-color: hsl(var(--accent));
    text-underline-offset: 0.3em;
    text-decoration-thickness: 3px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;

}

.hero-stat {
    text-align: left;
    padding: 1.5rem 2rem;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent dark background */
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #fff;
    width: 180px;
}

.hero-stat:hover {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #F9B101; /* Golden-yellow matching "Donate Now" button */
    font-family: var(--font-primary);
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 1;
    color: #fff; /* White text */
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Section Title with Accent Underline */
.section-title-accent {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 4vw, 3rem); /* Match unified section title sizing */
    font-weight: 900; /* Match unified section title weight */
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 8px; /* Match unified section title underline height */
    background: hsl(var(--accent));
    border-radius: 9999px; /* Match unified section title rounded underline */
}

/* Section Title with Yellow Text */
/* Unified Section Title Styling */
.section-title-yellow {
    color: hsl(var(--accent)) !important;
    font-size: clamp(2.5rem, 4vw, 3rem); /* Match who-we-are-title responsive sizing */
    font-weight: 900; /* Match who-we-are-title weight */
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title-yellow::after {
    background: hsl(var(--accent));
    height: 8px; /* Match who-we-are-title underline height */
    width: 80px;
    display: block;
    margin-top: 0.75rem;
    border-radius: 9999px; /* Match who-we-are-title rounded underline */
}

/* Impact Areas Section Title - Override for dark background */
.impact-areas-section .section-title {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.impact-areas-section .section-title-yellow {
    color: hsl(var(--accent)) !important;
    font-size:clamp(2.5rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
}

/* WHO WE ARE Section */
.who-we-are-section {
    position: relative;
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.1) 0%, rgba(231, 76, 60, 0.05) 50%, rgba(249, 177, 1, 0.05) 100%);
    overflow: hidden;
}

/* Decorative blurred circles */
.who-we-are-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    pointer-events: none;
}

.who-we-are-blur-top-right {
    top: 0;
    right: 0;
    width: 384px; /* w-96 */
    height: 384px;
    background: rgba(231, 76, 60, 0.1); /* #E74C3C/10 */
}

.who-we-are-blur-bottom-left {
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: rgba(249, 177, 1, 0.1); /* #F9B101/10 */
}

.who-we-are-section .relative {
    position: relative;
}

.who-we-are-section .z-10 {
    position: relative;
    z-index: 10;
}

/* Who We Are Title */
.who-we-are-title-wrapper {
    margin-bottom: 4rem;
}

.who-we-are-title {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 4vw, 3rem); /* Match section-title-yellow */
    font-weight: 900; /* Match section-title-yellow */
    color: hsl(var(--foreground));
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-title-wrapper{
    display: flex;
    justify-content: center;
}
.who-we-are-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    right: 0;
    height: 8px;
    background: #F9B101;
    border-radius: 9999px;
    width: 100%; /* Match section-title-yellow width */
    margin: 0 auto; /* Center the underline */
    left: 50%;
    transform: translateX(-50%);
}
.activities-subtitle{
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
}

.who-we-are-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

/* ABOUT US HERO SECTION - Matching Reference Design */
.about-us-hero-section {
    position: relative;
    padding: 4rem 0; /* py-16 */
    overflow: hidden;
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.1) 0%, rgba(231, 76, 60, 0.05) 50%, rgba(255, 255, 255, 1) 100%);
}
.about-story{
    display: flex;
    justify-content: left !important;
    width: 100%;padding: 0 7rem;
}
.about-section-image-2{
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.9), rgba(231, 76, 60, 0.9));
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.about-section-image-2 hr{
    width: 100%;
    background: #ffffff4d;
    height: 1px;
    border: none;
    margin: 1.5rem 0;
}
.about-section-image-2 h2{
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}
.about-section-image-2 h3{
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .about-us-hero-section {
        padding: 6rem 0; /* sm:py-24 */
    }
}

@media (min-width: 1024px) {
    .about-us-hero-section {
        padding: 8rem 0; /* lg:py-32 */
    }
}

/* Donate Hero Section - Gradient Background */
.donate-hero-section {
    background: linear-gradient(to bottom right, #F9B101, #E74C3C, #C0392B);
    color: #fff;
}

/* About Us Blur Circles */
.about-us-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px); /* blur-3xl */
    pointer-events: none;
}

.about-us-blur-top-right {
    top: 5rem; /* top-20 */
    right: 2.5rem; /* right-10 */
    width: 384px; /* w-96 */
    height: 384px; /* h-96 */
    background: rgba(231, 76, 60, 0.1); /* bg-[#E74C3C]/10 */
}

.about-us-blur-bottom-left {
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: rgba(249, 177, 1, 0.1); /* bg-[#F9B101]/10 */
}

.about-us-images-blur {
    position: absolute;
    top: -2rem; /* -top-8 */
    left: -2rem; /* -left-8 */
    width: 288px; /* w-72 */
    height: 288px; /* h-72 */
    background: rgba(249, 177, 1, 0.2); /* bg-[#F9B101]/20 */
}

/* About Us Hero Grid - Two Column Layout */
.about-us-hero-section .container {
    position: relative;
    z-index: 10;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
}

.about-us-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1152px; /* max-w-6xl */
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .about-us-hero-grid {
        grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
        gap: 3rem; /* lg:gap-12 */
    }
}

/* About Us Title */
.about-us-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 900; /* font-black */
    color: hsl(var(--foreground));
    margin-bottom: 1rem; /* mb-4 */
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .about-us-title {
        font-size: 3rem; /* sm:text-5xl */
        margin-bottom: 1.5rem; /* sm:mb-6 */
    }
}

@media (min-width: 768px) {
    .about-us-title {
        font-size: 3.75rem; /* md:text-6xl */
    }
}

@media (min-width: 1024px) {
    .about-us-title {
        font-size: 4.5rem; /* lg:text-7xl */
    }
}

/* About Us Subtitle */
.about-us-subtitle {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75; /* leading-relaxed */
    color: hsl(var(--foreground) / 0.8); /* text-foreground/80 */
    margin-bottom: 1.5rem; /* mb-6 */
}

@media (min-width: 640px) {
    .about-us-subtitle {
        font-size: 1.25rem; /* sm:text-xl */
        margin-bottom: 2rem; /* sm:mb-8 */
    }
}

@media (min-width: 768px) {
    .about-us-subtitle {
        font-size: 1.5rem; /* md:text-2xl */
    }
}

.about-us-subtitle strong {
    color: #F9B101; /* text-[#F9B101] */
}

/* About Us Stats */
.about-us-stats {
    display: flex;
    gap: 1rem; /* gap-4 */
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .about-us-stats {
        gap: 1.5rem; /* sm:gap-6 */
    }
}

.about-us-stat-item {
    text-align: center;
}

.about-us-stat-number {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 900; /* font-black */
    line-height: 1;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .about-us-stat-number {
        font-size: 1.875rem; /* sm:text-3xl */
    }
}

@media (min-width: 768px) {
    .about-us-stat-number {
        font-size: 2.25rem; /* md:text-4xl */
    }
}

.about-us-stat-yellow {
    color: #F9B101; /* text-[#F9B101] */
}

.about-us-stat-red {
    color: #E74C3C; /* text-[#E74C3C] */
}

.about-us-stat-label {
    font-size: 0.75rem; /* text-xs */
    color: hsl(var(--foreground) / 0.7); /* text-foreground/70 */
}

@media (min-width: 640px) {
    .about-us-stat-label {
        font-size: 0.875rem; /* sm:text-sm */
    }
}

/* About Us Hero Images */
.about-us-hero-images {
    position: relative;
    margin-top: 2rem; /* mt-8 */
}

@media (min-width: 1024px) {
    .about-us-hero-images {
        margin-top: 0; /* lg:mt-0 */
    }
}

.about-us-images-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr; /* grid-cols-2 */
    gap: 0.75rem; /* gap-3 */
    z-index: 10;
}

@media (min-width: 640px) {
    .about-us-images-grid {
        gap: 1rem; /* sm:gap-4 */
    }
}

.about-us-image {
    width: 100%;
    height: 12rem; /* h-48 */
    object-fit: cover;
    border-radius: 1rem; /* rounded-2xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    border: 2px solid white; /* border-2 border-white */
    transition: transform 0.3s ease; /* transition-transform duration-300 */
}

@media (min-width: 640px) {
    .about-us-image {
        height: auto; /* sm:h-auto */
        border-radius: 1.5rem; /* sm:rounded-3xl */
        border-width: 4px; /* sm:border-4 */
    }
}

.about-us-image-1 {
    transform: rotate(1deg); /* rotate-1 */
}

@media (min-width: 640px) {
    .about-us-image-1 {
        transform: rotate(2deg); /* sm:rotate-2 */
    }
}

.about-us-image-1:hover {
    transform: rotate(0deg); /* hover:rotate-0 */
}

.about-us-image-2 {
    transform: rotate(-1deg); /* -rotate-1 */
    margin-top: 1rem; /* mt-4 */
}

@media (min-width: 640px) {
    .about-us-image-2 {
        transform: rotate(-2deg); /* sm:-rotate-2 */
        margin-top: 2rem; /* sm:mt-8 */
    }
}

.about-us-image-2:hover {
    transform: rotate(0deg); /* hover:rotate-0 */
}

/* ABOUT PAGE SECTIONS - Our Story, Journey, Values, Board Members, Executive Team */

/* About Section Base Styles */
.about-section {
    padding: 4rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .about-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 8rem 0;
    }
}

/* Our Story Section */
.our-story-section {
    background: hsl(var(--background));
}

.about-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    
    padding: 0 7rem;
}

@media (min-width: 1024px) {
    .about-section-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-section-image {
    position: relative;
}

.about-section-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(var(--foreground) / 0.8);
}

.about-section-text p {
    margin-bottom: 1.5rem;
}

.about-section-text p:last-child {
    margin-bottom: 0;
}

/* Our Journey Section */
.our-journey-section {
    background: hsl(var(--secondary));
}

.journey-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto 0;
    width: 100%;
    padding: 0 7rem 3rem;
}

.journey-items {
    padding: 1rem 1.2rem;
    text-align: left;
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.10) 0%, rgba(231, 76, 60, 0.10) 100%);
    border-radius: 1rem;
    border: 2px solid rgba(249, 177, 1, 0.30);
    // box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .journey-items {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}




.journey-item-title {
    font-size: 3rem;
    font-weight: 900;
    color: #F9B101;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.journey-item p {
    margin: 0;
    color: hsl(var(--foreground) / 0.8);
    line-height: 1.7;
}

/* Our Values Section */
.our-values-section {
    background: hsl(var(--background));
    width: 100%;
    padding: 0 7rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    padding: 0 7rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.value-card {
    padding: 2.5rem 2rem;
    background: hsl(var(--background));
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F9B101, #E74C3C);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #F9B101;
}

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

.value-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #F9B101, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(249, 177, 1, 0.3);
}

.value-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(var(--foreground) / 0.7);
    margin: 0;
}

/* VISION Section */
.vision-section {
    position: relative;
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.08) 0%, rgba(231, 76, 60, 0.05) 50%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.vision-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    pointer-events: none;
}

.vision-blur-top-right {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(249, 177, 1, 0.15);
}

.vision-blur-bottom-left {
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: rgba(231, 76, 60, 0.1);
}

.vision-card-wrapper {
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.vision-card {
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.95), rgba(231, 76, 60, 0.95));
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.vision-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.vision-card-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.vision-card-content {
    font-size: 1rem;
    line-height: 1.8;
    color: white;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .vision-card-wrapper {
        padding: 0 2rem;
    }
    .vision-card {
        padding: 3rem 2rem;
    }
    .vision-card-title {
        font-size: 2rem;
    }
    .vision-card-content {
        font-size: 1.25rem;
    }
}

/* MISSION Section */
.mission-section {
    position: relative;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(249, 177, 1, 0.05) 50%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.mission-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    pointer-events: none;
}

.mission-blur-top-left {
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(231, 76, 60, 0.15);
}

.mission-blur-bottom-right {
    bottom: 0;
    right: 0;
    width: 450px;
    height: 450px;
    background: rgba(249, 177, 1, 0.1);
}

.mission-card-wrapper {
    margin: 0 auto;
    height: 100%;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.mission-card {
    background: hsl(var(--background));
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #F9B101, #E74C3C);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.mission-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #F9B101, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(249, 177, 1, 0.4);
}

.mission-card-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #F9B101, #E74C3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card-content {
    font-size: 1rem;
    line-height: 1.9;
    color: hsl(var(--foreground) / 0.8);
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .mission-card-wrapper {
        padding: 0 2rem;
    }
    .mission-card {
        padding: 3rem 2rem;
    }
    .mission-card-title {
        font-size: 2rem;
    }
    .mission-card-content {
        font-size: 1.125rem;
    }
}

/* VALUES & PRINCIPLES Section */
.values-principles-section {
    position: relative;
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.05) 0%, rgba(231, 76, 60, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
    padding: 0 7rem;
}

.values-principles-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    pointer-events: none;
}

.values-principles-blur-top-right {
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: rgba(249, 177, 1, 0.12);
}

.values-principles-blur-bottom-left {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(231, 76, 60, 0.1);
}



.vp-subsection {
    margin-bottom: 4rem;
}

.vp-subsection:last-child {
    margin-bottom: 0;
}

.vp-subsection-title {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.vp-subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F9B101, #E74C3C);
    border-radius: 2px;
}

.vp-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vp-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .vp-items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.vp-principles-grid {
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vp-principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vp-item-card {
    background: hsl(var(--background));
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vp-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F9B101, #E74C3C);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vp-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #F9B101;
}

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

.vp-item-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #F9B101, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 15px rgba(249, 177, 1, 0.3);
    transition: transform 0.3s ease;
}

.vp-item-card:hover .vp-item-icon {
    transform: scale(1.1) rotate(5deg);
}

.vp-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vp-item-description {
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(var(--foreground) / 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .values-principles-section {
        padding: 0 2rem;
    }
    .vp-item-card {
        padding: 2rem 1.5rem;
    }
}

/* Board Members & Executive Team Sections */
.board-members-section,
.executive-team-section {
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.05) 0%, rgba(231, 76, 60, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.team-card {
    background: hsl(var(--background));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #F9B101;
}

.team-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #F9B101, #E74C3C);
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.9), rgba(231, 76, 60, 0.9));
}

.team-card-initials {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-card-content {
    padding: 2rem 1.5rem;
}

.team-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.team-card-position {
    font-size: 0.95rem;
    font-weight: 600;
    color: #F9B101;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.team-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: hsl(var(--foreground) / 0.7);
    margin: 0;
}

@media (min-width: 768px) {
    .who-we-are-content-grid {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .who-we-are-content-grid {
        grid-template-columns: 1fr;
    }
}

.who-we-are-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 900; /* font-black */
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.who-we-are-text {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: rgba(0, 0, 13%, 0.8);
    font-weight: 400;
}

.who-we-are-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.bullet-icon {
    width: 48px;
    height: 48px;
    background: #F9B101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #000;
    font-weight: 700;
}

/* Who We Are Quote Box */
.who-we-are-quote-box {
    margin-top: 6rem;
    position: relative;
    padding: 2.5rem; /* p-10 = 2.5rem */
    border-radius: 1rem; /* rounded-2xl */
    /* bg-gradient-to-br from-foreground to-foreground/90 */
    background: linear-gradient(135deg, hsl(0, 0%, 13%) 0%, hsla(0, 0%, 13%, 0.9) 100%);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    font-size: 1rem; /* Base font size for container */
}

.who-we-are-quote-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px; /* w-40 = 10rem = 160px */
    height: 160px;
    background: rgba(249, 177, 1, 0.2); /* bg-[#F9B101]/20 */
    border-radius: 50%;
    filter: blur(96px); /* blur-3xl */
    pointer-events: none;
}

.who-we-are-quote-content {
    position: relative;
    z-index: 10;
    
}

.who-we-are-quote-mark {
    font-size: 4.5rem; /* text-7xl = 4.5rem */
    margin-bottom: 1.5rem; /* mb-6 */
    opacity: 0.3;
    color: #F9B101;
    line-height: 1;
    display: block;
}

/* Who We Are Quote Text */
.who-we-are-quote-text {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 1.5rem; /* text-2xl = 1.5rem = 24px */
    font-weight: 700; /* font-bold */
    line-height: 1.75; /* leading-relaxed */
    margin-bottom: 1.5rem; /* mb-6 */
    color: #fff;
    display: block;
}

/* Ensure specific selectors override any defaults */
.who-we-are-quote-box .who-we-are-quote-text,
.who-we-are-quote-content .who-we-are-quote-text,
.who-we-are-quote-box p.who-we-are-quote-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.75;
    font-family: var(--font-primary);
    color: #fff;
}

.who-we-are-quote-line {
    width: 64px; /* w-16 = 4rem = 64px */
    height: 4px; /* h-1 = 0.25rem = 4px */
    background: #F9B101;
    border-radius: 9999px; /* rounded-full */
    margin-top: 1rem; /* mt-4 */
}

.who-we-are-quote-attribution {
    font-size: 0.875rem; /* text-sm */
    color: rgba(255, 255, 255, 0.7); /* text-white/70 */
    margin-top: 1rem; /* mt-4 */
    font-weight: 500; /* font-medium */
}

/* ============================================
   OUR IMPACT AREAS Section (Dark Background with Image)
   ============================================ */
.impact-areas-section {
    background-color: hsl(var(--foreground)) !important; /* Dark background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: hsl(var(--primary-foreground)) !important; /* Light text */
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.impact-areas-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.impact-areas-section .container {
    position: relative;
    z-index: 2;
    padding:5rem 0;
}

.impact-areas-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: normal;
}

/* Impact Cards - Dark Gray with White Text and Hover Animations */
.impact-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1) !important; /* bg-white/10 */
    border: 1px solid rgba(255, 255, 255, 0.2); /* border-white/20 */
    border-radius: var(--radius);
    padding: 0;
    transition: all 0.5s ease; /* duration-500 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.impact-card-hover {
    transition: all 0.5s ease; /* transition-all duration-500 */
}

.impact-card-hover:hover {
    background: rgba(255, 255, 255, 0.2) !important; /* hover:bg-white/20 */
    border-color: #F9B101 !important; /* hover:border-[#F9B101] */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    /* Removed translateY to prevent card movement */
}

.impact-card-content-wrapper {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Icon Wrapper - Centered */
.card-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem; /* mb-6 */
}

/* Icon Container - Yellow Circle */
.card-icon-container {
    width: 7rem; /* w-16 = 64px */
    height: 7rem; /* h-16 = 64px */
    background: #F9B101; /* bg-[#F9B101] */
    border-radius: 50%; /* rounded-full */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* shadow-xl */
    transition: transform 0.3s ease; /* transition-transform duration-300 */
}

.impact-card-hover:hover .card-icon-container {
    transform: scale(1.1); /* group-hover:scale-110 */
}

.card-icon-container svg,
.card-icon-container .card-icon-image {
    width: 7rem; /* w-8 = 32px */
    height: 7rem; /* h-8 = 32px */
    color: #ffffff;
    fill: #ffffff;
    border-radius: 50%;
}

.card-icon-container .card-icon-image {
    object-fit: contain;
}

.card-icon-container svg {
    stroke: currentColor;
}

/* Text Content */
.card-text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* space-y-3 */
    flex-grow: 1;
}

.impact-card .card-category {
    font-size: 0.75rem; /* text-xs */
    font-weight: 700; /* font-bold */
    text-transform: uppercase;
    letter-spacing: 0.05em; /* tracking-wider */
    color: #F9B101 !important; /* text-[#F9B101] */
    margin-bottom: 0;
    font-family: var(--font-primary);
}

.impact-card .card-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 900; /* font-black */
    margin-bottom: 0;
    color: #ffffff !important;
    line-height: 1.2; /* leading-tight */
    font-family: var(--font-primary);
}

.impact-card .card-content {
    color: rgba(255, 255, 255, 0.7); /* text-white/70 */
    line-height: 1.75; /* leading-relaxed */
    margin-bottom: 0;
    font-size: 0.875rem; /* text-sm */
    font-weight: 400;
    font-family: var(--font-primary);
}

.impact-card .card-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.75;
    font-weight: 400;
}

.impact-card .card-content p:last-child {
    margin-bottom: 0;
}

/* Metric Badge at Bottom of Card */
.impact-card .card-metric {
    padding-top: 0.5rem; /* pt-2 */
    margin-top: auto;
}

.impact-card .card-metric-text {
    display: inline-block;
    background: rgba(249, 177, 1, 0.2); /* bg-[#F9B101]/20 */
    color: #F9B101; /* text-[#F9B101] */
    font-weight: 700; /* font-bold */
    font-size: 0.75rem; /* text-xs */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    border-radius: 9999px; /* rounded-full */
    font-family: var(--font-primary);
}

/* Horizontal Line Animation on Hover */
.card-hover-line {
    
    height: 4px; /* h-1 */
    background: #F9B101; /* bg-[#F9B101] */
    border-radius: 9999px; /* rounded-full */
    transform: scaleX(0); /* scale-x-0 */
    transform-origin: center; /* Center the scale animation */
    transition: transform 0.5s ease; /* transition-transform duration-500 */
    width: 98%;
    position: absolute;
    bottom: 0;
    left: 1%;
}

.impact-card-hover:hover .card-hover-line {
    transform: scaleX(1); /* group-hover:scale-x-100 */
}

/* Activate underline on hover for activity cards as well */
.activity-card:hover .card-hover-line {
    transform: scaleX(1);
}

/* Explore All Programs Button */
.impact-areas-explore-wrapper {
    margin-top: 5rem;
}

.btn-explore-all-programs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #F9B101 !important;
    color: #000000 !important;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 177, 1, 0.3);
    font-family: var(--font-primary);
}

.btn-explore-all-programs:hover {
    background-color: #ffc832 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 177, 1, 0.4);
    color: #000000 !important;
}

.btn-arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   REAL STORIES Section
   ============================================ */
.stories-section {
    padding: 6rem 0; /* py-24 */
    background: linear-gradient(135deg, #ffffff 0%, rgba(249, 177, 1, 0.08) 50%, rgba(231, 76, 60, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative SVGs */
.stories-decorative-svg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.stories-svg-top-right {
    top: 5rem; /* top-20 */
    right: 2.5rem; /* right-10 */
    width: 8rem; /* w-32 */
    height: 8rem; /* h-32 */
    color: rgba(231, 76, 60, 0.2); /* text-[#E74C3C]/20 */
    transform: rotate(12deg);
}

.stories-svg-bottom-left {
    bottom: 5rem; /* bottom-20 */
    left: 2.5rem; /* left-10 */
    width: 6rem; /* w-24 */
    height: 6rem; /* h-24 */
    color: rgba(249, 177, 1, 0.2); /* text-[#F9B101]/20 */
    transform: rotate(-12deg);
}

.stories-section .container {
    position: relative;
    z-index: 10;
}

/* Stories Header */
.stories-header {
    margin-bottom: 5rem; /* mb-20 */
    transition: all 1s ease; /* duration-1000 */
}

.stories-main-title {
    font-size: clamp(2.5rem, 4vw, 3rem); /* text-4xl sm:text-5xl */
    font-weight: 900; /* font-black */
    color: hsl(var(--foreground)); /* text-foreground */
    margin-bottom: 1rem; /* mb-4 */
    line-height: 1.2;
}

.stories-highlight-text {
    color: #F9B101; /* text-[#F9B101] */
    font-family: var(--font-handwritten);
    font-size: clamp(3.75rem, 7vw, 4.5rem); /* text-6xl sm:text-7xl */
    position: relative;
    display: inline-block;
}

.stories-underline-svg {
    position: absolute;
    bottom: -0.5rem; /* -bottom-2 */
    left: 0;
    width: 100%;
    height: 20px;
}

.stories-underline-path {
    animation: drawPath 2s ease-out;
}

@keyframes drawPath {
    from {
        stroke-dasharray: 300;
        stroke-dashoffset: 300;
    }
    to {
        stroke-dasharray: 300;
        stroke-dashoffset: 0;
    }
}

.stories-subtitle-text {
    font-size: 1.25rem; /* text-xl */
    color: rgba(0, 0, 0, 0.7); /* text-foreground/70 */
    margin-top: 2rem; /* mt-8 */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75; /* leading-relaxed */
}

/* Stories List */
.stories-list {
    max-width: 72rem; /* max-w-6xl */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem; /* space-y-12 */
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* gap-8 */
    transition: all 0.7s ease; /* duration-700 */
}

@media (min-width: 768px) {
    .story-item {
        flex-direction: row;
    }
    
    .story-item-reverse {
        flex-direction: row-reverse;
    }
}

/* Story Card Box */
.story-card-box {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 2rem; /* p-8 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
    border: 4px solid rgba(249, 177, 1, 0.2); /* border-4 border-[#F9B101]/20 */
    position: relative;
    transition: all 0.3s ease; /* duration-300 */
}

.story-card-box:hover {
    border-color: #F9B101; /* hover:border-[#F9B101] */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* hover:shadow-2xl */
}

@media (min-width: 768px) {
    .story-card-box {
        margin-right: 2rem; /* md:mr-8 */
    }
    
    .story-card-box-right {
        margin-right: 0;
        margin-left: 2rem; /* md:ml-8 */
    }
}

.story-quote-icon {
    position: absolute;
    top: -1rem; /* -top-4 */
    left: -1rem; /* -left-4 */
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    color: #F9B101;
    fill: #F9B101;
    background: #ffffff;
    border-radius: 50%;
    padding: 0.5rem; /* p-2 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

.story-quote-text {
    font-size: 1.125rem; /* text-lg */
    color: rgba(0, 0, 0, 0.8); /* text-foreground/80 */
    font-style: italic;
    line-height: 1.75; /* leading-relaxed */
    margin-bottom: 1.5rem; /* mb-6 */
    position: relative;
    z-index: 10;
}

.story-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.story-name-text {
    font-weight: 700; /* font-bold */
    font-size: 1.25rem; /* text-xl */
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.story-location-text {
    font-size: 0.875rem; /* text-sm */
    color: rgba(0, 0, 0, 0.6); /* text-foreground/60 */
}

.story-status-badge {
    background: rgba(249, 177, 1, 0.1); /* bg-[#F9B101]/10 */
    padding: 0.5rem 1rem; /* px-4 py-2 */
    border-radius: 9999px; /* rounded-full */
}

.story-status-text {
    font-size: 0.875rem; /* text-sm */
    font-weight: 700; /* font-bold */
    color: #F9B101; /* text-[#F9B101] */
}

.story-card-underline {
    position: absolute;
    bottom: -0.75rem; /* -bottom-3 */
    left: 2rem; /* left-8 */
    width: 8rem; /* w-32 */
    height: 8px;
}

/* Story Number Circle */
.story-number-wrapper {
    flex-shrink: 0;
}

.story-number-circle-container {
    position: relative;
    width: 12rem; /* w-48 */
    height: 12rem;
}

@media (min-width: 768px) {
    .story-number-circle-container {
        width: 14rem; /* md:w-56 */
        height: 14rem; /* md:h-56 */
    }
}

.story-number-circle {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F9B101 0%, #E74C3C 50%, #C0392B 100%); /* bg-gradient-to-br */
    border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%; /* rounded-[40%_60%_70%_30%/60%_40%_60%_40%] */
    animation: float 6s ease-in-out infinite;
}

.story-circle-rotate-3 {
    transform: rotate(3deg);
}

.story-circle-rotate-6 {
    transform: rotate(6deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.story-circle-rotate-3 {
    animation: floatRotate3 6s ease-in-out infinite;
}

@keyframes floatRotate3 {
    0%, 100% {
        transform: translateY(0px) rotate(3deg);
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

.story-circle-rotate-6 {
    animation: floatRotate6 6s ease-in-out infinite;
}

@keyframes floatRotate6 {
    0%, 100% {
        transform: translateY(0px) rotate(6deg);
    }
    50% {
        transform: translateY(-20px) rotate(11deg);
    }
}

.story-number-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 1.5rem; /* p-6 */
}

.story-number-value {
    font-size: 3.75rem; /* text-6xl */
    font-weight: 900; /* font-black */
    line-height: 1;
}

.story-number-label {
    font-size: 0.875rem; /* text-sm */
    font-weight: 700; /* font-bold */
    margin-top: 0.5rem; /* mt-2 */
}

/* Stories Footer */
.stories-footer {
    margin-top: 5rem; /* mt-20 */
    text-align: center;
    transition: all 1s ease; /* duration-1000 delay-700 */
}

.stories-footer-handwritten {
    font-size: 1.5rem; /* text-2xl */
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem; /* mb-6 */
    font-family: var(--font-handwritten);
}

.stories-footer-subtext {
    font-size: 1.25rem; /* text-xl */
    color: rgba(0, 0, 0, 0.7); /* text-foreground/70 */
    margin-bottom: 2rem; /* mb-8 */
}

.stories-donation-amount {
    color: #F9B101 !important; /* text-[#F9B101] */
}

.stories-footer-main {
    font-size: 1.5rem; /* text-2xl */
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem; /* mb-6 */
    font-family: var(--font-handwritten);
}

.stories-footer-main strong,
.stories-footer-main .stories-donation-amount {
    color: #F9B101 !important; /* text-[#F9B101] */
}

/* ============================================
   OUR IMPACT Section (Light Yellow Background)
   ============================================ */
.impact-stats-section {
    /* bg-gradient-to-br from-[#F9B101]/10 via-[#E74C3C]/5 to-white */
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.10) 0%, rgba(231, 76, 60, 0.05) 50%, rgba(255, 255, 255, 1) 100%);
    padding: 5rem 0; /* py-24 */
    position: relative;
    overflow: hidden;
}

/* Decorative blurred circles similar to reference */
.impact-stats-blur-top-right {
    position: absolute;
    top: 5rem; /* top-20 */
    right: 5rem; /* right-20 */
    width: 24rem; /* w-96 */
    height: 24rem; /* h-96 */
    background: rgba(231, 76, 60, 0.15); /* #E74C3C/15 */
    border-radius: 50%;
    filter: blur(48px); /* blur-3xl */
    pointer-events: none;
}

.impact-stats-blur-bottom-left {
    position: absolute;
    bottom: 5rem; /* bottom-20 */
    left: 5rem; /* left-20 */
    width: 20rem; /* w-80 */
    height: 20rem; /* h-80 */
    background: rgba(249, 177, 1, 0.15); /* #F9B101/15 */
    border-radius: 50%;
    filter: blur(48px); /* blur-3xl */
    pointer-events: none;
}

.impact-stats-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-top: 1rem;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* gap-8 */
    margin-top: 6rem; /* mt-12 */
    margin-bottom: 6rem; /* mb-12 */
    max-width: 64rem; /* max-w-5xl */
    margin-left: auto;
    margin-right: auto;
}

.impact-stat-card {
    padding: 2rem; /* p-8 */
    text-align: center;
    /* bg-gradient-to-br from-[#F9B101]/10 to-[#E74C3C]/10 */
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.10) 0%, rgba(231, 76, 60, 0.10) 100%);
    border-radius: 1rem; /* rounded-2xl */
    border: 2px solid rgba(249, 177, 1, 0.30); /* border-2 border-[#F9B101]/30 */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10); /* shadow-xl */
    transition: all 0.5s ease; /* duration-500 */
}

.impact-stat-card:hover {
    border-color: #F9B101; /* hover:border-[#F9B101] */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* hover:shadow-2xl */
}

.impact-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.impact-stat-value {
    /* text-4xl md:text-5xl lg:text-6xl font-black text-[#F9B101] */
    font-size: clamp(2.25rem, 3.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: #F9B101;
    font-family: var(--font-primary);
    position: relative;
}

/* Animated underline bar under the number */
.impact-stat-value::after {
    content: '';
    display: block;
    width: 4rem; /* w-16 */
    height: 0.25rem; /* h-1 */
    background: #F9B101;
    border-radius: 9999px;
    margin: 1rem auto 0; /* mt-4 mx-auto */
    transform: scaleX(1);
    transform-origin: center;
    transition: transform 0.5s ease;
}

.impact-stat-card:hover .impact-stat-value::after {
    transform: scaleX(1.2); /* group-hover:w-full like effect */
}

.impact-stat-label {
    /* text-sm md:text-base text-foreground uppercase tracking-wide font-bold */
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-family: var(--font-primary);
}

.impact-stats-quote-box {
    margin-top: 4rem; /* mt-16 */
    padding: 2.5rem; /* p-10 */
    background: #ffffff; /* bg-white */
    border-radius: 1rem; /* rounded-2xl */
    border: 2px solid rgba(249, 177, 1, 0.20); /* border-2 border-[#F9B101]/20 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-XL */
    max-width: 768px; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
}

.impact-stats-quote-content {
    position: relative;
}

.impact-stats-quote-text,.impact-stats-quote-text p {
    font-size: 1.25rem;
    
    line-height: 1.75;
    color: hsl(var(--foreground));
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
}



.impact-stats-quote blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

/* Where We Work Section */
.country-card {
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius);
}

.country-flag {
    margin-bottom: 1rem;
}

.country-flag img {
    width: 80px;
    height: auto;
}

.country-name {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Action Section */
.action-card{
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.action-card .card-title{
    text-align: center;
    font-size: 1.75rem;
    font-weight: 900;
    transition: letter-spacing 0.3s ease, transform 0.3s ease;
}

/* Lift on hover */
.action-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Slight text expansion on hover */
.action-card:hover .card-title{
    letter-spacing: 0.02em; /* wider tracking */
    transform: scale(1.02);
}

/* Animated bottom underline */
.action-card::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px; /* h-2 */
    background: #F9B101;
    border-bottom-left-radius: 1rem; /* rounded-b-2xl feel */
    border-bottom-right-radius: 1rem;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
}

.action-card:hover::after{
    transform: scaleX(1);
}

/* Icon subtle scale on hover if present */
.action-card .card-icon{   
    background: #fab101;
    width: 6rem;
    height: 6rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    margin: 0 auto;
    color: #fff;
    margin-bottom: 2rem;

}
.action-card .card-icon svg,
.action-card .card-icon img{
    transition: transform 0.3s ease;
}

.action-card:hover .card-icon svg,
.action-card:hover .card-icon img{
    transform: scale(1.1);
}
.action-banner {
    padding: 3rem;
    border-radius: calc(var(--radius) + 4px);
    text-align: center;
}

.action-banner-content {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CTA heading and subtitle styling to match reference */
.action-section h2 {
    font-weight: 900; /* font-black */
    color: #ffffff;
}

.action-section .action-subtitle {
    color: rgba(255, 255, 255, 0.9); /* text-white/90 */
    font-weight: 400; /* font-medium */
    text-align: center;
    font-size: 1.25rem;
}
.donate-card-action{
    width: 100%;
}
.donate-card-action .btn{
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
}
/* Ensure banner heading looks bold inside the yellow banner */
.action-banner h3 {
    font-weight: 900; /* font-black */
}

/* Call To Action (CTA) Section - match reference behavior */
.action-section {
    position: relative; /* relative */
    overflow: hidden; /* overflow-hidden */
    background: linear-gradient(135deg, rgba(249, 177, 1, 0.1) 0%, rgba(231, 76, 60, 0.05) 50%, rgba(255, 255, 255, 1) 100%);
    padding: 5rem 0;
}

/* Decorative blurred circles */
.action-blur-top-left {
    position: absolute;
    top: 0; /* top-0 */
    left: 0; /* left-0 */
    width: 24rem; /* w-96 */
    height: 24rem; /* h-96 */
    background: rgba(249, 177, 1, 0.10); /* bg-[#F9B101]/10 */
    border-radius: 50%; /* rounded-full */
    filter: blur(48px); /* blur-3xl */
    pointer-events: none;
}

.action-blur-bottom-right {
    position: absolute;
    right: 0; /* right-0 */
    bottom: 0; /* bottom-0 */
    width: 500px; /* w-[500px] */
    height: 500px; /* h-[500px] */
    background: rgba(249, 177, 1, 0.10); /* bg-[#F9B101]/10 */
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 7rem;
}

.activity-card {
    display: flex;
    flex-direction: column;
    padding: 0px;
}
.activity-card .activity-date, .activity-card .activity-title, .activity-card .activity-description, .activity-card .activity-link {
    padding: 0 1.5rem;
}

.activity-image {
    margin-bottom: 1rem;
}

.activity-date {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.activity-title {
    margin-bottom: 1rem;
    height: 60px;
}

.activity-link {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.activity-link:hover {
    text-decoration: underline;
}

/* ============================================
   Pagination Styles
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding: 1rem 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    line-height: 1;
}

.pagination .page-numbers:hover:not(.current):not(.dots) {
    color: hsl(var(--accent));
    background-color: hsl(var(--secondary));
    border-color: hsl(var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 177, 1, 0.15);
}

.pagination .page-numbers.current {
    color: hsl(var(--background));
    background-color: hsl(var(--accent));
    border-color: hsl(var(--accent));
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(249, 177, 1, 0.25);
    cursor: default;
}

.pagination .page-numbers.dots {
    border: none;
    background-color: transparent;
    cursor: default;
    min-width: auto;
    padding: 0.5rem 0.25rem;
}

.pagination .page-numbers.dots:hover {
    transform: none;
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
    color: hsl(var(--foreground));
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    min-width: auto;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--background));
    border-color: hsl(var(--accent));
}

.pagination .page-numbers.prev:disabled,
.pagination .page-numbers.next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive pagination */
@media (max-width: 640px) {
    .pagination {
        gap: 0.375rem;
    }
    
    .pagination .page-numbers {
        min-width: 2.5rem;
        height: 2.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .pagination .page-numbers.prev,
    .pagination .page-numbers.next {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .pagination .page-numbers.dots {
        padding: 0.5rem 0.125rem;
        min-width: 1.5rem;
    }
}

/* ============================================
   Newsletter Single Post Layout
   ============================================ */
.newsletter-single-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.newsletter-single-content {
    min-width: 0; /* Prevents grid overflow */
}

.newsletter-single-content .entry-header {
    margin-bottom: 2rem;
}

.newsletter-single-content .entry-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: hsl(var(--foreground));
}

.newsletter-single-content .entry-meta {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-single-content .entry-meta i {
    margin-right: 0.25rem;
}

.newsletter-single-content .entry-content {
    line-height: 1.8;
    color: hsl(var(--foreground));
    word-wrap: break-word;
}

.newsletter-single-content .entry-content p {
    margin-bottom: 1.5rem;
}

/* PDF Viewer Container and Shortcode Support */
.newsletter-single-content .entry-content .dflip-container,
.newsletter-single-content .entry-content [class*="dflip"],
.newsletter-single-content .entry-content [id*="dflip"],
.newsletter-single-content .entry-content .df-flipbook,
.newsletter-single-content .entry-content iframe,
.newsletter-single-content .entry-content embed,
.newsletter-single-content .entry-content object {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    margin: 2rem 0;
    min-height: 600px;
    display: block;
}

/* Ensure dflip books container is visible */
.newsletter-single-content .entry-content .dflip-books {
    width: 100%;
    margin: 2rem 0;
}

.newsletter-single-content .entry-content * {
    max-width: 100%;
}

/* Debug: Make sure shortcode output is visible */
.newsletter-single-content .entry-content [class*="dflip"] {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Post Navigation */
.newsletter-single-content .post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.newsletter-single-content .post-navigation > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.newsletter-single-content .nav-previous span,
.newsletter-single-content .nav-next span {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
}

.newsletter-single-content .nav-next {
    text-align: right;
}

.newsletter-single-content .nav-previous a,
.newsletter-single-content .nav-next a {
    color: hsl(var(--accent));
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.newsletter-single-content .nav-previous a:hover,
.newsletter-single-content .nav-next a:hover {
    text-decoration: underline;
    color: hsl(var(--accent));
    opacity: 0.8;
}

/* Single Post Hero Meta */
.single-post-meta {
    margin-top: 1rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.single-page-images-grid{
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
    z-index: 10;
    padding: 0 7rem;
}

.single-post-meta .cat-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.single-post-meta i {
    margin-right: 0.25rem;
}

/* Entry Footer */
.newsletter-single-content .entry-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.newsletter-single-content .entry-footer .tag-links {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.newsletter-single-content .entry-footer .tag-links i {
    margin-right: 0.5rem;
}

.newsletter-single-content .entry-footer .tag-links a {
    color: hsl(var(--accent));
    text-decoration: none;
    margin-right: 0.5rem;
}

.newsletter-single-content .entry-footer .tag-links a:hover {
    text-decoration: underline;
}

/* Newsletter Sidebar */
.newsletter-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.newsletter-sidebar .sidebar-widget {
    background-color: hsl(var(--card));
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
}

.newsletter-sidebar .widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid hsl(var(--accent));
    color: hsl(var(--foreground));
}

.related-newsletters-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-newsletter-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--border));
    transition: var(--transition-smooth);
}

.related-newsletter-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-newsletter-link {
    text-decoration: none;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    padding: 0.5rem;
    border-radius: var(--radius);
}

.related-newsletter-link:hover {
    background-color: hsl(var(--secondary));
    transform: translateX(4px);
}

.related-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: hsl(var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.related-thumbnail-placeholder {
    background-color: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    font-size: 1.5rem;
}

.related-newsletter-link:hover .related-thumbnail img {
    transform: scale(1.1);
}

.related-content {
    flex: 1;
    min-width: 0;
}

.related-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
    line-height: 1.3;
    transition: var(--transition-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-newsletter-link:hover .related-title {
    color: hsl(var(--accent));
}

.related-date {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.related-date i {
    font-size: 0.6875rem;
}

/* Responsive Newsletter Single Layout */
@media (max-width: 1024px) {
    .newsletter-single-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-sidebar {
        position: static;
        max-height: none;
    }
    
    .newsletter-single-content .post-navigation > div {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-single-content .nav-next {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .newsletter-single-content .entry-title {
        font-size: 1.5rem;
    }
    
    .newsletter-sidebar .sidebar-widget {
        padding: 1.25rem;
    }
    
    .newsletter-sidebar .widget-title {
        font-size: 1.125rem;
    }
    
    .related-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .related-title {
        font-size: 0.8125rem;
    }
    
    .related-date {
        font-size: 0.6875rem;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Section Header */
.contact-section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin: 0;
}

/* Contact Page Layout */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-form-section {
    min-width: 0;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    position: relative;
}



.contact-content {
    margin-bottom: 2rem;
    color: hsl(var(--foreground));
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: hsl(var(--card));
    transition: var(--transition-smooth);
}



/* Style Contact Form 7 and other form plugins */
.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-wrapper p {
    margin: 0;
}

.contact-form-wrapper label {
    display: block;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="url"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 0.5rem 1.25rem;
    border: 2px solid #F9B101;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-primary);
    color: hsl(var(--foreground));
    background: hsl(var(--background));
    transition: var(--transition-smooth);
    line-height: 1.5;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    outline: none;
    border-color: #F9B101;
    box-shadow: 0 0 0 3px rgba(249, 177, 1, 0.1);
}

.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button[type="submit"],
.contact-form-wrapper .wpcf7-submit {
    background: #F9B101;
    color: #000000;
    border: 2px solid #F9B101;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(249, 177, 1, 0.3);
    width: 100%;
    display: inline-block;
    font-family: var(--font-primary);
}

.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper button[type="submit"]:hover,
.contact-form-wrapper .wpcf7-submit:hover {
    background: rgba(249, 177, 1, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 177, 1, 0.4);
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ok {
    padding: 1rem;
    border-radius: var(--radius);
    margin: 1rem 0;
    font-size: 0.9375rem;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.contact-form-wrapper .wpcf7-validation-errors {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.contact-form-placeholder {
    padding: 3rem 2rem;
    background: hsl(var(--secondary));
    border-radius: var(--radius);
    text-align: center;
    color: hsl(var(--muted-foreground));
    border: 2px dashed hsl(var(--border));
}

/* Contact Info Section */
.contact-info-section {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.contact-info-header {
    margin-bottom: 1rem;
}

.contact-info-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 3rem;
    position: relative;
}



.contact-info-section-subtitle {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
    line-height: 1.6;
}

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

.contact-info-card {
    display: grid;
    grid-template-columns: 0.5fr 3fr;
    background: #fef8f4;
    padding: 1.5rem 2rem;
    border-radius: calc(var(--radius) + 4px);
    border: 2px solid #fab101;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    align-items: center;
    gap: 1rem;
}
.contact-info-card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card .card-content {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F9B101, #E74C3C);
    transform: scaleY(0);
    transition: var(--transition-smooth);
}

.contact-info-card .card-content p {
    margin-bottom: 0 !important;
    line-height: 1.5;
}
.contact-us-hero-grid{
    grid-template-columns: 2fr !important;
}

// .contact-info-card:hover {
//     transform: translateY(-6px);
//     box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
//     border-color: #F9B101;
// }

// .contact-info-card:hover::before {
//     transform: scaleY(1);
// }

.contact-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #F9B101, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(249, 177, 1, 0.3);
    transition: var(--transition-smooth);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(249, 177, 1, 0.4);
}

.contact-info-icon i {
    color: #000000;
    font-size: 1.375rem;
    font-weight: 600;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: hsl(var(--foreground));
    line-height: 1.3;
}

.contact-info-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    margin-bottom: 0 !important;
}

.contact-info-text a {
    color: #F9B101;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
    display: inline-block;
}

.contact-info-text a:hover {
    color: #E74C3C;
    transform: translateX(4px);
}

.contact-info-text-phone {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    margin-bottom: 0 !important;
}

.contact-info-placeholder {
    padding: 2rem;
    background: hsl(var(--secondary));
    border-radius: var(--radius);
    text-align: center;
    color: hsl(var(--muted-foreground));
    border: 2px dashed hsl(var(--border));
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section {
        position: static;
    }
    
    .contact-section-header {
        margin-bottom: 3rem;
    }
    
    .contact-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section-header {
        margin-bottom: 2rem;
    }
    
    .contact-section-title {
        font-size: 1.75rem;
    }
    
    .contact-section-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    
    .contact-form-title,
    .contact-info-section-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.75rem;
    }
    
    .contact-info-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .contact-info-icon i {
        font-size: 1.125rem;
    }
    
    .contact-form-wrapper input[type="submit"],
    .contact-form-wrapper button[type="submit"],
    .contact-form-wrapper .wpcf7-submit {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* ============================================
   Donate Page Styles
   ============================================ */

/* Donate Hero Content */
.donate-hero-content {
    margin-top: 1.5rem;
    color: hsl(var(--foreground));
    line-height: 1.8;
    font-size: 1.125rem;
}

.donate-hero-actions {
    margin-top: 2rem;
}

/* Donation Amounts Section */
.donate-amounts-section {
    padding: 5rem 0;
    position: relative;
}

.donate-section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.donate-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.2;
}

.donate-section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin: 0;
}

.donate-amounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.donate-amount-card {
    background: hsl(var(--card));
    border: 2px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 4px);
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.donate-amount-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F9B101, #E74C3C);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.donate-amount-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #F9B101;
}

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

.donate-amount-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9B101;
    margin-right: 0.25rem;
}

.donate-amount-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    line-height: 1;
}

.donate-amount-custom {
    border-style: dashed;
}

.donate-amount-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    display: block;
}

.donate-amount-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #F9B101;
    line-height: 1;
}

.donate-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* Ways to Give Section */
.ways-to-give-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ways-to-give-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.ways-to-give-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F9B101, #E74C3C);
    border-radius: 2px;
}

.ways-to-give-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin: 0;
}

.ways-to-give-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.way-to-give-card {
    background: hsl(var(--card));
    border: 2px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 4px);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.way-to-give-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F9B101, #E74C3C);
    transform: scaleY(0);
    transition: var(--transition-smooth);
}

.way-to-give-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: #F9B101;
}

.way-to-give-card:hover::before {
    transform: scaleY(1);
}

.way-to-give-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #F9B101, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(249, 177, 1, 0.3);
    transition: var(--transition-smooth);
}

.way-to-give-card:hover .way-to-give-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(249, 177, 1, 0.4);
}

.way-to-give-icon svg {
    width: 2rem;
    height: 2rem;
    color: #000000;
    stroke-width: 2.5;
}

.way-to-give-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.3;
}

.way-to-give-content {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
}

.way-to-give-action {
    margin-top: auto;
    width: 100%;
}

.way-to-give-action .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive Donate Page */
@media (max-width: 1024px) {
    .donate-section-title,
    .ways-to-give-title {
        font-size: 2rem;
    }
    
    .ways-to-give-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donate-amounts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .donate-amounts-section {
        padding: 3rem 0;
    }
    
    .donate-section-title,
    .ways-to-give-title {
        font-size: 1.75rem;
    }
    
    .donate-section-subtitle,
    .ways-to-give-subtitle {
        font-size: 1rem;
    }
    
    .donate-amounts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .donate-amount-card {
        min-height: 120px;
        padding: 1.5rem 1rem;
    }
    
    .donate-amount-value {
        font-size: 2rem;
    }
    
    .way-to-give-card {
        padding: 2rem 1.5rem;
    }
    
    .way-to-give-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .way-to-give-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

@media (max-width: 480px) {
    .donate-amounts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-amount-card {
        min-height: 100px;
        padding: 1.25rem 0.75rem;
    }
    
    .donate-amount-value {
        font-size: 1.75rem;
    }
    
    .donate-amount-currency {
        font-size: 1.25rem;
    }
}

/* Activities Section */
/* Reusable blurred decorative circles for sections without Tailwind */
.activity-blur-top-right {
	position: absolute;
	top: 5rem;         /* top-20 */
	right: 5rem;       /* right-20 */
	width: 18rem;      /* w-72 */
	height: 18rem;     /* h-72 */
	background: rgba(231, 76, 60, 0.15); /* #E74C3C/15 */
	border-radius: 50%;
	filter: blur(48px); /* blur-3xl */
	pointer-events: none;
}

.activity-blur-bottom-left {
	position: absolute;
	bottom: 5rem;      /* bottom-20 */
	left: 5rem;        /* left-20 */
	width: 16rem;      /* w-64 */
	height: 16rem;     /* h-64 */
	background: rgba(249, 177, 1, 0.15); /* #F9B101/15 */
	border-radius: 50%;
	filter: blur(48px); /* blur-3xl */
	pointer-events: none;
}

/* Ensure the parent section is positioned for absolute children */
.activity-section {
	position: relative;
	overflow: hidden;
}

/* Responsive adjustments for Lovable design */
@media (max-width: 968px) {
    .hero-yellow-curve {
        width: 100%;
        opacity: 0.5;
    }
    
    .who-we-are-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Stories Section Mobile */
    .stories-section {
        padding: 4rem 0;
    }
    
    .stories-decorative-svg {
        display: none; /* Hide decorative SVGs on mobile */
    }
    
    .stories-header {
        margin-bottom: 3rem;
    }
    
    .stories-main-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .stories-highlight-text {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .stories-list {
        gap: 2rem;
    }
    
    .story-item {
        flex-direction: column !important;
        align-items: center;
        gap: 1.5rem;
    }
    
    .story-card-box {
        margin-right: 0 !important;
        margin-left: 0 !important;
        width: 100%;
    }
    
    .story-number-circle-container {
        width: 10rem;
        height: 10rem;
    }
    
    .story-number-value {
        font-size: 2.5rem;
    }
    
    .stories-footer {
        margin-top: 3rem;
    }
    
    /* Impact areas section mobile */
    .impact-areas-section {
        padding: 4rem 0;
    }
    
    .impact-areas-section .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section .grid > div {
    padding: 2rem;
    text-align: center;
}

.stats-section .grid > div > div:first-child {
    margin-bottom: 1rem;
}

/* ============================================
   Testimonial Section
   ============================================ */
.testimonial-section .card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.testimonial-section .card .card-action {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

/* ============================================
   Comprehensive Mobile Responsive Styles
   Tailwind CSS to Standard CSS Conversion
   ============================================ */

/* Mobile First - Base Styles (0-639px) */
@media (max-width: 639px) {
    /* Container adjustments for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section Mobile */
    .hero-section-lovable {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-section-lovable .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        max-width: 100%;
    }
    
    .hero-section-lovable .hero-title {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1.125rem; /* text-lg - matches base */
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-stat {
        width: 100%;
    }
    
    /* Who We Are Mobile */
    .who-we-are-section {
        padding: 3rem 0;
    }
    
    .who-we-are-section .container {
        padding: 0 1rem;
    }
    
    .who-we-are-title-wrapper {
        margin-bottom: 2rem;
    }
    
    .who-we-are-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .who-we-are-subtitle {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: 1rem;
    }
    
    .who-we-are-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .who-we-are-bullets {
        gap: 0.5rem;
    }
    
    .bullet-item {
        font-size: 1rem;
    }
    
    .bullet-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .who-we-are-quote-box {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .who-we-are-quote-mark {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .who-we-are-quote-text {
        font-size: 1.125rem; /* Smaller on mobile */
        margin-bottom: 1rem;
    }
    
    /* Blur circles - smaller on mobile */
    .who-we-are-blur-top-right {
        width: 200px;
        height: 200px;
    }
    
    .who-we-are-blur-bottom-left {
        width: 300px;
        height: 300px;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    /* Impact Areas Mobile */
    .grid.grid-4,
    .grid.grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Stories Mobile */
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-number-circle {
        width: 100px;
        height: 100px;
        margin: 1rem auto;
    }
    
    .story-number-value {
        font-size: 2rem;
    }
    
    /* Impact Stats Mobile */
    .impact-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .impact-stat-card {
        padding: 1.5rem;
    }
    
    .impact-stat-value {
        font-size: 2.5rem;
    }
    
    .impact-stats-quote-box {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .impact-stats-quote-text {
        font-size: 1.125rem;
    }
    
    /* Where We Work Mobile */
    .country-card {
        padding: 1.5rem;
    }
    
    /* Action Section Mobile */
    .action-banner {
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-banner-content {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Activities Mobile */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .activity-card {
        padding: 1rem;
    }
    
    /* Content sections mobile */
    .content-section {
        padding: 3rem 0;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }
    
    /* Cards mobile */
    .card {
        padding: 1.5rem;
    }
}

/* Small devices (640px and up) - sm breakpoint */
@media (min-width: 640px) and (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-section-lovable {
        min-height: 70vh;
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .who-we-are-content-grid {
        gap: 2rem;
    }
    
    .grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
}

/* Medium devices (768px and up) - md breakpoint */
@media (min-width: 768px) {
    .container {
        padding: 0 clamp(1.5rem, 3vw, 2rem);
    }
    
    .hero-section-lovable {
        min-height: 80vh;
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .who-we-are-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .grid.grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.5rem, 2vw, 2rem);
    }
    
    .grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.5rem, 2vw, 2rem);
    }
    
    /* Stories section already uses flex layout, no grid needed */
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.5rem, 2vw, 2rem);
    }
    
    .content-section {
        padding: 5rem 0;
    }
}

/* Large devices (1024px and up) - lg breakpoint */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .grid.grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* Stories section already uses flex layout, no grid needed */
    
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 900px;
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 6rem 0;
    }
}

/* Medium-Large screens (1000px - 1279px) - Optimized spacing */
@media (min-width: 1000px) and (max-width: 1279px) {
    .container {
        padding: 0 clamp(2.5rem, 6vw, 3.5rem);
        max-width: calc(100% - 7rem);
    }
    
    /* Better spacing for content sections */
    .content-section {
        padding: 5.5rem 0;
    }
    
    /* Optimize grid gaps for medium screens */
    .grid.grid-4 {
        gap: clamp(1.75rem, 2.5vw, 2.25rem);
    }
    
    .grid.grid-3 {
        gap: clamp(1.75rem, 2.5vw, 2.25rem);
    }
    
    /* Hero section spacing */
    .hero-section-lovable {
        padding: 4.5rem 0;
    }
    
    .hero-content {
        padding: 2rem 0;
        max-width: 90%;
    }
    
    /* Who we are section spacing */
    .who-we-are-content-grid {
        gap: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    /* Stories section spacing */
    .stories-section {
        padding: 5.5rem 0;
    }
    
    .stories-list {
        gap: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    /* Impact areas spacing */
    .impact-areas-section {
        padding: 5.5rem 0;
    }
    
    /* Cards padding adjustment */
    .card {
        padding: clamp(2rem, 3vw, 2.5rem);
    }
    
    /* Impact stats spacing */
    .impact-stats-grid {
        gap: clamp(1.75rem, 2.5vw, 2.25rem);
    }
}

/* Large screens (1280px - 1399px) - Fine-tuned spacing */
@media (min-width: 1280px) and (max-width: 1399px) {
    .container {
        max-width: 1280px;
        padding: 0 clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .content-section {
        padding: 6rem 0;
    }
    
    .grid.grid-4 {
        gap: 2.25rem;
    }
    
    .grid.grid-3 {
        gap: 2.25rem;
    }
    
    .who-we-are-content-grid {
        gap: 3.5rem;
    }
    
    .stories-list {
        gap: 3.5rem;
    }
    
    .hero-content {
        max-width: 95%;
    }
}

/* Extra Large devices (1400px and up) - xl breakpoint */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .hero-content {
        max-width: 1100px;
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 5rem 0;
    }
    
    /* Better spacing for large screens */
    .grid.grid-4 {
        gap: 3rem;
    }
    
    .grid.grid-3 {
        gap: 3rem;
    }
    
    .who-we-are-content-grid {
        gap: 5rem;
    }
    
    .stories-list {
        gap: 5rem;
    }
}

/* Ultra-wide screens (1920px and up) - Maximum spacing */
@media (min-width: 1920px) {
    .container {
        max-width: 1440px;
        padding: 0 4rem;
    }
    
    .hero-content {
        max-width: 1200px;
    }
    
    .content-section {
        padding: 8rem 0;
    }
}

/* Responsive adjustments for sections */
@media (max-width: 768px) {
    .section-content-with-image {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .layout-image-right .section-content-with-image {
        direction: ltr;
    }
    
    .section-content-wrapper {
        margin-top: 1.5rem;
    }
    
    .stats-section .grid {
        grid-template-columns: 1fr !important;
    }
    
    .testimonial-section .grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Button responsive */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Hero actions stack on mobile */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Impact stats grid mobile */
    .impact-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}
