:root {
    --primary-red: #C41E3A;
    --primary-red-dark: #A01830;
    --primary-red-light: #E8284A;
    --secondary-black: #1A1A1A;
    --accent-gray: #808080;
    --accent-gray-light: #A0A0A0;
    --bg-light: #F5F5F5;
    --bg-dark: #1A1A1A;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --text-muted: #6C757D;
    --border-color: #DEE2E6;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0,0,0,0.15);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,0.175);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    --gradient-dark: linear-gradient(135deg, #1A1A1A, #0f0f0f);
    --radius-sm: 6px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--primary-red);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-red-dark);
}

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

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border-color: var(--primary-red);
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-black);
    border-color: var(--secondary-black);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: #333;
    border-color: #333;
    color: var(--white);
    transform: translateY(-2px);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-primary-red {
    background-color: var(--primary-red) !important;
}

.bg-secondary-black {
    background-color: var(--secondary-black) !important;
}

.bg-light-custom {
    background-color: var(--bg-light) !important;
}

.text-primary-red {
    color: var(--primary-red) !important;
}

.text-secondary-black {
    color: var(--secondary-black) !important;
}

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

.text-white {
    color: var(--white) !important;
}

.navbar-custom {
    background-color: var(--secondary-black);
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar-custom.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1px;
}

.navbar-custom .navbar-brand span {
    color: var(--white);
}

.navbar-custom .nav-link {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-red);
}

.navbar-custom .navbar-toggler {
    border-color: var(--primary-red);
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C41E3A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-black) 0%, #2a2a2a 50%, var(--primary-red-dark) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1554068865-24cecd4e34b8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3e%3cpath fill='%23FFFFFF' d='M0,120L1440,0L1440,120Z'/%3e%3c/svg%3e") no-repeat bottom;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-content .btn {
    margin-right: 1rem;
}

.hero-stats {
    position: relative;
    z-index: 2;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
}

.hero-stats .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
}

.hero-stats .stat-label {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-red-dark) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('https://images.unsplash.com/photo-1554068865-24cecd4e34b8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; */
    opacity: 0.15;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3e%3cpath fill='%23FFFFFF' d='M0,120L1440,0L1440,120Z'/%3e%3c/svg%3e") no-repeat bottom;
    z-index: 1;
}

.page-hero .content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
}

.sport-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.sport-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sport-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.sport-card .card-body {
    padding: 1.5rem;
}

.sport-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.sport-card .card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.sport-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.program-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.program-card .card-body {
    padding: 2rem;
}

.program-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.program-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-card .card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.program-card .card-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

.coach-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    text-align: center;
    padding: 2rem;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.coach-card .coach-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    margin-bottom: 1.5rem;
}

.coach-card .coach-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.coach-card .coach-specialty {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.coach-card .coach-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item .overlay h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-item .overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.filter-buttons {
    margin-bottom: 2rem;
    text-align: center;
}

.filter-buttons .btn {
    margin: 0 0.25rem;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-buttons .btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.testimonial-card {
    border: none;
    border-radius: 16px;
    padding: 2.5rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-card .testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-card .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-card .testimonial-author .author-info h6 {
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.testimonial-card .testimonial-author .author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
    font-weight: 700;
}

.cta-section .btn:hover {
    background-color: var(--secondary-black);
    color: var(--white);
    border-color: var(--secondary-black);
}

.blog-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-category {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.blog-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.blog-card .card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.blog-card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-sidebar {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.blog-sidebar h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.75rem;
}

.blog-sidebar h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.blog-sidebar .recent-post {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-sidebar .recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-sidebar .recent-post img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 1rem;
}

.blog-sidebar .recent-post h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.blog-sidebar .recent-post h6:hover {
    color: var(--primary-red);
}

.blog-sidebar .recent-post p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.blog-sidebar .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-sidebar .tag-cloud a {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.blog-sidebar .tag-cloud a:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: none;
}

.contact-form .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info-card {
    background: var(--secondary-black);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.contact-info-card .info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-card .info-item .icon i {
    color: var(--white);
    font-size: 1.1rem;
}

.contact-info-card .info-item h6 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-info-card .info-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-card .social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info-card .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.pricing-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    text-align: center;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-red);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card .card-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--secondary-black) 0%, #2a2a2a 100%);
}

.pricing-card.featured .card-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
}

.pricing-card .card-header h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card .card-header .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
}

.pricing-card.featured .card-header .price {
    color: var(--white);
}

.pricing-card .card-header .price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-card .card-body {
    padding: 2rem;
}

.pricing-card .card-body ul {
    list-style: none;
    padding: 0;
}

.pricing-card .card-body ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-card .card-body ul li:last-child {
    border-bottom: none;
}

.pricing-card .card-body ul li i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

.faq-section .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 12px !important;
    padding: 1.25rem 1.5rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(196, 30, 58, 0.08);
    color: var(--primary-red);
}

.faq-section .accordion-button::after {
    filter: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: '\f068';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.faq-section .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: auto;
    height: auto;
    font-size: 0.9rem;
    transition: var(--transition);
}

.faq-section .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-item:last-of-type {
    margin-bottom: 0;
}

.faq-section .accordion-item .accordion-header {
    margin-bottom: 0;
}

footer {
    background-color: var(--secondary-black);
    color: var(--white);
    padding: 4rem 0 0;
}

footer h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

footer ul li a i {
    margin-right: 0.5rem;
    width: 16px;
}

footer .footer-social {
    display: flex;
    gap: 0.75rem;
}

footer .footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

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

footer .footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

footer .footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

footer .footer-bottom a {
    color: var(--primary-red);
}

.timeline-section {
    position: relative;
}

.timeline-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-red);
    transform: translateX(-50%);
}

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

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-item .timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-red);
    border: 4px solid var(--white);
    transform: translateX(-50%);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.timeline-item .timeline-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.timeline-item .timeline-content h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.timeline-item .timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--white);
    transition: var(--transition);
}

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

.why-us-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-us-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.why-us-card h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-us-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row .feature-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-row .feature-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.feature-row .feature-content {
    padding: 2rem 3rem;
}

.feature-row .feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-row .feature-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.badge-custom {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-red);
}

.nav-pills .nav-link {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.scheduled-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.scheduled-item:hover {
    box-shadow: var(--shadow-md);
}

.scheduled-item .time {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-red);
    min-width: 120px;
}

.scheduled-item .details {
    flex: 1;
    padding-left: 1.5rem;
}

.scheduled-item .details h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.scheduled-item .details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.scheduled-item .sport-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scheduled-item .sport-badge.badminton {
    background-color: rgba(196, 30, 58, 0.1);
    color: var(--primary-red);
}

.scheduled-item .sport-badge.cricket {
    background-color: rgba(26, 26, 26, 0.1);
    color: var(--secondary-black);
}

.counter-section {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

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

.counter-item .counter-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.counter-item .counter-label {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
    margin: 1.5rem auto;
}

.dark-section {
    background-color: var(--secondary-black);
    color: var(--white);
}

.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5 {
    color: var(--white);
}

.dark-section p {
    color: rgba(255,255,255,0.7);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.search-form .form-control {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.search-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: none;
}

.search-form .btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .timeline-section::before {
        left: 30px;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    .timeline-item .timeline-dot {
        left: 30px;
    }
    .feature-row {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .feature-row .feature-content {
        padding: 2rem 0 0;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .hero-stats .stat-number {
        font-size: 2.5rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    .section-padding {
        padding: 3rem 0;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content .btn {
        display: block;
        margin-bottom: 0.75rem;
        width: 100%;
    }
    .hero-content .btn:last-child {
        margin-bottom: 0;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Premium Button Styles */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
    z-index: -1;
}

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

.btn-premium-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.4);
    color: var(--white);
}

.btn-premium-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-premium-outline:hover {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-premium-dark {
    background: var(--gradient-dark);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-premium-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.btn-premium-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.btn-premium-lg {
    padding: 20px 48px;
    font-size: 1.1rem;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg, 16px);
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.glow-orb.blue {
    width: 400px;
    height: 400px;
    background: rgba(196, 30, 58, 0.15);
}

.glow-orb.green {
    width: 300px;
    height: 300px;
    background: rgba(196, 30, 58, 0.12);
}

.glow-orb.orange {
    width: 350px;
    height: 350px;
    background: rgba(196, 30, 58, 0.1);
}
