/*/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-bottom: 0;
    padding: 0 !important; /* Override any section padding */
}*/

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-bottom: -5px; /* Force negative margin to eliminate gap */
    border-bottom: 0;
    background-color: var(--primary-color); /* Ensure no gray shows through */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent; /* Changed to transparent */
}

.hero-image {
    width: 100%;
    height: 100vh; /* Use viewport height for full coverage */
    object-fit: cover;
    filter: brightness(1.1) contrast(1.05);
    position: fixed; /* Keep fixed for parallax effect within hero section */
    top: 0;
    left: 0;
    right: 0;
    z-index: -1; /* Place it behind the content */
    margin: 0 auto; /* Center the image */
    display: block;
    max-width: none; /* Ensure the image can extend beyond its container if needed */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Use viewport height to cover entire viewport */
    background: var(--gradient-overlay);
    z-index: 0; /* Position above fixed image but below content */
}

.hero-content {
    position: relative;
    z-index: 10; /* Higher z-index to appear above the overlay */
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: var(--space-8) 0;
    animation: fadeIn 1.5s ease-in-out forwards;
    backdrop-filter: none;
    /* margin-top: var(--nav-height); Add margin to avoid overlap with navbar */
}

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

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.45) 100%);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    /* backdrop-filter removed */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: var(--font-4xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1), 
                1px 1px 3px rgba(0, 0, 0, 0.95), 
                0px 0px 20px rgba(0, 0, 0, 0.9),
                0px 0px 1px #ffffff;
    color: #ffffff;
}

.hero-subtitle {
    font-size: var(--font-xl);
    margin-bottom: var(--space-8);
    opacity: 1;
    line-height: var(--leading-relaxed);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1), 1px 1px 3px rgba(0, 0, 0, 0.95), 0px 0px 16px rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-weight: var(--font-semibold);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-5xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-2xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--font-6xl);
    }
}

/* Section connector to eliminate gap */
.section-connector {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px; /* Increased height */
    background: var(--primary-color); /* Solid color for simplicity */
    z-index: 20;
}

/* Maximum legibility improvements for hero text */
.hero-title,
.hero-subtitle {
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: var(--radius-xl);
    z-index: -1;
    /* backdrop-filter removed */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-title::before {
    display: none;
}

/* Ensure white text color */
.hero-title,
.hero-subtitle,
.hero-content * {
    color: #ffffff !important;
}

/* Additional text legibility improvements */
@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.35) 100%);
    }
    
    .hero-title {
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 1), 2px 2px 4px rgba(0, 0, 0, 0.95), 0px 0px 20px rgba(0, 0, 0, 0.9);
        font-weight: var(--font-extrabold);
        color: #ffffff !important;
    }
    
    .hero-subtitle {
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 1), 1px 1px 4px rgba(0, 0, 0, 0.95), 0px 0px 18px rgba(0, 0, 0, 0.9);
        font-weight: var(--font-bold);
        color: #ffffff !important;
    }
    
    .hero-text {
        background: rgba(0, 0, 0, 0.55);
        padding: var(--space-5);
        width: 90%;
        margin: 0 auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: none;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-12) 0;
    position: relative;
    z-index: 5;
    margin-top: -20px; /* Larger negative margin */
    border-top: 5px solid var(--primary-color); /* Add border to eliminate any potential gap */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

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

/* Benefits Section */
.benefits-section {
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    /* Ensure complete isolation from hero image */
    isolation: isolate;
    /* Add before pseudo-element for extra coverage */
    overflow: hidden;
    padding: var(--space-16) 0;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: -1;
}

.benefits-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-slide {
    display: none;
    text-align: center;
    padding: var(--space-8);
    background-color: #f9f9f9;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 var(--space-4);
    min-height: 400px;
}

.benefit-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.benefit-icon {
    font-size: var(--font-6xl);
    margin-bottom: var(--space-6);
    display: inline-block;
    background-color: rgba(236, 38, 143, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: var(--radius-full);
    color: var(--primary-color);
}

.benefit-content h3 {
    font-size: var(--font-2xl);
    margin-bottom: var(--space-6);
    color: var(--dark-gray);
    font-weight: var(--font-bold);
}

.benefit-content ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto var(--space-6);
    list-style-type: none;
}

.benefit-content li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(236, 38, 143, 0.1);
    color: #373435;
    font-size: var(--font-base);
    display: flex;
    align-items: center;
}

.benefit-content li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: var(--space-3);
    font-weight: var(--font-bold);
}

.benefit-content li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-primary);
    position: relative;
    z-index: 1;
    isolation: isolate;
    padding: var(--space-16) 0;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.15), inset 0 -5px 15px rgba(0, 0, 0, 0.15);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin: var(--space-8) 0 0;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .amedap-testimonials-grid.columns-2 {
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .testimonial-card {
        width: 100% !important;
        max-width: none !important;
    }
}

/* Activities Section */
.activities-section {
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

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

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

/* About Section */
.about-section {
    background: #FFFFFF;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(236, 38, 143, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 38, 143, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    position: relative;
    z-index: 1;
    isolation: isolate;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(236, 38, 143, 0.02) 0%, transparent 30%),
        linear-gradient(-45deg, rgba(236, 38, 143, 0.02) 70%, transparent 100%);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    align-items: start;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-20);
    }
}

/* New layout for values section */
.about-values {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Full width image container */
.about-image-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: var(--space-24);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-full .about-img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(236, 38, 143, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
    position: relative;
}

.about-image-full .about-img:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(236, 38, 143, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-image-full::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        rgba(236, 38, 143, 0.1) 0%, 
        rgba(236, 38, 143, 0.05) 50%,
        transparent 100%);
    border-radius: var(--radius-3xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.about-image-full:hover::before {
    opacity: 1;
}

.about-text {
    position: relative;
}

.about-text .section-title {
    font-size: var(--font-4xl);
    color: var(--dark-gray);
    margin-bottom: var(--space-8);
    font-weight: var(--font-bold);
    text-align: center;
    position: relative;
    line-height: var(--leading-tight);
}

@media (min-width: 1024px) {
    .about-text .section-title {
        text-align: left;
        font-size: var(--font-5xl);
    }
}

.about-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-3);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(236, 38, 143, 0.3);
}

@media (min-width: 1024px) {
    .about-text .section-title::after {
        left: 0;
        transform: none;
    }
}

.mission-vision {
    display: grid;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.mission, .vision, .values {
    padding: var(--space-8);
    border-left: 4px solid var(--primary-color);
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.7) 0%, 
            rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 32px rgba(236, 38, 143, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mission::before, .vision::before, .values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 38, 143, 0.03) 0%, transparent 50%);
    z-index: -1;
    transition: opacity var(--transition-base);
}

.mission:hover, .vision:hover, .values:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(236, 38, 143, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-color: rgba(236, 38, 143, 0.2);
}

.mission:hover::before, .vision:hover::before, .values:hover::before {
    opacity: 0.8;
}

.mission h3, .vision h3, .values h3 {
    color: var(--dark-gray);
    margin-bottom: var(--space-4);
    font-size: var(--font-2xl);
    font-weight: var(--font-bold);
    font-family: var(--font-primary);
    line-height: var(--leading-tight);
    text-shadow: 0 1px 2px rgba(236, 38, 143, 0.1);
}

.mission p, .vision p {
    color: #333;
    font-size: var(--font-lg);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-medium);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.01em;
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: var(--space-4);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    counter-reset: values-counter;
}

.values-list li {
    position: relative;
    padding: var(--space-4) var(--space-4) var(--space-4) var(--space-12);
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 4px 16px rgba(236, 38, 143, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(236, 38, 143, 0.15);
    transition: all var(--transition-base);
    font-weight: var(--font-semibold);
    font-size: var(--font-base);
    color: #333;
    letter-spacing: 0.01em;
    overflow: hidden;
    counter-increment: values-counter;
}

.values-list li::before {
    content: "★";
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white);
    box-shadow: 
        0 2px 8px rgba(236, 38, 143, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    font-weight: var(--font-bold);
}

.values-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 38, 143, 0.02) 0%, transparent 50%);
    z-index: -1;
    transition: opacity var(--transition-base);
    opacity: 0;
}

.values-list li:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(236, 38, 143, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-color: rgba(236, 38, 143, 0.25);
    color: var(--primary-color);
}

.values-list li:hover::before {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 4px 12px rgba(236, 38, 143, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.values-list li:hover::after {
    opacity: 1;
}

/* Alternative bullet styles for variety */
.values-list li:nth-child(2n)::before {
    content: "♦";
    font-size: 10px;
}

.values-list li:nth-child(3n)::before {
    content: "★";
    font-size: 9px;
}

.values-list li:nth-child(4n)::before {
    content: "▲";
    font-size: 8px;
}

.values-list li:nth-child(5n)::before {
    content: "●";
    font-size: 8px;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 600px;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(236, 38, 143, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
    position: relative;
}

.about-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(236, 38, 143, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        rgba(236, 38, 143, 0.1) 0%, 
        rgba(236, 38, 143, 0.05) 50%,
        transparent 100%);
    border-radius: var(--radius-3xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.about-image:hover::before {
    opacity: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    .about-section {
        padding: var(--space-16) 0;
    }
    
    .about-text .section-title {
        font-size: var(--font-3xl);
    }
    
    .mission, .vision, .values {
        padding: var(--space-6);
        backdrop-filter: blur(15px) saturate(160%);
        -webkit-backdrop-filter: blur(15px) saturate(160%);
    }
    
    .mission h3, .vision h3, .values h3 {
        font-size: var(--font-xl);
    }
    
    .mission p, .vision p {
        font-size: var(--font-base);
    }
    
    .values-list {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .values-list li {
        padding: var(--space-3) var(--space-3) var(--space-3) var(--space-10);
        font-size: var(--font-sm);
    }
    
    .values-list li::before {
        width: 20px;
        height: 20px;
        left: var(--space-3);
        font-size: 10px;
    }
    
    .about-img {
        height: 300px;
    }
}

/* Responsive adjustments for new layout */
@media (max-width: 1023px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .about-image-full {
        margin-top: var(--space-20);
    }
    
    .about-image-full .about-img {
        height: 400px;
    }
}

/* Desktop view - 2 columns for values list */
@media (min-width: 1024px) {
    .values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    
    /* Ensure about-values has same width as mission-vision */
    .about-values {
        width: 100%;
    }
    
    .values {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about-image-full {
        margin-top: var(--space-16);
    }
    
    .about-image-full .about-img {
        height: 300px;
    }
}

/* Tablet responsive adjustments for values */
@media (min-width: 768px) and (max-width: 1023px) {
    .values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }
    
    .values-list li {
        padding: var(--space-3) var(--space-3) var(--space-3) var(--space-10);
        font-size: var(--font-sm);
    }
    
    .values-list li::before {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-12);
    }
}

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

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-4);
    transition: transform var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .footer-logo {
        margin: 0 0 var(--space-4);
    }
}

.footer-title-fallback {
    font-size: var(--font-2xl);
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.footer-brand p {
    color: var(--accent-color);
    font-size: var(--font-sm);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h4 {
    color: var(--dark-gray);
    margin-bottom: var(--space-4);
    font-size: var(--font-lg);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-2);
    color: var(--accent-color);
    font-size: var(--font-sm);
}

.footer-column a {
    color: var(--accent-color);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-2);
    margin-bottom: var(--space-2);
}

.social-link {
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    font-size: var(--font-base);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover i {
    color: var(--white);
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1) rotate(10deg);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: var(--font-sm);
}

.footer-bottom p:last-child {
    margin-top: var(--space-2);
    font-size: var(--font-xs);
    opacity: 0.8;
}

/* Developer link styling */
.developer-link {
    display: inline-block;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    padding: var(--space-2);
    background: transparent;
    text-decoration: none;
}

.developer-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.developer-logo {
    height: 28px;
    width: auto;
    display: block;
    transition: all var(--transition-fast);
}

.developer-link:hover .developer-logo {
    transform: scale(1.05);
}

/* Footer navigation title in dark gray */
.footer-nav-title {
    color: var(--dark-gray) !important;
}

/* Logo hover effect to show white version */
.footer-logo-hover {
    position: relative;
}

.footer-logo-hover:hover {
    filter: brightness(0) invert(1);
}

/* Footer address section */
.footer-address {
    color: var(--accent-color);
    font-size: var(--font-sm);
}

.footer-address p {
    margin-bottom: var(--space-1);
    line-height: 1.4;
}

/* Leadership Section */
.leadership-section {
    background: #fafafa;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(236, 38, 143, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 38, 143, 0.02) 0%, transparent 50%);
    position: relative;
    z-index: 1;
    isolation: isolate;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color), var(--primary-dark));
    opacity: 0.8;
}

.leadership-section .section-title {
    color: var(--dark-gray);
    font-family: var(--font-primary);
    font-size: var(--font-4xl);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
}

.leadership-section .section-subtitle {
    color: #333333;
    font-size: var(--font-lg);
    font-weight: var(--font-bold);
    opacity: 1;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

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

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

.leadership-image {
    text-align: center;
    margin-top: var(--space-12);
}

.leadership-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* Leadership image responsive adjustments */
@media (min-width: 768px) {
    .leadership-img {
        border-radius: var(--radius-2xl);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 10px 20px rgba(236, 38, 143, 0.08);
    }
}

@media (max-width: 767px) {
    .leadership-image {
        margin-top: var(--space-8);
    }
    
    .leadership-img {
        border-radius: var(--radius-lg);
    }
}
