/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-white: #ffffff;
    --clr-light: #f9f9f9;
    --clr-dark: #1a1a1a;
    --clr-gray: #6b7280;
    
    /* Brand Colors */
    --clr-primary: #53A736; /* Brand Green */
    --clr-primary-hover: #408529;
    --clr-secondary: #2C5A1D; /* Darker Green */
    --clr-accent: #EA4326; /* Brand Red/Orange */
    --clr-gold: #D4A353; /* Brand Gold */
    
    /* Typography */
    --font-primary: 'Tajawal', sans-serif;
    --font-heading: 'Tajawal', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--clr-dark);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.bg-light {
    background-color: var(--clr-light);
}

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

/* Utilities */
.glass {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bg-pattern {
    background-color: var(--clr-light);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2h2v4h20v2H22v2.5h-2zM0 20h2v20H0V20zm40 0h-2v20h2V20z' fill='%23D4A353' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Typography & Headings
   ========================================================================== */
.section-subtitle {
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-desc {
    color: var(--clr-gray);
    font-size: 1.125rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--clr-white);
    color: var(--clr-secondary);
}

.btn-secondary:hover {
    background-color: var(--clr-light);
    transform: translateY(-2px);
}

.btn-pill {
    background-color: var(--clr-white);
    color: var(--clr-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-pill:hover {
    background-color: var(--clr-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .btn-pill {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.nav-links a.btn-pill {
    color: var(--clr-dark);
}

.navbar.scrolled .nav-links a.btn-pill {
    color: var(--clr-white);
}

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

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--clr-secondary);
}

.navbar.scrolled .hamburger {
    color: var(--clr-secondary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--clr-white);
    z-index: 1001;
}

.logo span {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-gold);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--clr-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

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

.dropdown-menu a {
    color: var(--clr-secondary);
    padding: 0.75rem 1.5rem;
    display: block;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--clr-light);
    color: var(--clr-primary);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-secondary);
}

.mobile-nav-links .btn {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-top: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 78, 59, 0.9) 0%, rgba(6, 78, 59, 0.6) 50%, rgba(6, 78, 59, 0.2) 100%);
}

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

.hero-text {
    color: var(--clr-white);
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-stats-wrapper {
    width: 100%;
    margin-top: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    color: var(--clr-white);
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-dashboard {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.chart-container {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    height: 100%;
}

.chart-container h4 {
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.canvas-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    flex: 1;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--clr-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-image-cluster {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 450px;
    margin: 0 auto;
}

.main-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.circle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 6px solid var(--clr-white);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

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

.cluster-badge {
    position: absolute;
    bottom: 10%;
    left: -5%;
    padding: 1.25rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cluster-number {
    font-size: 2rem;
    color: var(--clr-dark);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.cluster-desc {
    font-size: 0.9rem;
    color: var(--clr-gray);
    font-weight: 500;
}

.cluster-avatars {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--clr-white);
    object-fit: cover;
    z-index: 1;
}

.avatar-icon {
    font-size: 32px !important;
    color: var(--clr-primary);
    border-radius: 50%;
    border: 2px solid var(--clr-white);
}

.about-extended {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Animated Carousel */
.animated-carousel {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-set {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-wrapper:hover .marquee-set {
    animation-play-state: paused;
}

.marquee-item {
    width: 260px;
    height: 360px;
    margin-right: -40px;
    flex-shrink: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 10px 15px 25px rgba(0,0,0,0.2); 
    transform: rotate(var(--rot));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 8px solid var(--clr-white);
    background: var(--clr-white);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.marquee-item:hover {
    transform: rotate(0deg) translateY(-20px) scale(1.05);
    z-index: 100 !important;
    box-shadow: 0 25px 40px rgba(0,0,0,0.3);
}

.marquee-item:hover img {
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .marquee-item {
        width: 180px;
        height: 260px;
        margin-right: -30px;
        border-width: 5px;
    }
}

.about-cards-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: center;
}

.leaf-card {
    position: relative;
    width: 100%;
    min-height: 350px;
    background: var(--clr-white);
    border-radius: 60px 0 60px 0;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(83, 167, 54, 0.1);
    overflow: hidden;
}

.leaf-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-gold));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.leaf-card .card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.leaf-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(83, 167, 54, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-primary);
    flex-shrink: 0;
    transition: all 0.6s ease;
}

.leaf-card .icon-wrapper span {
    font-size: 2rem;
}

.leaf-card h3 {
    font-size: 1.5rem;
    color: var(--clr-secondary);
    margin: 0.5rem 0 0 0;
    transition: all 0.6s ease;
    font-weight: 700;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--clr-body);
    margin-top: 0.5rem;
    text-align: center;
    transition: color 0.6s ease;
}

.card-list {
    text-align: left;
    margin-top: 0.5rem;
    padding-left: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--clr-body);
    transition: color 0.6s ease;
    list-style-type: disc;
}

.card-list li {
    margin-bottom: 0.4rem;
}

.card-list strong {
    transition: color 0.6s ease;
}

/* Hover state */
.leaf-card:hover {
    border-radius: 0 60px 0 60px;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(83, 167, 54, 0.3);
    border-color: transparent;
}

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

.leaf-card:hover .icon-wrapper {
    background: var(--clr-white);
    color: var(--clr-accent);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.leaf-card:hover h3, 
.leaf-card:hover .card-text, 
.leaf-card:hover .card-list, 
.leaf-card:hover .card-list strong {
    color: var(--clr-white);
}

/* ==========================================================================
   Impact Section
   ========================================================================== */
.tabs-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 3rem;
    background-color: var(--clr-white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.tabs-sidebar {
    background-color: var(--clr-primary);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid transparent;
    font-family: inherit;
}

.tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
}

.tab-btn.active {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border-left: 4px solid var(--clr-accent);
}

.tabs-content {
    padding: 3rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: var(--clr-secondary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.project-card {
    background-color: var(--clr-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(83, 167, 54, 0.3);
}

.project-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info h4 {
    color: var(--clr-secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.project-card:hover .project-info h4 {
    color: var(--clr-primary);
}

.project-info .short-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--clr-body);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-info .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.project-card:hover .project-info .read-more {
    gap: 0.75rem;
    color: var(--clr-accent);
}

.events-list {
    list-style: none;
}

.events-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    background-color: var(--clr-light);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.events-list .material-symbols-rounded {
    color: var(--clr-primary);
}

/* ==========================================================================
   Interactive Map Section
   ========================================================================== */
.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    background-color: var(--clr-white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    padding: 3rem;
    margin-top: 3rem;
}

.map-svg-container {
    width: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-map {
    color: var(--clr-gray);
    font-size: 1.25rem;
    font-weight: 500;
}

.lebanon-interactive-map {
    width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.lebanon-interactive-map path {
    fill: #e2e8f0;
    stroke: var(--clr-white);
    stroke-width: 2px;
    transition: var(--transition);
    cursor: pointer;
}

.lebanon-interactive-map path:hover,
.lebanon-interactive-map path.active {
    fill: var(--clr-primary);
    transform: translateY(-2px);
}

.glowing-dot {
    fill: #ff3b3b;
    pointer-events: none;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0% {
        r: 4;
        opacity: 1;
        stroke: rgba(255, 59, 59, 0.7);
        stroke-width: 0;
    }
    50% {
        r: 5;
        opacity: 0.8;
        stroke: rgba(255, 59, 59, 0.2);
        stroke-width: 8;
    }
    100% {
        r: 4;
        opacity: 1;
        stroke: rgba(255, 59, 59, 0);
        stroke-width: 0;
    }
}

.map-info-panel {
    background-color: var(--clr-light);
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-placeholder {
    text-align: center;
    color: var(--clr-gray);
}

.map-info-placeholder h3 {
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}

.region-data-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeIn 0.4s ease;
}

.region-data-card h3 {
    color: var(--clr-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clr-gold);
}

.region-data-card ul {
    list-style: none;
    padding: 0;
}

.region-data-card li {
    background-color: var(--clr-white);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--clr-primary);
    font-weight: 500;
    color: var(--clr-dark);
    box-shadow: var(--shadow-sm);
}



/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--clr-dark);
}

.contact-details .material-symbols-rounded {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

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

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    font-weight: 500;
    color: var(--clr-secondary);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .material-symbols-rounded {
    position: absolute;
    left: 1rem;
    color: var(--clr-gray);
    font-size: 1.25rem;
}

.input-with-icon input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--clr-light);
    border-radius: 0.5rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--clr-light);
    border-radius: 0.5rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.input-with-icon input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.contact-form .btn {
    align-self: flex-start;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.project-card {
    background: var(--clr-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.project-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--clr-accent);
    color: var(--clr-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info h4 {
    font-size: 1.25rem;
    color: var(--clr-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.project-card:hover .project-info h4 {
    color: var(--clr-primary);
}

.project-info .short-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--clr-body);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-info .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.project-card:hover .project-info .read-more {
    gap: 0.75rem;
    color: var(--clr-accent);
}

.events-list {
    list-style: none;
    padding: 0;
}

.events-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--clr-white);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.events-list li:hover {
    transform: translateX(10px);
}

.events-list .material-symbols-rounded {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

/* ==========================================================================
   Where We Work (Interactive Map Base)
   ========================================================================== */
.where-we-work {
    position: relative;
    overflow: hidden;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
    background: var(--clr-white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.map-svg-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.lebanon-interactive-map {
    width: 100%;
    max-height: 600px;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.1));
}

.map-region {
    transition: all 0.3s ease;
    cursor: pointer;
    transform-origin: center;
}

.map-region:hover {
    fill: var(--clr-primary) !important;
    transform: scale(1.02);
    filter: brightness(1.1);
}

.region-info-panel {
    background: var(--clr-light);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--clr-primary);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.region-info-panel h3 {
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.region-info-panel p {
    color: var(--clr-body);
    line-height: 1.6;
}

.region-stats {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

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

.r-stat .num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.r-stat .label {
    font-size: 0.85rem;
    color: var(--clr-dark);
}

/* ==========================================================================
   Contact CTA
   ========================================================================== */
.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-secondary) 100%);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIyIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDUpIi8+Cjwvc3ZnPg==') repeat;
    opacity: 0.5;
}

.contact-cta h2, .contact-cta p {
    color: var(--clr-white);
    position: relative;
    z-index: 2;
}

.contact-cta .btn {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding-top: 4rem;
    padding-bottom: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-white);
    text-decoration: none;
}

.footer-brand p {
    color: var(--clr-white);
    margin-top: 1rem;
    max-width: 300px;
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.footer-links h4, .footer-contact h4 {
    color: var(--clr-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--clr-primary);
    border-radius: 2px;
}

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

.footer-links a {
    color: var(--clr-white);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.footer-links a:hover {
    color: var(--clr-primary);
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.footer-contact p {
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Media Queries (Responsive Design)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3rem; }
    .hero-content { gap: 2rem; }
    .about-container { gap: 2rem; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cards-grid { flex-wrap: wrap; justify-content: center; }
    .tabs-container { grid-template-columns: 250px 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-text p {
        margin: 0 auto 2rem auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(6, 78, 59, 0.9) 0%, rgba(6, 78, 59, 0.8) 100%);
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        bottom: -1rem;
        left: 1rem;
        right: 1rem;
        text-align: center;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cards-grid {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .map-svg-container {
        min-height: 350px;
    }

    .lebanon-interactive-map {
        max-height: 400px;
    }
    
    .tabs-container {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        border-left: none;
        border-bottom: 4px solid transparent;
        text-align: center;
    }
    
    .tab-btn.active {
        border-left: none;
        border-bottom: 4px solid var(--clr-accent);
    }
    
    .tabs-content {
        padding: 2rem 1.5rem;
    }

    .chart-container {
        align-items: center;
        justify-content: center;
    }
    
    .canvas-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .marquee-item {
        width: 180px;
        height: 250px;
        margin-right: -20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 1rem auto;
    }
    
    .footer-contact p {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .amount-group { grid-template-columns: 1fr; }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    color: white;
}
