/* ============================================
   NGO DETAIL PAGE STYLES
   ============================================ */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Section Transitions */
section {
    scroll-margin-top: 80px;
}

/* Dark Theme Support - Use variables from base.html */
[data-theme="dark"] .hero-section:not(.has-cover) {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

[data-theme="dark"] .team-section,
[data-theme="dark"] .opportunities-section,
[data-theme="dark"] .testimonials-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .works-section,
[data-theme="dark"] .videos-section,
[data-theme="dark"] .contact-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .gallery-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .team-member-card,
[data-theme="dark"] .work-card,
[data-theme="dark"] .video-card,
[data-theme="dark"] .opportunity-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .contact-form-wrapper,
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-social-card,
[data-theme="dark"] .contact-map-wrapper {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .team-member-name,
[data-theme="dark"] .work-title,
[data-theme="dark"] .opportunity-title,
[data-theme="dark"] .testimonial-text,
[data-theme="dark"] .contact-form-title,
[data-theme="dark"] .contact-info-header,
[data-theme="dark"] .contact-social-title,
[data-theme="dark"] .contact-map-title,
[data-theme="dark"] .form-label,
[data-theme="dark"] .work-stat-value,
[data-theme="dark"] .opportunity-deadline-value,
[data-theme="dark"] .opportunity-start-value,
[data-theme="dark"] .contact-info-value {
    color: var(--text-primary);
}

[data-theme="dark"] .team-member-bio,
[data-theme="dark"] .work-description,
[data-theme="dark"] .opportunity-description,
[data-theme="dark"] .contact-form-description,
[data-theme="dark"] .gallery-subtitle,
[data-theme="dark"] .works-subtitle,
[data-theme="dark"] .opportunities-subtitle,
[data-theme="dark"] .videos-subtitle,
[data-theme="dark"] .testimonials-subtitle,
[data-theme="dark"] .contact-subtitle,
[data-theme="dark"] .team-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .gallery-item {
    background: var(--bg-secondary);
}

[data-theme="dark"] .gallery-caption {
    background: var(--card-bg);
    color: var(--text-primary);
    border-top-color: var(--border-color);
}

[data-theme="dark"] .form-control {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] .work-meta,
[data-theme="dark"] .opportunity-meta {
    background: var(--bg-secondary);
}

[data-theme="dark"] .work-category,
[data-theme="dark"] .work-location,
[data-theme="dark"] .opportunity-category,
[data-theme="dark"] .opportunity-commitment {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

[data-theme="dark"] .opportunity-details {
    background: var(--bg-secondary);
}

[data-theme="dark"] .opportunity-detail {
    color: var(--text-primary);
}

[data-theme="dark"] .work-stats,
[data-theme="dark"] .opportunity-dates {
    border-top-color: var(--border-color);
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .testimonial-footer {
    border-top-color: var(--border-color);
}

[data-theme="dark"] .contact-info-item {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .social-link,
[data-theme="dark"] .team-social-link {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

[data-theme="dark"] .success-stories-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .success-stories-title,
[data-theme="dark"] .success-stories-content {
    color: var(--text-primary);
}

[data-theme="dark"] .team-empty-state {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .team-empty-state-title {
    color: var(--text-primary);
}

[data-theme="dark"] .team-empty-state-text {
    color: var(--text-secondary);
}

[data-theme="dark"] .video-card-title {
    background: var(--bg-secondary);
    border-bottom-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .work-progress-bar {
    background: var(--bg-tertiary);
}

/* ============================================
   SECTION NAVIGATION DOTS
   ============================================ */

.section-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .section-nav {
    background: rgba(45, 45, 45, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-nav-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.section-nav-dot:hover {
    background: rgba(102, 126, 234, 0.6);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.section-nav-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Tooltip */
.section-nav-tooltip {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.section-nav-dot:hover .section-nav-tooltip {
    opacity: 1;
    visibility: visible;
    right: 2.5rem;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .section-nav {
        display: none;
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

/* ============================================
   SECTION 1: HERO HEADER
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Cover Image Background */
.hero-section.has-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for readability when cover image exists */
.hero-section.has-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 0;
}

/* Decorative circles - using different approach since ::after is used for wave */
.hero-decorative-circle-1,
.hero-decorative-circle-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-section:not(.has-cover) .hero-decorative-circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.hero-section:not(.has-cover) .hero-decorative-circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    bottom: 50px;
    left: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Logo Section */
.hero-logo-wrapper {
    flex-shrink: 0;
    animation: fadeIn 0.8s ease-out;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    background: white;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-logo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-logo-placeholder:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-logo-placeholder i {
    font-size: 4rem;
    color: #667eea;
}

/* Info Section */
.hero-info {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Badges Row */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out backwards;
    transition: all 0.3s ease;
}

.hero-badge:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-badge:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-badge:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-badge:hover {
    transform: translateY(-3px);
}

.badge-verified {
    background: rgba(255, 255, 255, 0.95);
    color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.badge-location {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.badge-year {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Mission & Vision */
.hero-mission {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-mission strong {
    font-weight: 700;
}

.hero-vision {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.hero-vision strong {
    font-weight: 700;
}

/* Focus Areas Tags */
.focus-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.focus-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.focus-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Action Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.9s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem 5rem 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-badges {
        justify-content: center;
    }

    .focus-areas {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   OUR TEAM SECTION
   ============================================ */

.team-section {
    background: white;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.team-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.team-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.team-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 0;
}

/* Team Member Card */
.team-member-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-member-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-member-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-member-card:nth-child(4) {
    animation-delay: 0.4s;
}

.team-member-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(102, 126, 234, 0.15), 0 12px 24px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .team-member-card {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .team-member-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 12px 24px rgba(102, 126, 234, 0.2);
}

/* Team Member Photo */
.team-member-photo-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-photo {
    transform: scale(1.1);
}

.team-member-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-member-photo-placeholder i {
    font-size: 5rem;
    color: white;
    opacity: 0.5;
}

/* Team Member Info */
.team-member-info {
    padding: 1.25rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.team-member-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-bio {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Team Member Social Links */
.team-member-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.team-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.team-social-link:hover::before {
    opacity: 1;
}

.team-social-link:hover i {
    color: white;
}

/* Empty State */
.team-empty-state {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px dashed #e9ecef;
}

.team-empty-state i {
    font-size: 3rem;
    color: #667eea;
    opacity: 0.3;
    margin-bottom: 0.75rem;
}

.team-empty-state-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.team-empty-state-text {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .team-section {
        padding: 2rem 1.5rem;
    }

    .team-title {
        font-size: 1.75rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .team-member-photo-wrapper {
        height: 220px;
    }

    .team-member-info {
        padding: 1rem;
    }
}

/* ============================================
   PHOTO GALLERY SECTION
   ============================================ */

.gallery-section {
    background: #ffffff;
    padding: 3rem 2rem;
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15), 0 10px 20px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .gallery-item {
    border-color: var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(102, 126, 234, 0.2);
}

/* Gallery Image Wrapper */
.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-view-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-view-btn {
    transform: translateY(0);
}

.gallery-view-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.gallery-view-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Gallery Caption */
.gallery-caption {
    padding: 1rem;
    background: white;
    color: #2d3748;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: white;
    font-size: 1rem;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 1.5rem;
    }

    .gallery-title {
        font-size: 1.75rem;
    }

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

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

/* ============================================
   PROGRAMS/WORKS GRID SECTION
   ============================================ */

.works-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 2rem;
    position: relative;
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.works-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.works-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.works-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Work Card */
.work-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.work-card:nth-child(1) { animation-delay: 0.1s; }
.work-card:nth-child(2) { animation-delay: 0.2s; }
.work-card:nth-child(3) { animation-delay: 0.3s; }
.work-card:nth-child(4) { animation-delay: 0.4s; }

.work-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(102, 126, 234, 0.15), 0 12px 24px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .work-card {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .work-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 12px 24px rgba(102, 126, 234, 0.2);
}

/* Work Image */
.work-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.work-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.work-image-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.5;
}

/* Status Badge */
.work-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.work-status-badge.ongoing {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.work-status-badge.completed {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

/* Work Content */
.work-content {
    padding: 1.5rem;
}

/* Work Meta */
.work-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.work-category,
.work-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    background: #f8f9fa;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
}

.work-category i,
.work-location i {
    font-size: 0.75rem;
    color: #667eea;
}

/* Work Title */
.work-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Work Description */
.work-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Work Stats */
.work-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1.25rem;
}

.work-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.work-stat i {
    font-size: 1.75rem;
    color: #667eea;
}

.work-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
}

.work-stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Work Progress */
.work-progress {
    margin-top: 1rem;
}

.work-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.work-progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3748;
}

.work-progress-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #667eea;
}

.work-progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.work-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .works-section {
        padding: 2rem 1.5rem;
    }

    .works-title {
        font-size: 1.75rem;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-image-wrapper {
        height: 200px;
    }

    .work-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   VOLUNTEER OPPORTUNITIES SECTION
   ============================================ */

.opportunities-section {
    background: white;
    padding: 3rem 2rem;
    position: relative;
}

.opportunities-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.opportunities-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.opportunities-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.opportunities-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Opportunity Card */
.opportunity-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out backwards;
}

.opportunity-card:nth-child(1) { animation-delay: 0.1s; }
.opportunity-card:nth-child(2) { animation-delay: 0.2s; }
.opportunity-card:nth-child(3) { animation-delay: 0.3s; }

.opportunity-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(102, 126, 234, 0.15), 0 12px 24px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

[data-theme="dark"] .opportunity-card {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .opportunity-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 12px 24px rgba(102, 126, 234, 0.2);
}

.opportunity-card.urgent {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
}

[data-theme="dark"] .opportunity-card.urgent {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
}

/* Urgent Badge */
.opportunity-urgent-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Opportunity Header */
.opportunity-header {
    margin-bottom: 1rem;
}

.opportunity-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.opportunity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.opportunity-category,
.opportunity-commitment {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    background: #f8f9fa;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
}

.opportunity-category i,
.opportunity-commitment i {
    font-size: 0.75rem;
    color: #667eea;
}

/* Opportunity Description */
.opportunity-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Opportunity Details */
.opportunity-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.opportunity-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #2d3748;
}

.opportunity-detail i {
    color: #667eea;
    font-size: 1rem;
    width: 20px;
}

/* Opportunity Dates */
.opportunity-dates {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    margin-bottom: 1.25rem;
}

.opportunity-deadline,
.opportunity-start {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.opportunity-deadline i,
.opportunity-start i {
    font-size: 1.5rem;
    color: #667eea;
}

.opportunity-deadline-label,
.opportunity-start-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opportunity-deadline-value,
.opportunity-start-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d3748;
}

/* Apply Button */
.opportunity-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.opportunity-apply-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    opacity: 0;
    transition: none;
    z-index: 0;
    pointer-events: none;
}

.opportunity-apply-btn * {
    position: relative;
    z-index: 1;
}

.opportunity-apply-btn i,
.opportunity-apply-btn span {
    position: relative;
    z-index: 1;
}

/* No hover effects - button stays the same on hover */
.opportunity-apply-btn:hover {
    cursor: pointer;
}

.opportunity-card.urgent .opportunity-apply-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.opportunity-card.urgent .opportunity-apply-btn i {
    color: white;
}

.opportunity-card.urgent .opportunity-apply-btn::before {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

/* No hover effects for urgent buttons either */

/* Responsive */
@media (max-width: 768px) {
    .opportunities-section {
        padding: 2rem 1.5rem;
    }

    .opportunities-title {
        font-size: 1.75rem;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .opportunity-card {
        padding: 1.5rem;
    }

    .opportunity-dates {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   VIDEOS SECTION
   ============================================ */

.videos-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 2rem;
    position: relative;
}

.videos-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.videos-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.videos-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.videos-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

/* Video Card */
.video-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }

.video-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15), 0 10px 20px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .video-card {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .video-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(102, 126, 234, 0.2);
}

/* Video Title */
.video-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.video-card-title i {
    color: #667eea;
    font-size: 1.5rem;
}

/* Video Embed Wrapper */
.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .videos-section {
        padding: 2rem 1.5rem;
    }

    .videos-title {
        font-size: 1.75rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   TESTIMONIALS & SUCCESS STORIES SECTION
   ============================================ */

.testimonials-section {
    background: white;
    padding: 3rem 2rem;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15), 0 10px 20px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .testimonial-card {
    background: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(102, 126, 234, 0.2);
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: #667eea;
    opacity: 0.1;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 0.95rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.testimonial-avatar {
    font-size: 2rem;
    color: #667eea;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
}

/* Success Stories */
.success-stories-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(118, 75, 162, 0.06) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-stories-section:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
    transform: translateY(-2px);
}

[data-theme="dark"] .success-stories-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .success-stories-section:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.success-stories-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-stories-title i {
    color: #667eea;
    font-size: 1.5rem;
}

.success-stories-content {
    font-size: 0.95rem;
    color: #2d3748;
    line-height: 1.8;
}

.success-stories-content p {
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 2rem 1.5rem;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .success-stories-section {
        padding: 1.5rem;
    }
}

/* ============================================
   CONTACT US SECTION
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .contact-form-wrapper {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .contact-form-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-form-title i {
    color: #667eea;
    font-size: 1.5rem;
}

.contact-form-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label .required {
    color: #dc3545;
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: #f8f9fa;
}

.form-control:hover {
    border-color: #dee2e6;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
    background: #ffffff;
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #adb5bd;
}

[data-theme="dark"] .form-control {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .form-control:hover {
    background: var(--bg-secondary);
}

[data-theme="dark"] .form-control:focus {
    background: var(--bg-secondary);
}

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

.contact-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-submit-btn:hover::before {
    opacity: 1;
}

.contact-submit-btn i,
.contact-submit-btn span {
    position: relative;
    z-index: 1;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Details */
.contact-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.12), 0 6px 16px rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .contact-info-card {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .contact-info-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 6px 16px rgba(102, 126, 234, 0.2);
}

.contact-info-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-header i {
    color: #667eea;
    font-size: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #667eea;
    font-size: 1.1rem;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: #2d3748;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info-value a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Social Links */
.contact-social-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.12), 0 6px 16px rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .contact-social-card {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .contact-social-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 6px 16px rgba(102, 126, 234, 0.2);
}

.contact-social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-social-title i {
    color: #667eea;
    font-size: 1.25rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: #f8f9fa;
    color: #667eea;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

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

/* Map Section */
.contact-map-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
    grid-column: 1 / -1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-map-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .contact-map-wrapper {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .contact-map-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-map-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-map-title i {
    color: #667eea;
    font-size: 1.25rem;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-wrapper {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1.5rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-form-wrapper,
    .contact-info-card,
    .contact-social-card,
    .contact-map-wrapper {
        padding: 1.25rem;
    }

    .social-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .contact-map {
        height: 250px;
    }
}
