:root {
    --primary-color: #1B5E20; /* Deep Green */
    --primary-light: #2E7D32;
    --accent-color: #A3D65C; /* Pistachio Green */
    --accent-light: #C9F29B;
    --text-color: #1A1A1A;
    --text-muted: #666;
    --white: #ffffff;
    --bg-light: #F9FAFB;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.4);
}

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

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

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

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

/* Form Elements */
.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: rgba(255,255,255,0.9);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.top-contact a, .top-social a {
    color: inherit;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-social a { margin-right: 15px; }
.top-social a:last-child { margin-right: 0; }

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: padding 0.3s;
}

header.is-scrolled {
    padding: 10px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-corporate {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(27, 94, 32, 0.1);
}

.btn-corporate:hover {
    border-color: var(--primary-color);
    background: rgba(27, 94, 32, 0.05);
}

.btn-donate {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    animation: pulse-soft 2s infinite;
}

.btn-donate:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}

.btn-donate::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.btn-donate:hover::after {
    opacity: 1;
    transform: scale(1);
}

@keyframes pulse-soft {
    0% { box-shadow: 0 0 0 0 rgba(27, 94, 32, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(27, 94, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(27, 94, 32, 0); }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-color: #000;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Stats Section */
.stats-banner {
    background: var(--white);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Features */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(163, 214, 92, 0.2);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(27, 94, 32, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Campaigns Grid (Updated) */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Old Campaign Card Removed - See New Corporate Design below */


/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

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

.project-card:hover .project-bg {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* About */
.about-section {
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-shape {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.5;
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-list i {
    color: var(--primary-color);
    background: rgba(27, 94, 32, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* CTA */
.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-bottom {
    background: #000;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Mobile Elements Defaults */
.mobile-only-action { display: none; }

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    gap: 5px;
}

.nav-item i { font-size: 1.2rem; margin-bottom: 2px; }
.nav-item.active { color: var(--primary-color); }

.nav-item-center-btn {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: -25px;
    box-shadow: 0 5px 15px rgba(163, 214, 92, 0.4);
    border: 4px solid white;
}

/* Modern Slider CSS */
.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-color);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 40px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translate3d(0, -40px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp { animation-name: fadeInUp; }
.fadeInDown { animation-name: fadeInDown; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
    .campaigns-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Gallery Page Styles - Modern Redesign */
.page-hero {
    background: #0f2e18;
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
.page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; line-height: 1.1; }
.page-hero p { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin: 0 auto; }
.page-hero .badge { background: rgba(255,255,255,0.15); color: #A3D65C; padding: 5px 15px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; margin-bottom: 15px; display: inline-block; }

.gallery-section {
    padding: 60px 0;
    background: #f9fafb;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 12px 35px;
    border: none;
    background: white;
    color: var(--text-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 1rem;
}
.tab-btn i { font-size: 1.1rem; }
.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.3);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 25px;
    display: none;
}
.gallery-masonry.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 25px;
    break-inside: avoid;
    transform: translateZ(0); /* Fix for webkit rendering */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: white;
}
.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.gallery-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.3);
}
.gallery-item:hover .gallery-overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-info h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-info h3 {
    transform: translateY(0);
}

/* Video Specific */
.video-thumb {
    width: 100%;
    height: auto;
    display: block;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 3;
    padding-left: 5px; /* Center play icon visual */
}
.gallery-item:hover .play-button {
    background: var(--primary-color);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox Modern */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-container {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lightbox.active .lightbox-container { transform: scale(1); }

.lightbox-content {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2001;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* Responsive Columns */
@media (max-width: 992px) {
    .gallery-masonry { column-count: 2; }
}
@media (max-width: 576px) {
    .gallery-masonry { column-count: 1; }
    .page-hero h1 { font-size: 2.2rem; }
}

/* Responsive */
@media (max-width: 992px) {
    .header-actions .desktop-only { display: none; }
    .mobile-toggle { 
        display: flex; 
        align-items: center; 
        justify-content: center;
        width: 42px; /* Slightly smaller */
        height: 42px;
        background: var(--primary-color); /* Colored background for better visibility */
        border-radius: 8px; /* Square with rounded corners */
        color: white;
        transition: all 0.3s;
        box-shadow: 0 4px 10px rgba(27, 94, 32, 0.2);
    }
    .mobile-toggle:hover, .mobile-toggle.active {
        background: var(--primary-light);
        transform: translateY(-2px);
    }
    
    .logo a {
        font-size: 1.2rem; /* Adjusted font size */
    }
    .logo img {
        max-height: 40px; /* Adjusted logo height */
    }

    .nav-menu {
        position: fixed;
        top: 70px; /* Adjusted top */
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 10px 0; /* Reduced padding */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        gap: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        max-height: calc(100vh - 80px); /* Prevent overflow */
        overflow-y: auto;
    }
    .nav-menu.active {
        transform: translateY(0);
    }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    /* ... delays ... */

    .nav-menu li:last-child { border: none; }
    .nav-menu a {
        display: block;
        padding: 15px 20px; /* More horizontal padding */
        font-size: 1rem;
        color: var(--text-color);
        font-weight: 600;
    }
    .nav-menu a:hover, .nav-menu a.active {
        color: var(--primary-color);
        padding-left: 25px;
        background: rgba(27, 94, 32, 0.03);
    }
    .mobile-only-action { display: block; margin-top: 10px; padding: 15px 20px; border-top: 1px dashed #eee; }
    .mobile-only-action .btn-corporate { width: 100%; justify-content: center; }
    
    .hero-title { font-size: 2.2rem; }
    .stats-banner { grid-template-columns: 1fr 1fr; margin-top: -30px; padding: 25px; gap: 20px; }
    .features-grid, .campaigns-grid, .projects-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand, .footer-links, .footer-contact { align-items: center; }
    .footer-contact li { justify-content: center; }
    .footer-social { justify-content: center; }
    
    .hero-section { height: auto; min-height: 450px; padding-bottom: 50px; }
    .hero-container { flex-direction: column; text-align: center; justify-content: center; padding-top: 60px; }
    .hero-content { position: relative; transform: none; top: auto; left: auto; padding: 0 20px; margin-bottom: 30px; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; } /* Wrap buttons */
    .quick-order-widget { display: none; }
    
    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
    }
    footer {
        padding-bottom: 90px;
    }
}

@media (max-width: 576px) {
    .top-bar { display: none; }
    .stats-banner { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
    .hero-buttons { flex-direction: column; }
    .hero-content { padding: 0 15px; }
    .btn { width: 100%; }
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
}

/* Page Hero */
.page-hero {
    background: #0f2e18;
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; line-height: 1.1; }
.page-hero p { font-size: 1.1rem; opacity: 0.8; max-width: 500px; }
.page-hero .badge { background: rgba(255,255,255,0.15); color: #A3D65C; padding: 5px 15px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; margin-bottom: 15px; display: inline-block; }
.page-hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}
.page-hero-card h3 { font-size: 1.2rem; margin-bottom: 15px; color: #A3D65C; }
.page-hero-card ul { list-style: none; padding: 0; }
.page-hero-card li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; opacity: 0.9; }
.page-hero-card li i { color: #A3D65C; width: 20px; }

@media (max-width: 768px) {
    .page-hero-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.2rem; }
    .page-hero-card { display: none; }
}

/* Track Page */
.track-shell { max-width: 800px; margin: 0 auto; }
.track-search-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
.track-input { display: flex; gap: 10px; }
.track-input .form-control { height: 55px; font-size: 1.1rem; border-width: 2px; }
.track-input .btn { padding: 0 40px; font-size: 1.1rem; }

.track-result { margin-top: 40px; }

/* Timeline */
.track-timeline {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.track-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    position: relative;
    margin: 40px 0 60px;
}
.track-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 1s ease;
}
.track-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -63px; /* Align dots with bar */
}
.track-step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100px;
}
.track-dot {
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s;
}
.track-step.active .track-dot { border-color: var(--primary-color); background: var(--primary-color); color: white; }
.track-step.completed .track-dot { border-color: var(--primary-color); background: var(--primary-color); color: white; }
.track-label {
    display: block;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.track-step.active .track-label { color: var(--primary-color); font-weight: 800; }

.track-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 30px;
}
.track-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.track-card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 10px; }
.track-list { list-style: none; }
.track-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #f0f0f0; font-size: 0.95rem; }
.track-list li:last-child { border: none; }
.track-list strong { color: var(--text-color); font-weight: 600; }

.media-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
.media-item { border-radius: 10px; overflow: hidden; height: 100px; background: #f0f0f0; position: relative; }
.track-image { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.3s; }
.track-image:hover { transform: scale(1.1); }
.empty-media { text-align: center; padding: 30px; background: #f9f9f9; border-radius: 10px; color: #999; }
.empty-media i { font-size: 2rem; margin-bottom: 10px; }

@media (max-width: 768px) {
    .track-input { flex-direction: column; }
    .track-details-grid { grid-template-columns: 1fr; }
    .track-search-card { margin-top: -30px; }
}

/* Donate Page */
.donate-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.donate-card { background: white; border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.form-step-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }
.form-step-title .step-num { width: 35px; height: 35px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.radio-card { cursor: pointer; position: relative; }
.radio-card input { position: absolute; opacity: 0; }
.radio-content { border: 2px solid #f0f0f0; border-radius: 15px; padding: 20px; text-align: center; transition: all 0.3s; }
.radio-card input:checked + .radio-content { border-color: var(--primary-color); background: rgba(27, 94, 32, 0.05); }
.radio-icon { font-size: 2rem; color: var(--text-muted); margin-bottom: 10px; display: block; }
.radio-card input:checked + .radio-content .radio-icon { color: var(--primary-color); }
.radio-title { font-weight: 700; display: block; margin-bottom: 5px; }
.radio-price { color: var(--primary-color); font-weight: 800; font-size: 1.1rem; }

@media (max-width: 768px) {
    .donate-grid { grid-template-columns: 1fr; }
    .radio-group { grid-template-columns: 1fr; }
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 15px; /* Extra padding for safe area */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #999;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.mobile-bottom-nav .nav-item-center-btn {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px; /* Pop out effect */
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.4);
    border: 4px solid #fff;
}
.mobile-bottom-nav .nav-item-center-btn i {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FEE2E2;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #D1FAE5;
}

.alert-info {
    background: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #DBEAFE;
}

.alert i {
    font-size: 1.2rem;
}

/* RESPONSIVE TABLE (CARD VIEW) */
@media screen and (max-width: 768px) {
  table, thead, tbody, th, td, tr { display: block; }
  thead tr { position: absolute; top: -9999px; left: -9999px; }
  tr { border: 1px solid #e0e0e0; margin-bottom: 15px; border-radius: 12px; background: #fff; padding: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
  td { border: none; border-bottom: 1px solid #f0f0f0; position: relative; padding-left: 40%; padding-top: 10px; padding-bottom: 10px; text-align: right; display: flex; justify-content: space-between; align-items: center; min-height: 40px; }
  td:before { position: absolute; top: 50%; left: 0; width: 35%; padding-right: 10px; white-space: nowrap; transform: translateY(-50%); text-align: left; font-weight: 600; color: var(--primary-color); content: attr(data-label); font-size: 0.9rem; }
  td:last-child { border-bottom: none; }
  /* Mobile specific adjustments */
  .btn { width: 100%; justify-content: center; margin-top: 5px; }
}

/* Donation Page Styles */
.donate-section { background-color: var(--bg-light); padding: 60px 0; }
.donation-wizard { background: var(--white); border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); overflow: hidden; max-width: 900px; margin: 0 auto; }
.wizard-steps { display: flex; justify-content: space-between; padding: 30px 50px; background: #f8f9fa; border-bottom: 1px solid #eee; position: relative; }
.wizard-steps::after { content: ''; position: absolute; top: 50%; left: 50px; right: 50px; height: 2px; background: #e0e0e0; z-index: 1; transform: translateY(-50%); }
.step-item { position: relative; z-index: 2; background: #f8f9fa; padding: 0 15px; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5; transition: all 0.3s; }
.step-item.active { opacity: 1; }
.step-item.completed .step-icon { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.step-icon { width: 45px; height: 45px; background: white; border: 2px solid #e0e0e0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text-muted); transition: all 0.3s; }
.step-item.active .step-icon { border-color: var(--primary-color); color: var(--primary-color); box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1); }
.step-info { text-align: center; }
.step-number { font-size: 0.75rem; color: var(--text-muted); display: block; }
.step-title { font-weight: 600; font-size: 0.9rem; color: var(--text-color); }
.wizard-content { padding: 40px 50px; }
/* CAMPAIGN CARD (Corporate Redesign) */
.campaign-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.campaign-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.campaign-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.campaign-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.4;
}

.campaign-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.campaign-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* STATS SECTION */
.stats-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: inline-block;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ABOUT SECTION (Corporate) */
.about-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-color);
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(27, 94, 32, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    padding: 30px;
    border-radius: 20px;
    color: var(--primary-color);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 200px;
}

.badge-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.badge-text {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    display: block;
    margin-top: 5px;
}

/* Scoped Step Icons to avoid conflict */
.wizard-steps .step-icon {
    width: 45px;
    height: 45px;
}
.process-bar .step-icon {
    width: 50px;
    height: 50px;
}

@media (max-width: 991px) {
    .slide-title { font-size: 2.5rem; }
    
    .process-bar-container {
        position: relative;
        bottom: auto;
        margin-top: -50px; /* Overlap slightly */
        z-index: 20;
        padding: 0 15px;
    }

    .process-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px;
        border-radius: 16px;
        background: #fff; /* Solid background for better readability */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .process-step { width: 100%; }
    .step-divider { display: none; }
    
    .process-cta {
        width: 100%;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .process-cta .btn { width: 100%; }
    
    .hero-slider-section { 
        height: auto; 
        padding-bottom: 50px; /* Space for the process bar overlap */
    }
    
    .slide-content { 
        padding-bottom: 80px; 
        align-items: center; /* Center text vertically */
    }
    
    .hero-swiper {
        height: 600px; /* Fixed height for mobile slider */
    }
}
.wizard-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.selection-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.selection-card { cursor: pointer; position: relative; }
.selection-card input { position: absolute; opacity: 0; }
.selection-card-inner { border: 2px solid #e0e0e0; border-radius: 12px; padding: 20px; text-align: center; transition: all 0.3s; background: white; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.selection-card input:checked + .selection-card-inner { border-color: var(--primary-color); background: rgba(27, 94, 32, 0.02); box-shadow: 0 5px 15px rgba(27, 94, 32, 0.1); }
.selection-icon { font-size: 2rem; color: var(--text-muted); margin-bottom: 15px; }
.selection-card input:checked + .selection-card-inner .selection-icon { color: var(--primary-color); }
.selection-title { font-weight: 700; margin-bottom: 5px; color: var(--text-color); }
.selection-price { color: var(--primary-color); font-weight: 600; }
.wizard-footer { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; }
.donation-summary { background: #f8f9fa; padding: 25px; border-radius: 12px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed #e0e0e0; }
.summary-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.summary-total { font-size: 1.2rem; font-weight: 800; color: var(--primary-color); }

@media (max-width: 768px) { .wizard-steps { padding: 20px; } .wizard-steps::after { display: none; } .step-info { display: none; } .wizard-content { padding: 30px 20px; } }

/* HERO SLIDER STYLES */
.hero-slider-section {
    position: relative;
    height: 650px; /* Increased height for better impact */
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background: #000;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 80px; /* Space for process bar */
}

.slide-text {
    max-width: 600px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

.slide-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.slide-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.slide-btns {
    display: flex;
    gap: 15px;
}

/* Swiper Nav */
.swiper-button-next, .swiper-button-prev {
    color: white;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* PROCESS BAR (3 Steps) */
.process-bar-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.process-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.step-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.step-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-color);
}

.step-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

.step-divider {
    color: #e0e0e0;
    margin: 0 20px;
    font-size: 1.2rem;
}

.process-cta {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

/* Responsive */
@media (max-width: 991px) {
    .slide-title { font-size: 2.5rem; }
    
    .process-bar-container {
        position: relative;
        bottom: auto;
        margin-top: -50px;
        z-index: 20;
        padding: 0 15px;
    }

    .process-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px;
        border-radius: 16px;
        background: #fff; /* Solid background for readability */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        width: 100%;
        margin-bottom: 30px;
    }

    .process-step { width: 100%; }
    .step-divider { display: none; }
    
    .process-cta {
        width: 100%;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .process-cta .btn { width: 100%; }
    
    .hero-slider-section { 
        height: auto; 
        padding-bottom: 0;
    }
    
    .slide-content { 
        padding-bottom: 80px; 
        align-items: center; 
    }
    
    .hero-swiper {
        height: 600px;
    }

    /* Stats & About Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        padding-left: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .slide-title { font-size: 2rem; }
}

