/*
Theme Name: NextGen
Description: Fully customizable WordPress theme for football tournament website with plugin support and SEO optimization
Version: 1.0.0
Author: SIYAPZE DAVE ROLAND
Author URI: #
Theme URI: #
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nextgen
Domain Path: /languages/
Requires at least: 5.0
Requires PHP: 7.4
*/

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

:root {
    --primary: #FF4B6E;
    --secondary: #FFB6C1;
    --dark: #1a1a1a;
    --light: #FFF0F3;
    --white: #ffffff;
    --gray: #666;
    --gradient: linear-gradient(135deg, #FF4B6E 0%, #FF8FA3 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.logo {
    height: 60px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--light);
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bg-h {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.4) 100%),
        radial-gradient(circle at 20% 50%, rgba(255,75,110,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,182,193,0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,75,110,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,182,193,0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    justify-items: center;
}

.hero-content.centered {
    justify-content: center;
    text-align: center;
    animation: fadeInUp 1s ease;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-h {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.phone-mockup {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

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

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,75,110,0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

/* Categories */
.categories {
    background: var(--white);
}

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

.category-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-card:hover::before {
    left: 0;
    opacity: 0.05;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.category-card ul {
    list-style: none;
    margin-top: 1rem;
}

.category-card li {
    padding: 0.5rem 0;
    color: var(--gray);
}

/* Contact Form 7 - Inscription Form Styles */
.wpcf7 {
    width: 100%;
}

.wpcf7-form {
    width: 100%;
}

/* Hide default CF7 elements that conflict with custom design */
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* .wpcf7 input[type="submit"] {
    display: none; 
} */

/* Form Controls */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,75,110,0.1);
}

/* Error States */
.wpcf7 .wpcf7-not-valid {
    border-color: #f44336 !important;
}

.wpcf7 .wpcf7-not-valid-tip {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Radio Buttons */
.wpcf7 .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wpcf7 .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wpcf7 .wpcf7-list-item input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.wpcf7 .wpcf7-list-item-label {
    cursor: pointer;
    margin: 0;
}

/* Checkboxes */
.wpcf7 .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.125rem;
    cursor: pointer;
}

/* Validation Messages */
.wpcf7-response-output {
    border: none !important;
    margin: 1.5rem 0 0 0 !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    text-align: center;
    font-weight: 600;
}

.wpcf7-validation-errors {
    background: #fff3cd !important;
    color: #856404 !important;
}

.wpcf7-mail-sent-ok {
    background: #d4edda !important;
    color: #155724 !important;
}

.wpcf7-mail-sent-ng {
    background: #f8d7da !important;
    color: #721c24 !important;
}

/* Spinner */
.wpcf7 .ajax-loader {
    display: none !important;
}

.wpcf7-form.submitting .btn-next::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Control Styles */
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,75,110,0.1);
}

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

/* Responsive adjustments for CF7 */
@media (max-width: 768px) {
    .wpcf7 .form-row {
        grid-template-columns: 1fr;
    }
}

/* About Preview */
.about-preview {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--gray);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Features */
.features {
    background: var(--white);
}

.features-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.features-image img{
    width: 80%;
}

.features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-items {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
}

.feature-item h4 {
    margin-bottom: 0.25rem;
}

/* News */
.news-preview {
    background: var(--light);
}

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

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: row;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-card .article-image {
    width: 40%;
    height: 200px;
    overflow: hidden;
}

.news-card.featured .article-image {
    height: 300px;
}

.news-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
}

.news-date {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.news-card h3 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
}

.news-card p {
    color: var(--gray);
}

/* Sponsors */
.sponsors {
    background: var(--white);
    text-align: center;
}

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

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    /* background: var(--light); */
    border-radius: 15px;
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sponsor-logo img {
    width: 180px;
    height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsor-logo:hover img {
    filter: grayscale(0%);
}

/* Sponsor Item */
.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    /* background: var(--light); */
    border-radius: 15px;
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sponsor-item img {
    width: 180px;
    height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsor-item:hover img {
    filter: grayscale(0%);
}

.sponsor-item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* CTA */
.cta {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 10px 20px;
    background: #25D366;
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.footer-bottom {
    .filters {
        flex-direction: column;
        align-items: center;
    }

    .table-header,
    .match-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .table-header > div,
    .match-row > div {
        justify-content: space-between;
        text-align: left;
    }

    .table-header > div:before,
    .match-row > div:before {
        content: attr(data-label);
        font-weight: bold;
        color: var(--primary);
    }

    .legend-items {
        flex-direction: column;
        gap: 1rem;
    }
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    animation: fadeInUp 0.6s ease forwards;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

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

.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse>* {
    direction: ltr;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.objective-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.objective-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.objective-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.rules-section {
    background: var(--light);
    padding: 60px 0;
}

.rules-summary {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.rules-summary-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.rules-summary-cta {
    margin-top: 2rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.rule-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.rule-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rule-number {
    background: var(--gradient);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Rules Full Page Styles */
.rules-full-section {
    background: var(--white);
    padding: 80px 0;
}

.rules-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.rules-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rules-meta {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    display: inline-block;
    margin-top: 1rem;
}

.rules-meta p {
    margin: 0.5rem 0;
    font-weight: 600;
    color: var(--gray);
}

.rules-objectives {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    text-align: center;
}

.rules-objectives h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.rules-objectives ul {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.rules-objectives li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.rules-objectives li::before {
    /* content: counter(list-item); */
    position: absolute;
    left: -1rem;
    top: 0;
    background: var(--gradient);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.rules-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.rules-section-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,75,110,0.1);
    transition: all 0.3s ease;
}

.rules-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.rules-section-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary);
    position: relative;
}

.rules-section-card h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
}

.rules-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.article:hover {
    background: rgba(255,182,193,0.3);
    transform: translateX(5px);
}

.article strong {
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.article ul, .article ol {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.article li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.note {
    background: rgba(255,75,110,0.1);
    border: 1px solid rgba(255,75,110,0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-style: italic;
    color: var(--dark);
}

.note::before {
    content: '📌 ';
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .rules-section-card {
        padding: 2.5rem;
    }

    .rules-objectives {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .rules-full-section {
        padding: 40px 0;
    }

    .rules-intro h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .rules-intro {
        margin-bottom: 3rem;
    }

    .rules-meta {
        padding: 1.5rem 1rem;
        margin-top: 1rem;
    }

    .rules-meta p {
        font-size: 0.9rem;
    }

    .rules-objectives {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .rules-objectives h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .rules-objectives ul {
        padding-left: 1rem;
    }

    .rules-objectives li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .rules-sections {
        gap: 2rem;
    }

    .rules-section-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .rules-section-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .rules-articles {
        gap: 1.5rem;
    }

    .article {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .article strong {
        font-size: 0.95rem;
    }

    .article ul, .article ol {
        margin-top: 0.8rem;
        padding-left: 1.2rem;
    }

    .article li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .note {
        padding: 0.8rem;
        margin-top: 0.8rem;
        font-size: 0.9rem;
    }

    .rules-summary {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .rules-summary-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .rules-intro h2 {
        font-size: 1.8rem;
    }

    .rules-meta {
        padding: 1.2rem 0.8rem;
    }

    .rules-objectives {
        padding: 1.5rem 1rem;
    }

    .rules-objectives h3 {
        font-size: 1.4rem;
    }

    .rules-section-card {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }

    .rules-section-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .rules-articles {
        gap: 1.2rem;
    }

    .article {
        padding: 1rem;
    }

    .article strong {
        font-size: 0.9rem;
    }

    .article li {
        font-size: 0.85rem;
    }

    .note {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .rules-summary {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .rules-summary-content p {
        font-size: 0.95rem;
    }
}

.rules-disclaimer {
    margin-top: 3rem;
    text-align: center;
}

.disclaimer-text {
    background: rgba(255,75,110,0.05);
    border: 1px solid rgba(255,75,110,0.2);
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

.disclaimer-text small {
    font-size: 0.85rem;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 768px) {
    .rules-disclaimer {
        margin-top: 2rem;
    }

    .disclaimer-text {
        padding: 1.2rem;
        margin: 0 1rem;
    }

    .disclaimer-text small {
        font-size: 0.8rem;
    }
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--light);
}

.timeline-date {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
@media (min-width: 780px) {
    .news-article.featured {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }
    
}

@media (max-width: 768px) {
    /* .page-header {
        padding: 80px 0 40px;
    } */

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .objective-card {
        padding: 1.5rem;
    }

    .objective-icon {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        width: 100%;
        margin-left: 30px;
        margin-bottom: 2rem;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(0);
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }

    .rules-summary {
        flex-direction: column;
        gap: 2rem;
    }

    .rules-summary-cta {
        text-align: center;
    }

    .packages-filters {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 250px;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-card.silver {
        transform: none;
        margin: 0 1rem;
    }

    .package-header h3 {
        font-size: 1.5rem;
    }

    .package-price {
        font-size: 1.5rem;
    }

    .why-content {
        display: block !important;
        text-align: center;
    }

    .why-text {
        margin-bottom: 2.5rem;
    }

    .why-text h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .benefit-item {
        padding: 1.5rem;
        max-width: 300px;
        text-align: center;
    }

    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .benefit-item h4 {
        margin-bottom: 0.75rem;
    }

    .why-image img {
        max-width: 100%;
        height: auto;
    }

    .sponsor-item {
        padding: 0.75rem;
    }

    .sponsor-item img {
        width: 140px;
        height: 90px;
    }

    .news-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .news-article {
        flex-direction: column;
    }

    .news-article.featured {
        gap: 1rem;
    }

    .article-image {
        height: 250px;
    }

    .news-article.featured .article-image {
        height: 300px;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .share-buttons {
        align-self: flex-end;
    }

    .pagination {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .pagination a,
    .pagination span {
        padding: 0.75rem 1rem;
        min-width: 120px;
        text-align: center;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero .container,
    .about-content,
    .features-content {
        grid-template-columns: 1fr;
    }

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

    .hero-subtitle-h {
        font-size: 1rem;
    }

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

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

    .category-card {
        padding: 1.5rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .features-content {
        flex-direction: column;
        gap: 2rem;
    }

    .features-image img {
        width: 100%;
    }

    .features-text h2 {
        font-size: 2rem;
    }

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

    .news-card {
        flex-direction: column;
    }

    .news-card .article-image {
        width: 100%;
        height: 200px;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

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

    .footer-bottom .filters {
        flex-direction: column;
        align-items: center;
    }

    .table-header,
    .match-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .table-header > div,
    .match-row > div {
        justify-content: space-between;
        text-align: left;
    }

    .table-header > div:before,
    .match-row > div:before {
        content: attr(data-label);
        font-weight: bold;
        color: var(--primary);
    }

    .legend-items {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Calendar Section */
/* ========================================
   CALENDAR CHRONOGRAMME STYLES
   ======================================== */

/* Remove old calendar styles and add new timeline */
.calendar-section {
    background: var(--white);
    padding: 80px 0;
}

.calendar-section .section-title {
    margin-bottom: 4rem;
}

/* Timeline Container */
.tournament-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 1.5rem 0;
}

.tournament-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Timeline Event */
.timeline-event {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    align-items: center;
}

.timeline-event:nth-child(odd) {
    flex-direction: row;
}

.timeline-event:nth-child(even) {
    flex-direction: row-reverse;
}

/* Event Date Circle */
.event-date {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-event:hover .event-date {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(255,75,110,0.25);
}

.event-date .month {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin: 0.2rem 0;
}

.event-date .year {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
}

/* Event Content */
.event-content {
    flex: 1;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-event:nth-child(odd) .event-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid var(--light);
}

.timeline-event:nth-child(even) .event-content::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid var(--light);
}

.timeline-event:hover .event-content {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* Event Badge */
.event-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.event-badge.launch {
    background: linear-gradient(135deg, #FF4B6E, #FF8FA3);
    color: var(--white);
}

.event-badge.match {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    color: var(--white);
}

.event-badge.playoff {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark);
}

/* Event Titles and Content */
.event-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.event-content p {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Event Meta */
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Special styling for Launch and Final events */
.timeline-event.launch-event .event-date,
.timeline-event.playoff-event.final .event-date {
    border-width: 4px;
    width: 110px;
    height: 110px;
}

.timeline-event.launch-event .event-date {
    border-color: #FF4B6E;
    background: linear-gradient(135deg, rgba(255,75,110,0.1), rgba(255,182,193,0.1));
}

.timeline-event.playoff-event.final .event-date {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.1));
}

.timeline-event.launch-event .event-content,
.timeline-event.playoff-event.final .event-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    border: 2px solid var(--primary);
}

/* Legend Adjustments */
.legend .status.launch {
    background: linear-gradient(135deg, #FF4B6E, #FF8FA3);
}

.legend .status.match {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.legend .status.playoff {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

/* ========================================
   RESPONSIVE DESIGN FOR CHRONOGRAMME
   ======================================== */

@media (max-width: 768px) {
    .tournament-timeline::before {
        left: 60px;
    }

    .timeline-event {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .timeline-event:nth-child(even) {
        flex-direction: column !important;
    }

    .event-date {
        width: 100px;
        height: 100px;
        position: absolute;
        left: 0;
    }

    .timeline-event.launch-event .event-date,
    .timeline-event.playoff-event.final .event-date {
        width: 120px;
        height: 120px;
    }

    .event-date .day {
        font-size: 1.75rem;
    }

    .event-content {
        margin-left: 140px;
        width: calc(100% - 140px);
    }

    .timeline-event:nth-child(odd) .event-content::before,
    .timeline-event:nth-child(even) .event-content::before {
        left: -15px;
        right: auto;
        border-right: 15px solid var(--light);
        border-left: none;
    }

    .timeline-event:hover .event-content::before {
        border-right-color: var(--white);
    }

    .event-content h3 {
        font-size: 1.25rem;
    }

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

@media (max-width: 480px) {
    .calendar-section {
        padding: 60px 0;
    }

    .calendar-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .tournament-timeline {
        padding: 1rem 0;
    }

    .tournament-timeline::before {
        left: 50px;
        width: 3px;
    }

    .timeline-event {
        margin-bottom: 2.5rem;
    }

    .event-date {
        width: 80px;
        height: 80px;
    }

    .timeline-event.launch-event .event-date,
    .timeline-event.playoff-event.final .event-date {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }

    .event-date .month {
        font-size: 0.7rem;
    }

    .event-date .day {
        font-size: 1.5rem;
    }

    .event-date .year {
        font-size: 0.7rem;
    }

    .event-content {
        margin-left: 110px;
        width: calc(100% - 110px);
        padding: 1.25rem;
    }

    .event-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .event-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .event-content p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .event-meta {
        font-size: 0.85rem;
        gap: 0.5rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .legend {
        padding: 1.5rem;
    }

    .legend h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .legend-items {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .legend-note {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
}

.filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--dark);
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,75,110,0.1);
}

.matches-container {
    margin-bottom: 3rem;
}

.matches-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr 2fr 1fr 1fr;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    gap: 1rem;
}

.table-header > div {
    text-align: center;
}

.match-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr 2fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid var(--light);
    gap: 1rem;
    transition: all 0.3s ease;
}

.match-row:hover {
    background: var(--light);
}

.match-row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.match-row .status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.upcoming {
    background: #FFF3CD;
    color: #856404;
}

.status.live {
    background: #D1ECF1;
    color: #0C5460;
    animation: pulse-live 2s infinite;
}

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

.status.finished {
    background: #D4EDDA;
    color: #155724;
}

.legend {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.legend h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.legend-item .status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Sponsoring Packages */
.sponsoring-packages {
    background: var(--white);
    padding: 80px 0;
}

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

.package-card {
    background: var(--light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.package-card.bronze {
    border-color: #CD7F32;
}

.package-card.silver {
    border-color: #C0C0C0;
    transform: scale(1.05);
}

.package-card.gold {
    border-color: #FFD700;
}

.package-card.featured {
    box-shadow: 0 10px 30px rgba(255,75,110,0.2);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.package-features {
    margin-bottom: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.package-features li:last-child {
    border-bottom: none;
}

/* Why Sponsor */
.why-sponsor {
    background: var(--light);
    padding: 80px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

.benefit-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* News Section */
.news-section {
    background: var(--white);
    padding: 80px 0;
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light);
    background: var(--white);
    color: var(--dark);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-article {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-article.featured .article-image {
    height: 100%;
}

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

.news-article:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article-date {
    color: var(--primary);
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.article-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--dark);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light);
    background: var(--white);
    color: var(--dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-btn:hover,
.page-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    color: var(--gray);
    font-weight: bold;
}

/* Newsletter */
.newsletter {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 25px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--dark);
    color: var(--white);
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.gallery-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.zoom-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255,75,110,0.4);
}

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

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

.lightbox.active {
    display: flex;
}

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

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: -75px;
}

.lightbox-next {
    right: -75px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-media {
    max-width: 100%;
    max-height: 100%;
}

.lightbox-media img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-media video {
    max-width: 100%;
    max-height: 90vh;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.info-items {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.info-item p {
    color: var(--gray);
    line-height: 1.5;
}

.social-contact h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,75,110,0.1);
}

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

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Contact Links */
.info-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Contact Mobile Responsiveness */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
    }

    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }

    .info-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        background: var(--light);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .info-icon {
        align-self: center;
    }

    .contact-content {
        gap: 2rem;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--light);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--gray);
    line-height: 1.6;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid var(--light);
}

.modal-btn {
    min-width: 120px;
}

/* Stadium Description Section */
.stadium-description {
    background: linear-gradient(135deg, var(--light) 0%, #f8f9ff 100%);
    padding: 80px 0;
}

.stadium-content {
    max-width: 900px;
    margin: 0 auto;
}

.stadium-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.stadium-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.stadium-intro strong {
    color: var(--primary);
    font-weight: 700;
}

.stadium-desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

/* Amenities Section */
.amenities-section {
    background: var(--white);
    padding: 80px 0;
}

.amenities-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

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

.amenity-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.amenity-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.amenity-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.amenity-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Why This Stadium Section */
.why-stadium {
    background: linear-gradient(135deg, var(--light) 0%, #f8f9ff 100%);
    padding: 80px 0;
}

/* .why-content {
    max-width: 900px;
    margin: 0 auto;
} */

.why-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.stadium-quote {
    background: var(--white);
    border-left: 6px solid var(--primary);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0;
}

.stadium-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary);
    line-height: 1.8;
    margin: 0;
}

/* Map Section */
.map-section {
    background: var(--white);
    padding: 80px 0;
}

.map-container {
    margin-bottom: 4rem;
}

.map {
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.venues-list h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.venue-card {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.venue-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0;
}

.venue-type {
    background: var(--gradient);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.venue-info p {
    margin-bottom: 0.75rem;
    color: var(--gray);
    line-height: 1.5;
}

.venue-info strong {
    color: var(--dark);
}

.venue-actions {
    margin-top: 1.5rem;
}

/* Access Info */
.access-info {
    background: var(--light);
    padding: 80px 0;
}

.access-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.access-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.access-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.access-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.access-item h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.access-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    background: var(--white);
    padding: 80px 0;
}

.partners-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.partners-intro p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.partner-category {
    margin-bottom: 4rem;
}

.partner-category h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.partner-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

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

.partner-logo {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-logo.gold {
    border: 3px solid #FFD700;
}

.partner-logo.silver {
    border: 3px solid #C0C0C0;
}

.partner-logo.bronze {
    border: 3px solid #CD7F32;
}

.partner-logo.media {
    border: 3px solid #FF4B6E;
}

.partner-logo.institutional {
    border: 3px solid #1a1a1a;
}

.partner-logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partner-info {
    margin-top: 1rem;
}

.partner-info h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.partner-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.partner-cta {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.partner-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Legal Section */
.legal-section {
    background: var(--white);
    padding: 80px 0;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.legal-link:hover,
.legal-link.active {
    background: var(--gradient);
    color: var(--white);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.legal-article {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
}

.legal-article h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-article h4 {
    color: var(--dark);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.legal-article p {
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1rem;
}

.legal-article ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-article li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.legal-article strong {
    color: var(--dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 100px;
    left: 20px;
    right: 20px;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Inscription Form Styles */
.form-page {
    background: var(--light);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: var(--gradient);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.form-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.step-indicator {
    display: flex;
    justify-content: center;
    padding: 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--light);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    flex: 1;
    max-width: 120px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

/* .step::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 100%;
    width: calc(100% - 30px);
    height: 2px;
    background: var(--light);
    z-index: 1;
} */

.step:last-child::after {
    display: none;
}

/* .step.active::after {
    background: var(--primary);
} */

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary);
    color: var(--white);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
}

.step.active .step-label {
    color: var(--primary);
}

#registrationForm {
    padding: 2rem;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

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

.form-step h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.form-step h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group label.required::after {
    content: ' *';
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,75,110,0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-group .checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-group input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.form-group[data-radio] label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    padding: 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.form-group[data-radio] input[type="radio"] {
    width: auto;
    margin: 0;
}

.form-group[data-radio] input[type="radio"]:checked + label {
    border-color: var(--primary);
    background: rgba(255,75,110,0.05);
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.form-buttons {
    /* display: flex; */
    /* justify-content: flex-start; */
    align-items: center;
    padding: 2rem;
    /* background: var(--light); */
    border-top: 1px solid rgba(0,0,0,0.1);
}

.btn-prev,
.btn-next {
    padding: 12px 32px;
    border-radius: 25px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-prev:hover,
.btn-next:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,75,110,0.3);
}

.btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-next {
    margin-left: auto;
}

.form-buttons p {
    display: flex;
    /* justify-content: flex-start; */
    align-items: center;
    margin: 0;
    padding: 0;
}

.form-buttons br {
    display: none;
}

.btn-next[type="submit"] {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.btn-next[type="submit"]:hover {
    box-shadow: 0 6px 20px rgba(255,75,110,0.4);
}

#numPersonsGroup {
    display: none;
}

.form-summary {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.form-summary h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.form-summary p {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.form-summary strong {
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .form-header {
        padding: 2rem 1rem;
    }

    .form-header h1 {
        font-size: 2rem;
    }

    .step-indicator {
        padding: 1rem;
    }

    .step {
        max-width: 80px;
    }

    .step-label {
        font-size: 0.8rem;
    }

    #registrationForm {
        padding: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .btn-prev,
    .btn-next {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   SINGLE ARTICLE PAGE STYLES
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    /* padding: 3rem 0; */
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.article-meta-header {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.article-meta-header span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta-header i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.article-date {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.article-category {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.article-author {
    color: rgba(255, 255, 255, 0.95);
}

.reading-time {
    color: rgba(255, 255, 255, 0.95);
}

.single-article-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* Main Article Content */
.single-article-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.95rem;
    color: #666;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--primary);
    font-size: 1.1rem;
}

.article-date {
    color: #555;
    font-weight: 500;
}

.article-category {
    color: var(--primary);
    font-weight: 600;
}

.article-author {
    color: #666;
}

.article-body {
    line-height: 1.9;
    color: #333;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.article-body ul,
.article-body ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.7rem;
    color: #444;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-body a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Article Tags */
.article-tags {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.article-tags h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.tag-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 75, 110, 0.3);
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
}

.related-articles h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-article-card {
    background: #f8f9ff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.related-article-card:hover {
    box-shadow: 0 15px 40px rgba(255, 75, 110, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.related-article-image {
    height: 180px;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-image img {
    transform: scale(1.08);
}

.related-article-content {
    padding: 1.5rem;
}

.related-article-content h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-article-content h4 a {
    text-decoration: none;
    color: var(--primary);
    border: none;
    transition: color 0.3s ease;
}

.related-article-content h4 a:hover {
    color: var(--secondary);
}

.related-article-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.related-article-content .read-more {
    font-size: 0.9rem;
    color: var(--primary);
    border: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
}

/* Back to News */
.back-to-news {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    text-align: left;
}

.back-to-news .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   RIGHT SIDEBAR WIDGETS
   ======================================== */

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Featured Image Widget */
.featured-image-widget {
    padding: 0;
    overflow: hidden;
}

.featured-image-large {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}

.featured-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-image-widget:hover .featured-image-large img {
    transform: scale(1.05);
}

/* Action Buttons Widget */
.action-buttons-widget {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: white;
}

.action-btn i {
    font-size: 1.5rem;
}

.action-btn.facebook {
    background: #3b5998;
}

.action-btn.facebook:hover {
    background: #2d4373;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 89, 152, 0.4);
}

.action-btn.twitter {
    background: #1DA1F2;
}

.action-btn.twitter:hover {
    background: #1a91da;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.action-btn.whatsapp {
    background: #25D366;
}

.action-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.action-btn.email {
    background: var(--primary);
}

.action-btn.email:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 75, 110, 0.4);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.newsletter-widget h4 {
    color: white;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.newsletter-widget .wpcf7-form {
    margin-top: 1rem;
}

.newsletter-widget .wpcf7-form input[type="email"],
.newsletter-widget .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
}

.newsletter-widget .wpcf7-form input[type="email"] {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.newsletter-widget .wpcf7-form input[type="submit"] {
    background: white;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-widget .wpcf7-form input[type="submit"]:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-sidebar {
        position: static;
    }

    .featured-image-large {
        height: 300px;
    }

    .action-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .single-article-content {
        padding: 1.5rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-btn span {
        display: none;
    }

    .featured-image-large {
        height: 250px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 60px;
        min-height: 90vh;
    }

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

    .hero-subtitle-h {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .category-card {
        padding: 1.25rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .category-card h3 {
        font-size: 1.3rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .features-text h2 {
        font-size: 1.8rem;
    }

    .feature-item {
        gap: 0.75rem;
    }

    .news-content {
        padding: 1rem;
    }

    .news-date {
        font-size: 0.9rem;
    }

    .news-card h3 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cta-content p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .objective-card {
        padding: 1.25rem;
    }

    .objective-icon {
        font-size: 2rem;
    }

    .objective-card h3 {
        font-size: 1.1rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    .package-card {
        padding: 1.25rem;
    }

    .package-header h3 {
        font-size: 1.3rem;
    }

    .package-price {
        font-size: 1.3rem;
    }

    .package-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .why-text h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

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

    .benefit-item {
        padding: 1.25rem;
        max-width: none;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

    .article-image {
        height: 220px;
    }

    .news-article.featured .article-image {
        height: 250px;
    }

    .article-content {
        padding: 1.25rem;
    }

    .article-meta {
        gap: 0.5rem;
    }

    .share-buttons {
        gap: 0.25rem;
    }

    .share-btn {
        width: 30px;
        height: 30px;
    }

    .pagination a,
    .pagination span {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }

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

    .newsletter-content p {
        font-size: 0.95rem;
    }

    .sponsor-item {
        padding: 0.5rem;
    }

    .sponsor-item img {
        width: 120px;
        height: 80px;
    }
}

/* ========================================
   SPONSORS SLIDER SECTION
   ======================================== */

.sponsors-slider-section {
  padding: 60px 20px;
  overflow: hidden;
}

/* Slider Container Wrapper */
.sponsors-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Slider Container */
.sponsors-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sponsors-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Sponsor Slide - Full Width Display */
.sponsor-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.sponsor-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  text-decoration: none;
}

.sponsor-slide img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.sponsor-slide:hover img {
  transform: scale(1.05);
}

/* Navigation Buttons */
.slider-nav {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.slider-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.slider-nav:active {
  transform: scale(0.95);
}

.slider-nav i {
  pointer-events: none;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: #9ca3af;
  transform: scale(1.2);
}

.slider-dot.active {
  background: #FF4B6E;
  width: 32px;
  border-radius: 6px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 1024px) {
  .sponsors-slider-section {
    padding: 50px 15px;
  }

  .sponsors-slider-container {
    max-width: 100%;
    gap: 15px;
  }

  .sponsor-slide {
    padding: 50px 30px;
  }

  .sponsor-slide img {
    max-height: 200px;
  }

  .slider-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Mobile Landscape & Portrait */
@media (max-width: 768px) {
  .sponsors-slider-section {
    padding: 40px 10px;
  }

  .sponsors-slider-container {
    gap: 10px;
  }

  .sponsor-slide {
    padding: 40px 20px;
  }

  .sponsor-slide img {
    max-height: 150px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-dots {
    gap: 10px;
    margin-top: 25px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 28px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .sponsors-slider-section {
    padding: 30px 5px;
  }

  .sponsors-slider-container {
    gap: 8px;
  }

  .sponsor-slide {
    padding: 30px 15px;
  }

  .sponsor-slide img {
    max-height: 120px;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .slider-dots {
    gap: 8px;
    margin-top: 20px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .slider-dot.active {
    width: 24px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .sponsor-slide {
    padding: 25px 10px;
  }

  .sponsor-slide img {
    max-height: 100px;
  }

  .slider-nav {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
