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

:root {
    --primary-color: #8B0000;
    --secondary-color: #5C0000;
    --dark-color: #000000;
    --light-color: #f4f4f4;
    --text-color: #333;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #8B0000 0%, #000000 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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;
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.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(--primary-color);
    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: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.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;
}

.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-block;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    background: linear-gradient(135deg, #8B0000 0%, #5C0000 100%);
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #A00000 0%, #6D0000 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5);
}

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

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* 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: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.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: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-card:hover .icon-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-color: var(--primary-color);
    transform: scale(1.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-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.video-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: url('mogalecity.png') center center no-repeat;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}

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

.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: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

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

.benefit-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.2);
    animation: pulse 1.5s ease-in-out infinite;
}

.benefit-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
    border-radius: 12px;
    border: 2px solid rgba(139, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.08) 100%);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
}

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

.benefit-item:hover .benefit-svg {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

.benefit-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* 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: linear-gradient(135deg, #8B0000 0%, #5C0000 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.training-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s ease-in-out infinite;
}

.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(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.stat p {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* 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(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
    border-color: var(--primary-color);
    animation: float 2s ease-in-out infinite;
}

.sponsor-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.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(5, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slowFloat 6s ease-in-out infinite;
}

.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(-8px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
    border-color: var(--primary-color);
    animation: float 2s ease-in-out infinite;
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.partner-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: 1.8rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-color);
}

.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: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    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 3px rgba(139, 0, 0, 0.1);
}

.submit-button {
    background: var(--gradient);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

/* 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: 0.8rem;
    background: linear-gradient(135deg, #8B0000 0%, #5C0000 100%);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
    background: linear-gradient(135deg, #A00000 0%, #6D0000 100%);
}

.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: 0.8rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.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);
    }

    .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;
    }

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

    .stat h3 {
        font-size: 2.5rem;
    }

    .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;
    }

    .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;
    }

    .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;
    }
}

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

    .community {
        background-position: center center;
    }

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