:root {
    /* Primary Colors - Ocean & Teal (Bluish-Greenish) */
    --primary-color: #0f766e;
    /* Deep Teal */
    --primary-light: #14b8a6;
    /* Vbrant Teal */
    --primary-dark: #115e59;
    /* Darker Ocean */
    --primary-gradient: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    /* Teal to Cyan */

    /* Secondary Colors - Warm Contrast */
    --secondary-color: #f59e0b;
    /* Amber Gold */
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;

    /* Glow & Effects */
    --glow-color: rgba(45, 212, 191, 0.6);
    /* Teal Glow */
    --glow-strong: rgba(6, 182, 212, 0.8);
    /* Cyan Glow */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Neutral Colors */
    --text-dark: #1e293b;
    /* Slate 800 */
    --text-light: #f8fafc;
    /* Slate 50 */
    --text-gray: #64748b;
    /* Slate 500 */
    --bg-light: #f0fdfa;
    /* Mint/Azure Tint */
    --bg-off-white: #e0f2f1;
    /* Soft Teal White */
    --bg-dark: #0f172a;
    /* Slate 900 */
    --bg-overlay: rgba(15, 23, 42, 0.7);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    /* Increased for better breathing room */
    --spacing-xl: 10rem;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows type: 'soft-layered' */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(15, 118, 110, 0.1), 0 2px 4px -1px rgba(15, 118, 110, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 118, 110, 0.1), 0 4px 6px -2px rgba(15, 118, 110, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 118, 110, 0.1), 0 10px 10px -5px rgba(15, 118, 110, 0.04);
    --shadow-glow: 0 0 20px var(--glow-color);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #1a1a1a;
    /* Enforce dark text */
    line-height: 1.6;
    background-color: #ffffff;
    /* Enforce white bg */
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-off-white);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px var(--glow-color);
    }

    to {
        box-shadow: 0 0 20px var(--glow-strong);
    }
}

/* Scroll Animations Enhanced */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(5px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stagger delay classes (add via JS or manually) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.25;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

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

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Button Styles - Enhanced */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.5);
}

.btn-secondary,
.btn-theme {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover,
.btn-theme:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    padding: 5px 0;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.btn-text:hover::after {
    width: 100%;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

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

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

.mt-4 {
    margin-top: 1.5rem;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.bg-gray {
    background-color: var(--bg-off-white);
}

.bg-light {
    background-color: #f3f7fd;
}

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

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    border-radius: 5px;
    display: none;
    z-index: 1001;
    min-width: 120px;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-dropdown li:hover {
    background-color: var(--bg-off-white);
    color: var(--primary-color);
}

/* Header Styles */
/* Header Styles - Enhanced */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

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

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

.nav-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 96, 100, 0.3);
    color: white !important;
}

.nav-btn::after {
    display: none;
    /* No underline for button */
}

/* Search Bar */
.search-item {
    position: relative;
}

#searchBtn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
}

.search-bar {
    position: absolute;
    top: 150%;
    right: 0;
    background: var(--bg-light);
    padding: 10px;
    box-shadow: var(--shadow-md);
    border-radius: 5px;
    display: flex;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    width: 250px;
}

.search-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-bar input {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    width: 100%;
    outline: none;
}

.search-bar button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 10px;
    border-radius: 4px;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section Enhanced */
.hero-slider {
    position: relative;
    height: 50vh;
    /* Increased height */
    overflow: hidden;
}

.slide .hero-overlay {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.85), rgba(8, 145, 178, 0.6));
    backdrop-filter: blur(2px);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Help Section */
.help-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-box .icon {
    width: 50px;
    height: 50px;
    background: var(--bg-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-box .info h5 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-box .info p {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.social-links-row {
    display: flex;
    gap: 10px;
}

.social-links-row a {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

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

.vision-mission-box {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.help-images {
    display: flex;
    gap: 20px;
}

.help-img-card {
    position: relative;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

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

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

.help-img-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.help-img-card .overlay h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Mission Grid (What We Do) - Enhanced */
.section-header h4 {
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.heading-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
}

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

/* Mission Grid Enhanced */
.mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    text-align: center;
    border: 1px solid rgba(15, 118, 110, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.card-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all var(--transition-bounce);
}

.mission-card:hover .card-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px var(--glow-color);
}

.mission-card i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.mission-card:hover i {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-card p {
    color: var(--text-gray);
    margin-bottom: auto;
    /* Pushes button to bottom */
    line-height: 1.7;
}

.read-more-btn {
    margin-top: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-btn:hover {
    gap: 15px;
    color: var(--secondary-color);
}

/* Sponsor Section - Enhanced */
.sponsor-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.sponsor-card {
    background: white;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.feature-list {
    margin-top: 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
    max-width: 300px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    background: rgba(251, 192, 45, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Redesigned Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    position: relative;
    border: 1px solid rgba(15, 118, 110, 0.05);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.team-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

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

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(15, 118, 110, 0.9);
    backdrop-filter: blur(5px);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px) rotate(10deg);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, white, var(--bg-light));
}

.team-info h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-info span {
    color: var(--primary-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Events Grid (Reconstructed) */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Event Card Styles Removed - Now handled by inline CSS in events.html */

/* Footer (Reconstructed) */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 5rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    color: #777;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Thumb shared styles (used by event cards) */
.thumb {
    position: relative;
    overflow: hidden;
    height: 320px;
}

/* Volunteer Card (Chairman) - Simple Layout */
.volunteer-card {
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

.volunteer-card .thumb {
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

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

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

.volunteer-card .info h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.volunteer-card .info span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Reduced padding for Help Section to close gap with Hero */
.help-section {
    padding-top: 2rem;
    /* Was 100px (~6rem), reduced to ~30px */
}

/* Donation Form Box Enhanced */

.donation-form-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.donation-form-box p {
    color: #4b5563 !important;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.donation-form-box .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-btn {
        margin: 1rem auto;
        width: fit-content;
    }

    .search-item {
        width: 100%;
        padding: 1rem;
    }

    .search-bar {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .top-bar {
        display: none;
    }

    .help-images {
        flex-direction: column;
    }

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

    .sponsor-card {
        padding: 2rem;
    }

    .feature-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .row {
        flex-direction: column;
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-12 {
        width: 100%;
    }
}

/* Row Layout Helper */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.col-lg-5 {
    flex: 0 0 41.666%;
}

.col-lg-6 {
    flex: 0 0 50%;
}

.col-lg-7 {
    flex: 0 0 58.333%;
}

.col-lg-8 {
    flex: 0 0 66.666%;
}

/* =========================================
   Phase 2: Creative & Organic Enhancements
   ========================================= */

/* 1. Gradient Typography */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--primary-color);
    display: inline-block;
}

/* 2. Organic Wave Dividers (SVG Data URIs) */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-bottom .shape-fill {
    fill: rgb(255, 255, 255);
    /* Light mint to match section backgrounds */
}

.bg-light .wave-bottom .shape-fill {
    fill: var(--bg-off-white);
}

/* White fill for sections that lead to pure white */
.wave-white .shape-fill {
    fill: #ffffff;
}

/* 3. Floating Background Blobs */
.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    background: var(--primary-gradient);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatBlob 20s infinite alternate;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -50px;
    background: var(--secondary-color);
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

/* 4. Ken Burns Hero Effect */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.slide.active {
    animation: kenBurns 20s ease-out forwards;
    /* Slow zoom on active slide */
}

/* 5. Glass Card for Hero */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    display: flex;
    /* Flex for better centering control */
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically if needed */
    text-align: center;
    /* Ensure text is centered */
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    /* Boost z-index to sit above wave/overlay */
}

/* Ensure waves don't block interactions */
.wave-bottom {
    pointer-events: none;
    z-index: 1;
}

/* Centering Utilities */
.section-header {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
        margin: 0 1rem;
        width: auto;
        display: block;
        /* Full width block on mobile */
    }

    .hero-content h1 {
        font-size: 2.2rem;
        /* Smaller font on mobile */
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .blob {
        display: none;
        /* Hide blobs on mobile to save performance/space */
    }

    .wave-bottom svg {
        height: 80px;
        /* Smaller wave on mobile */
    }
}

/* RTL Support */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .nav-links {
    flex-direction: row-reverse;
}

.rtl .contact-info span {
    margin-right: 0;
    margin-left: 20px;
}

.rtl .contact-info i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .footer-col ul li a:hover {
    padding-left: 0;
    padding-right: 5px;
}

/* Modal Active State */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1999;
}

.modal-overlay.active {
    display: block;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0;
    border-radius: 20px;
    max-width: 650px;
    width: 90%;
    z-index: 2000;
    display: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal.active {
    display: block;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal .close-modal:hover {
    background: var(--primary-color);
    color: white;
}

#modal-title {
    color: white;
    margin: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    font-size: 1.5rem;
}

#modal-body {
    color: var(--text-gray);
    line-height: 1.9;
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

#modal-body p {
    margin-bottom: 1rem;
}

.modal-content {
    padding: 0;
}

/* Pulse Animation for CTA Buttons */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 96, 100, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 96, 100, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 96, 100, 0);
    }
}

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

.text-light {
    color: var(--text-light);
}

/* Z-index utilities */
.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Overlay Dark */
.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Donate Section Background */
.donate-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* W-100 */
.w-100 {
    width: 100%;
}

/* Event Detail Modal */
.event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
}

.event-modal-overlay.active {
    display: block;
}

.event-detail-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    z-index: 2000;
    display: none;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.event-detail-modal.active {
    display: block;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.event-modal-header {
    background: linear-gradient(135deg, var(--primary-color), #008b8b);
    color: white;
    padding: 2rem;
    position: relative;
}

.event-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.event-modal-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.event-modal-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.95;
}

.event-modal-meta i {
    margin-right: 0.5rem;
}

.event-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.event-modal-text {
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    white-space: pre-line;
}

.event-modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.event-modal-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.event-modal-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .event-detail-modal {
        width: 95%;
        max-height: 95vh;
    }

    .event-modal-header {
        padding: 1.5rem;
    }

    .event-modal-title {
        font-size: 1.4rem;
    }

    .event-modal-body {
        padding: 1.5rem;
    }

    .event-modal-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .event-modal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utility Classes for Refactoring */
.branding-logo {
    height: 60px;
}

.cursor-pointer {
    cursor: pointer;
}

.fill-white {
    fill: #ffffff;
}

.mt-0 {
    margin-top: 0 !important;
}

.text-gray-600 {
    color: #666;
}

.flex-center-gap-10 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-lock-icon {
    color: #666;
    text-decoration: none;
    margin-left: 10px;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

.fs-1-2 {
    font-size: 1.2rem;
}

.relative-pb-150 {
    position: relative;
    padding-bottom: 150px;
}

.rounded-shadow {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.primary-mt-20 {
    color: var(--primary-color);
    margin-top: 20px;
}

.max-w-600-center {
    max-width: 600px;
    margin: 20px auto 0;
    color: #64748b;
}

.grid-col-full {
    grid-column: 1 / -1;
}



.mt-2rem {
    margin-top: 2rem;
}

.text-gray {
    color: var(--text-gray);
}

/* ========================================
   MODERN DONATE CTA SECTION
======================================== */
.donate-cta-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.donate-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
    z-index: 0;
}

.donate-cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.donate-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.donate-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.donate-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.donate-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.donate-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.donate-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.donate-btn.primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.donate-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

.donate-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.donate-stats .stat {
    text-align: center;
}

.donate-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
}

.donate-stats .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .donate-cta-section {
        padding: 60px 0;
    }

    .donate-cta-content h2 {
        font-size: 1.8rem;
    }

    .donate-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .donate-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .donate-stats {
        gap: 24px;
    }

    .donate-stats .number {
        font-size: 1.5rem;
    }
}

/* ========================================
   MODERN HELP SECTION
======================================== */
.help-section-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.help-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.help-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #14b8a6);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.help-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Vision & Mission Cards */
.vm-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.vm-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #14b8a6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vm-icon i {
    font-size: 24px;
    color: white;
}

.vm-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.vm-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* Action Cards */
.help-action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.help-action-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.help-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.help-action-card .action-img {
    width: 140px;
    min-height: 140px;
    overflow: hidden;
}

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

.help-action-card:hover .action-img img {
    transform: scale(1.1);
}

.help-action-card .action-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.help-action-card .action-content i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.help-action-card .action-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.help-action-card .action-content span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.help-action-card .action-content span i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.help-action-card:hover .action-content span i {
    transform: translateX(5px);
}

/* Contact Row */
.help-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.help-contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.help-contact-info>i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.help-contact-info div span {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
}

.help-contact-info div strong {
    font-size: 1.2rem;
    color: #1e293b;
}

.help-social-links {
    display: flex;
    gap: 12px;
}

.help-social-links a {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {

    .vm-cards,
    .help-action-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .help-section-modern {
        padding: 60px 0;
    }

    .help-header h2 {
        font-size: 1.6rem;
    }

    .help-action-card {
        flex-direction: column;
    }

    .help-action-card .action-img {
        width: 100%;
        min-height: 160px;
    }

    .help-contact-row {
        flex-direction: column;
        gap: 24px;
    }
}