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

:root {
    --primary-color: #800000;
    --secondary-color: #9B2335;
    --accent-color: #00C853;
    --gold-color: #FFB300;
    --dark-color: #5C0000;
    --light-color: #F5F7FA;
    --text-color: #2C3E50;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #800000 0%, #9B2335 100%);
    --gradient-accent: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    --gradient-gold: linear-gradient(135deg, #FFB300 0%, #FFC107 100%);
    --gradient-energy: linear-gradient(135deg, #800000 0%, #00C853 50%, #FFB300 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin: 0;
    padding: 0;
}

* {
    max-width: 100%;
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    width: 150px;
    height: 60px;
    background: url('run.jpeg') center center/contain no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.mobile-menu-toggle span {
    width: 32px;
    height: 3.5px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

/* Hero Section */
.hero {
    background: url('girl.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-color);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    font-size: 1.2rem;
    color: var(--gold-color);
    animation: pulse 2s infinite;
}

.hero-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-main {
    display: block;
    font-size: 3.8rem;
    font-weight: 900;
    background: var(--gradient-energy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--gold-color);
}

.hero-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 100px 15px 80px;
        background-size: cover;
        background-position: center center;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-title-sub {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-features {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        padding: 0.6rem 1.2rem;
    }

    .hero-badge span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        padding: 80px 10px 60px;
        background-size: cover;
        background-position: center center;
    }

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

    .hero-title-sub {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge i {
        font-size: 1rem;
    }

    .hero-badge span {
        font-size: 0.75rem;
    }

    .hero-feature {
        padding: 0.75rem 1.25rem;
    }

    .hero-feature i {
        font-size: 1.2rem;
    }

    .hero-feature span {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 10px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-primary {
    background: var(--gradient-energy);
    color: var(--white);
    border: 3px solid var(--gold-color);
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--white);
}

.cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 3px solid var(--white);
}

.cta-secondary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: url('gwap.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-energy);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 179, 0, 0.4);
}

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

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    z-index: 0;
}

.about-card > * {
    position: relative;
    z-index: 1;
}

.about-card:nth-child(1) {
    background-image: url('winner.jpeg');
}

.about-card:nth-child(2) {
    background-image: url('winner2.jpeg');
}

.about-card:nth-child(3) {
    background-image: url('winner3.jpeg');
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    animation: float 2s ease-in-out infinite;
}

.icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid var(--gold-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
}

.icon-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover .icon-box {
    background: var(--gradient-accent);
    border-color: var(--white);
    transform: scale(1.15) rotate(360deg);
    box-shadow: var(--shadow-lg);
}

.icon-box i {
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.icon-svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.about-card:hover .icon-svg {
    color: var(--secondary-color);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-card p {
    color: #666;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    background: var(--white);
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.video-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.video-wrapper {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 3px solid var(--primary-color);
    position: relative;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-energy);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-container:hover::before {
    opacity: 1;
}

.video-container:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 0, 0, 0.6);
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.video-container:has(video:playing) .video-play-overlay,
.main-video:not([paused]) ~ .video-play-overlay {
    opacity: 0;
}

.video-play-overlay i {
    font-size: 5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.main-video {
    width: 100%;
    display: block;
    background: #000;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--light-color);
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-energy);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 179, 0, 0.4);
}

/* Section Headers - Global Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.section-tag.light {
    background: var(--gradient-gold);
    color: var(--dark-color);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title.light {
    color: var(--white);
}

.section-description {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    gap: 2rem;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    max-width: 200px;
}

.section-divider.light .divider-line {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.divider-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid var(--gold-color);
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.section-divider.light .divider-icon {
    background: var(--gradient-gold);
    border-color: var(--white);
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Optimize layout for 5 items */
@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid .benefit-item:nth-child(4),
    .benefits-grid .benefit-item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.benefit-item:hover::before {
    opacity: 0.1;
}

.benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 12px;
}

.benefit-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-item:hover .benefit-image-wrapper img {
    transform: scale(1.1);
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover .benefit-overlay {
    opacity: 0.9;
}

.benefit-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.benefit-item:hover .benefit-overlay i {
    transform: scale(1);
}


/* Training Section */
.training {
    padding: 80px 20px;
    background: var(--white);
}

.training h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.training h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

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

.training-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-color);
    background: var(--gradient-accent);
}

.training-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid var(--gold-color);
    transition: all 0.4s ease;
}

.training-card:hover .training-icon {
    background: var(--gold-color);
    transform: scale(1.15) rotate(360deg);
}

.training-icon i {
    font-size: 2rem;
    color: var(--white);
}

.training-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.training-card:hover .training-number {
    color: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

.training-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.training-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Community Section */
.community {
    padding: 80px 20px;
    background: url('together.jpeg') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    color: var(--white);
    position: relative;
    min-height: 400px;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.community .container {
    position: relative;
    z-index: 1;
}

.community h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.community .section-subtitle {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--gold-color);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid var(--gold-color);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: var(--gradient-accent);
    transform: scale(1.15) rotate(360deg);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stat-content.vertical {
    flex-direction: column;
    gap: 1rem;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-item .label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item .value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-item.current .label {
    color: #00a000;
}

.stat-item.current .value {
    color: #00c800;
}

.stat-item.target .label {
    color: #c00000;
}

.stat-item.target .value {
    color: #ff0000;
}

.stat-divider {
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    margin: 0 0.5rem;
}

.stat-value-large {
    font-size: 4rem;
    font-weight: 700;
    color: #9932cc;
    line-height: 1;
}

.stat-card.events {
    background: linear-gradient(135deg, rgba(153, 50, 204, 0.15) 0%, rgba(186, 85, 211, 0.15) 100%);
}

.stat-card.distances .stat-content.vertical {
    width: 100%;
}

.stat-card.distances .stat-item {
    width: 100%;
}

.stat-item .value {
    word-wrap: break-word;
    text-align: center;
}

/* Adjust content wrapping on smaller cards */
@media (max-width: 350px) {
    .stat-content {
        gap: 0.5rem;
    }

    .stat-divider {
        margin: 0 0.2rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: var(--light-color);
}

/* Gallery Folders */
.gallery-folders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.event-folder {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
}

.event-folder:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.folder-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.folder-icon i {
    font-size: 3rem;
    color: var(--gold-color);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.event-folder:hover .folder-icon i {
    transform: scale(1.2) rotate(-10deg);
}

.folder-badge {
    background: var(--gradient-gold);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.folder-header {
    background: var(--gradient-primary);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.folder-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.folder-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 3px solid var(--gold-color);
    position: relative;
    z-index: 1;
}

.folder-preview {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.event-folder:hover .folder-preview img {
    transform: scale(1.15);
}

.folder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-folder:hover .folder-overlay {
    opacity: 1;
}

.folder-overlay i {
    font-size: 4rem;
    color: var(--gold-color);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.event-folder:hover .folder-overlay i {
    transform: scale(1);
}

.folder-overlay span {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.folder-content {
    padding: 2rem;
}

.folder-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.folder-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.folder-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.folder-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.folder-stats i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Event Modal */
.event-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    overflow: auto;
}

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-container {
    position: relative;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    z-index: 10001;
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: sticky;
    top: 20px;
    right: 20px;
    float: right;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 10002;
    margin-bottom: -50px;
}

.modal-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg) scale(1.1);
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    max-height: 85vh;
    overflow-y: auto;
}

.event-collection-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--light-color);
}

.event-collection-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-collection-header p {
    font-size: 1.1rem;
    color: #666;
}

.event-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.coming-soon-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-color);
    border-radius: 20px;
    border: 3px dashed var(--primary-color);
}

.coming-soon-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.coming-soon-message h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.coming-soon-message p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.coming-soon-message .cta-button {
    display: inline-flex;
    margin: 0.5rem;
}

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

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

/* Event Tiles in Modal */
.event-tile-modal {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--light-color);
}

.event-tile-modal:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.event-tile-modal .event-tile-header {
    padding: 1rem;
    background: var(--light-color);
    display: flex;
    justify-content: center;
}

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

.event-tile {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.event-tile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.event-tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.event-tile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-color);
    position: relative;
    z-index: 1;
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date-month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.event-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.event-badge.winners {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.event-badge.community {
    background: var(--gradient-accent);
    color: var(--white);
}

.event-badge i {
    font-size: 1rem;
}

.event-images {
    position: relative;
}

.main-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.event-tile:hover .main-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-tile:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.event-tile:hover .image-overlay i {
    transform: scale(1);
}

.event-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.event-thumbnails img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.event-thumbnails img:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.event-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-color);
}

.event-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.event-stats .stat i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

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

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .main-image {
        height: 250px;
    }

    .event-thumbnails img {
        height: 100px;
    }

    .event-tiles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-container {
        padding: 1rem;
        margin: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .event-collection-header h2 {
        font-size: 1.8rem;
    }

    .folder-preview {
        height: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-folders {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .event-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1025px) {
    .gallery-folders {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .event-tiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Sponsors Section */
.sponsors {
    padding: 80px 20px;
    background: var(--white);
}

.sponsors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.sponsors h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.sponsors .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--light-color);
    box-shadow: var(--shadow-md);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sponsor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sponsor-item:hover::before {
    opacity: 0.05;
}

.sponsor-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.sponsor-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sponsor-shine {
    display: none;
}

.sponsor-item:hover .sponsor-shine {
    transform: translateX(100%);
}

.sponsor-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
    display: block;
    visibility: visible;
    opacity: 1;
}

.sponsor-item:hover img {
    transform: scale(1.03);
}

/* Partners Section */
.partners {
    padding: 80px 20px;
    background: url('gwap.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.partners .container {
    position: relative;
    z-index: 1;
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.partners h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.partners .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow-md);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-item:hover::before {
    opacity: 0.08;
}

.partner-item:nth-child(1) {
    animation-delay: 0s;
}

.partner-item:nth-child(2) {
    animation-delay: 1.2s;
}

.partner-item:nth-child(3) {
    animation-delay: 2.4s;
}

.partner-item:nth-child(4) {
    animation-delay: 3.6s;
}

.partner-item:nth-child(5) {
    animation-delay: 4.8s;
}

.partner-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-color);
}

.partner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.partner-overlay {
    display: none;
}

.partner-item:hover .partner-overlay {
    opacity: 0.9;
}

.partner-overlay i {
    color: var(--gold-color);
    font-size: 3rem;
    transform: scale(0) rotate(-180deg);
    transition: transform 0.4s ease;
}

.partner-item:hover .partner-overlay i {
    transform: scale(1) rotate(0deg);
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
    display: block;
    visibility: visible;
    opacity: 1;
}

.partner-item:hover img {
    transform: scale(1.05);
}

/* Stakeholders Section */
.stakeholders {
    padding: 80px 20px;
    background: var(--white);
}

.stakeholders h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.stakeholders h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.stakeholders .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 400px));
    gap: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
}

.stakeholder-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--gold-color);
    box-shadow: var(--shadow-lg);
    min-height: 180px;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stakeholder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stakeholder-item:hover::before {
    opacity: 0.1;
}

.stakeholder-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stakeholder-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stakeholder-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--gold-color);
    transition: all 0.4s ease;
}

.stakeholder-item:hover .stakeholder-badge {
    background: var(--gradient-gold);
    color: var(--dark-color);
    transform: scale(1.1);
}

.stakeholder-item img {
    max-width: 250px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
    display: block;
    visibility: visible;
    opacity: 1;
}

.stakeholder-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--light-color);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-color);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-accent);
    transition: height 0.4s ease;
}

.info-item:hover::before {
    height: 100%;
}

.info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--accent-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--gold-color);
    transition: all 0.4s ease;
}

.info-item:hover .info-icon {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(360deg);
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.info-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.info-item p {
    color: #666;
}

.social-media-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon.facebook {
    background: #1877F2;
    color: white;
}

.social-icon.facebook:hover {
    background: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.4);
}

.social-icon.tiktok {
    background: #000000;
    color: white;
}

.social-icon.tiktok:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a01f7a 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(188, 24, 136, 0.4);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-color);
    transition: all 0.3s ease;
    display: block;
    visibility: visible;
}

.contact-form:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    visibility: visible;
    opacity: 1;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group textarea + i {
    top: 1.2rem;
    transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--light-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1);
}

.contact-form input:focus + i,
.contact-form textarea:focus ~ i {
    color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 40px;
    border: 3px solid var(--gold-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 0;
}

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

.submit-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--white);
}

.submit-button i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: url('footer.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    color: var(--white);
    padding: 3rem 20px 2rem;
    position: relative;
    min-height: 400px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.pricing-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.price-item strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-highlight {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(92, 0, 0, 0.9) 100%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ticket-info {
    font-size: 1rem;
    margin-top: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-style: italic;
}

.ticket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--gradient-energy);
    color: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold-color);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.ticket-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.ticket-btn:hover::before {
    left: 100%;
}

.ticket-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--white);
}

.ticket-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-intro {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.whatsapp-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--white);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
}

.footer-credits {
    text-align: center;
    padding-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slowFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
    }

    .logo {
        order: 1;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 999;
        order: 3;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 20px;
        width: 100%;
    }

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

    .navbar .container {
        padding: 0.8rem 20px;
    }

    .logo {
        width: 130px;
        height: 52px;
    }

    .hero {
        padding: 120px 15px 80px;
        min-height: 400px;
        background-position: center center;
        background-size: cover;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .community {
        padding: 60px 15px;
        min-height: 350px;
        background-position: center center;
        background-size: cover;
    }

    .footer {
        padding: 2.5rem 15px 1.5rem;
        min-height: auto;
        background-position: center center;
        background-size: cover;
    }

    .about h2,
    .benefits h2,
    .training h2,
    .community h2,
    .sponsors h2,
    .partners h2,
    .contact h2,
    .video-section h2 {
        font-size: 2rem;
    }

    .about-grid,
    .benefits-grid,
    .training-grid,
    .sponsors-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-title {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .stat-item .label {
        font-size: 0.75rem;
    }

    .stat-item .value {
        font-size: 1.4rem;
    }

    .stat-value-large {
        font-size: 3rem;
    }

    .stat-divider {
        font-size: 1.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.5rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 10px 60px;
        min-height: 350px;
        background-position: center center;
    }

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

    .logo {
        width: 110px;
        height: 45px;
        background-size: contain;
    }

    .navbar .container {
        padding: 0.7rem 15px;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 23px;
        display: flex !important;
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 2.5px;
    }

    .community {
        padding: 50px 10px;
        min-height: 300px;
        background-position: center center;
    }

    .community-stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .stat-card {
        padding: 1.3rem 1rem;
    }

    .stat-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .stat-item .label {
        font-size: 0.7rem;
    }

    .stat-item .value {
        font-size: 1.3rem;
    }

    .stat-value-large {
        font-size: 2.5rem;
    }

    .stat-divider {
        font-size: 1.5rem;
        margin: 0 0.3rem;
    }

    .footer {
        padding: 2rem 10px 1rem;
        background-position: center center;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }

    .price-item {
        font-size: 1rem;
    }

    .ticket-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero {
        padding: 80px 10px 50px;
        min-height: 300px;
        margin-top: 65px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .logo {
        width: 95px;
        height: 38px;
    }

    .navbar .container {
        padding: 0.6rem 10px;
    }

    .mobile-menu-toggle {
        width: 26px;
        height: 21px;
        display: flex !important;
    }

    .mobile-menu-toggle span {
        width: 26px;
        height: 2px;
    }

    .nav-links {
        top: 65px;
    }

    .community {
        padding: 40px 10px;
        min-height: 250px;
    }

    .community-stats {
        gap: 1rem;
    }

    .stat-card {
        padding: 1.2rem 0.8rem;
    }

    .stat-title {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .stat-item .label {
        font-size: 0.65rem;
    }

    .stat-item .value {
        font-size: 1.2rem;
    }

    .stat-value-large {
        font-size: 2.2rem;
    }

    .stat-divider {
        font-size: 1.3rem;
    }

    .footer {
        padding: 1.5rem 10px 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Landscape mode for mobile devices */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 80px 20px 60px;
        min-height: auto;
    }

    .community {
        padding: 50px 20px;
        min-height: auto;
    }

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

    .stat-card {
        padding: 1.2rem 1rem;
    }

    .stat-item .value {
        font-size: 1.3rem;
    }

    .stat-value-large {
        font-size: 2.5rem;
    }

    .footer {
        min-height: auto;
    }
}

/* Tablet screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 20px;
        width: 100%;
    }

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

    .hero {
        padding: 140px 20px 90px;
        min-height: 450px;
        background-position: center center;
    }

    .community {
        padding: 70px 20px;
        min-height: 380px;
        background-position: center center;
    }

    .footer {
        padding: 2.8rem 20px 1.8rem;
        background-position: center center;
    }

    .logo {
        width: 140px;
        height: 56px;
    }

    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .stat-card {
        padding: 1.8rem 1.3rem;
    }

    .stat-title {
        font-size: 1rem;
    }

    .stat-item .value {
        font-size: 1.6rem;
    }

    .stat-value-large {
        font-size: 3.5rem;
    }
}

/* Small Laptops */
@media (min-width: 1025px) and (max-width: 1279px) {
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-title {
        font-size: 1.05rem;
    }

    .stat-item .label {
        font-size: 0.8rem;
    }

    .stat-item .value {
        font-size: 1.7rem;
    }

    .stat-value-large {
        font-size: 3.8rem;
    }

    .stat-divider {
        font-size: 2rem;
    }
}

/* Standard Laptops 1280-1365px */
@media (min-width: 1280px) and (max-width: 1365px) {
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-title {
        font-size: 1.05rem;
        margin-bottom: 1.3rem;
    }

    .stat-item {
        gap: 0.5rem;
    }

    .stat-item .label {
        font-size: 0.8rem;
    }

    .stat-item .value {
        font-size: 1.75rem;
    }

    .stat-value-large {
        font-size: 4rem;
    }

    .stat-divider {
        font-size: 2rem;
        margin: 0 0.4rem;
    }
}

/* Laptops 1366px and above (most common laptop resolution) */
@media (min-width: 1366px) and (max-width: 1399px) {
    .community-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-card {
        padding: 1.8rem 1.3rem;
    }

    .stat-title {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .stat-item {
        gap: 0.4rem;
    }

    .stat-item .label {
        font-size: 0.75rem;
    }

    .stat-item .value {
        font-size: 1.5rem;
    }

    .stat-value-large {
        font-size: 3.5rem;
    }

    .stat-divider {
        font-size: 1.8rem;
        margin: 0 0.3rem;
    }
}

/* Large screens - optimize image display */
@media (min-width: 1400px) {
    .hero {
        background-position: center top;
    }

    .community {
        background-position: center center;
    }

    .community-stats {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .stat-card {
        padding: 2.5rem 2rem;
    }

    .stat-title {
        font-size: 1.2rem;
    }

    .stat-item .value {
        font-size: 2rem;
    }

    .stat-value-large {
        font-size: 4.5rem;
    }

    .footer {
        background-position: center bottom;
    }
}

/* CRITICAL: Force images to always display */
.sponsors,
.partners,
.stakeholders,
.benefits,
.gallery {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.sponsors-grid,
.partners-grid,
.benefits-grid,
.gallery-grid,
.gallery-folders {
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
}

.stakeholders-grid {
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    justify-content: center !important;
}

.sponsor-item,
.partner-item,
.benefit-item,
.event-tile,
.event-folder {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.event-tile,
.event-folder {
    display: block !important;
}

.stakeholder-item {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    min-height: 180px !important;
    max-height: 200px !important;
}

.sponsor-wrapper,
.partner-wrapper,
.stakeholder-wrapper,
.benefit-image-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.sponsor-item img,
.partner-item img,
.benefit-image-wrapper img,
.event-tile img,
.event-folder img,
.folder-preview img,
.event-tile-modal img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

.stakeholder-item img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    max-width: 250px !important;
    max-height: 150px !important;
    width: auto !important;
    height: auto !important;
}

/* Contact Form Visibility */
.contact-form,
.contact-form form {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.contact-form form {
    display: flex !important;
}

.form-group input,
.form-group textarea {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}
