:root {
    --primary-gold: #E8B923;
    --secondary-gold: #FFD700;
    --dark-gold: #B8860B;
    --primary-gradient: linear-gradient(135deg, #FFD700 0%, #E8B923 50%, #B8860B 100%);
    --text-color: #ffffff;
    --text-muted: #9CA3AF;
    --bg-body: #000000;
    --bg-section: #0A0A0A;
    --bg-card: rgba(255, 255, 255, 0.02);
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: 1px solid rgba(232, 185, 35, 0.15);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 20px 60px rgba(232, 185, 35, 0.2);
}

/* ===== PRELOADER PREMIUM ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.sprint-loader {
    width: 300px;
    height: 100px;
    position: relative;
    margin-bottom: 30px;
}

.track {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(232, 185, 35, 0.2);
}

.track::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: var(--primary-gradient);
    animation: track-glow 1.5s ease-in-out infinite;
}

.runner {
    position: absolute;
    bottom: 22px;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: sprint-run 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(232, 185, 35, 0.8));
}

@keyframes sprint-run {
    0%, 100% { left: 0; transform: scale(1); }
    50% { left: calc(100% - 40px); transform: scale(1.2); }
}

@keyframes track-glow {
    0%, 100% { width: 30%; opacity: 1; }
    50% { width: 70%; opacity: 0.6; }
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 6px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: pulse-text 2s ease-in-out infinite;
}

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

.loading-bar {
    width: 300px;
    height: 3px;
    background: rgba(232, 185, 35, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    animation: loading-fill 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(232, 185, 35, 0.8);
}

@keyframes loading-fill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 10000;
    box-shadow: 0 0 20px rgba(232, 185, 35, 0.8);
    transition: width 0.1s ease;
}

/* ===== PARTICLES & SPEED LINES ===== */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.speed-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(232, 185, 35, 0.4), transparent);
    animation: speed-move 3s linear infinite;
}

.speed-line:nth-child(1) { top: 20%; width: 200px; animation-delay: 0s; }
.speed-line:nth-child(2) { top: 40%; width: 300px; animation-delay: 0.5s; }
.speed-line:nth-child(3) { top: 60%; width: 250px; animation-delay: 1s; }
.speed-line:nth-child(4) { top: 80%; width: 180px; animation-delay: 1.5s; }
.speed-line:nth-child(5) { top: 50%; width: 220px; animation-delay: 2s; }

@keyframes speed-move {
    0% { left: -300px; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-color);
    line-height: 1.7;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(232, 185, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* Typography Premium */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    letter-spacing: 6px;
    filter: brightness(1.3) contrast(1.2);
    text-shadow: 0 0 30px rgba(232, 185, 35, 0.3);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 5rem;
    display: block;
    font-weight: 300;
}

.center { text-align: center; }

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    font-family: var(--font-body);
}

.btn-glow {
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(232, 185, 35, 0.4); }
    50% { box-shadow: 0 0 40px rgba(232, 185, 35, 0.8), 0 0 60px rgba(232, 185, 35, 0.4); }
}

.btn-magnetic {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(232, 185, 35, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(232, 185, 35, 0.3);
    transform: translateY(-4px);
}

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

/* Navbar - Ultra Premium */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(232, 185, 35, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 6px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo:hover {
    filter: brightness(1.2);
}

.nav-links { 
    display: flex; 
    align-items: center;
    gap: 50px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

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

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

.btn-nav {
    border: 2px solid var(--primary-gold);
    padding: 10px 28px;
    color: var(--primary-gold) !important;
    border-radius: 2px;
    background: rgba(232, 185, 35, 0.05);
}

.btn-nav:hover {
    background: var(--primary-gold);
    color: #000 !important;
}

.hamburger { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero Section - Ultra Premium */
.hero {
    min-height: 100vh;
    background: url('../images/hero.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%),
        radial-gradient(circle at 30% 50%, rgba(232, 185, 35, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 120px 0 0 0;
    border: none;
}

/* Large Typography - T.G.V SPRINT CLINIC */
.hero-big-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.big-text-quick,
.big-text-fier {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: 8px;
    text-transform: uppercase;
    position: relative;
}

/* T.G.V - Brilliant Gold */
.big-text-quick {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(232, 185, 35, 0.6));
    animation: pulse-glow 4s ease-in-out infinite;
}

/* SPRINT CLINIC - Brilliant Gold */
.big-text-fier {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(232, 185, 35, 0.6));
    animation: pulse-glow 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(232, 185, 35, 0.6)); }
    50% { filter: drop-shadow(0 0 60px rgba(232, 185, 35, 0.9)); }
}

/* Hero Name */
.hero-name {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 12px;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.hero-divider {
    width: 150px;
    height: 2px;
    background: var(--primary-gradient);
    margin: 40px 0;
    box-shadow: 0 0 30px rgba(232, 185, 35, 0.8);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* ===== HERO STATS COUNTER ===== */
.hero-stats {
    display: flex;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 4px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* ===== FLOATING CONTACT BUTTON ===== */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(232, 185, 35, 0.4);
    transition: var(--transition);
    animation: float-btn 3s ease-in-out infinite;
}

.floating-contact-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 60px rgba(232, 185, 35, 0.6);
}

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

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Sections Premium */
.section { 
    padding: 120px 0;
    position: relative;
}

.bg-darker {
    background: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 100px;
    align-items: center;
}

.about-img {
    position: relative;
    overflow: hidden;
}

.img-frame {
    position: relative;
    overflow: hidden;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-gold);
    transform: translate(15px, 15px);
    z-index: -1;
    transition: var(--transition);
}

.about-img:hover::before {
    transform: translate(0, 0);
}

.about-img img {
    width: 100%;
    height: auto;
    transition: var(--transition);
    filter: grayscale(20%);
}

.about-img:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* ===== FLOATING BADGES ===== */
.floating-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-gold);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: badge-float 4s ease-in-out infinite;
    z-index: 10;
}

.badge-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.floating-badge i {
    font-size: 1.2rem;
}

.floating-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(232, 185, 35, 0.4);
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2.0;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 300;
}

/* ===== EXPERTISE BADGES ===== */
.expertise-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 30px;
    justify-content: flex-start;
}

.expertise-badge {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(232, 185, 35, 0.2);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.expertise-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 185, 35, 0.2), transparent);
    transition: var(--transition);
}

.expertise-badge:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 185, 35, 0.3);
}

.expertise-badge:hover::before {
    left: 100%;
}

.badge-icon {
    font-size: 1.5rem;
    filter: grayscale(0);
    transition: var(--transition);
}

.expertise-badge:hover .badge-icon {
    transform: scale(1.2) rotate(10deg);
}

.expertise-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* ===== EXPERIENCE SHOWCASE ===== */
.experience-showcase {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 35px 20px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.experience-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.exp-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 2px;
    filter: brightness(1.3);
}

.exp-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exp-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .expertise-container {
        justify-content: center;
    }
    
    .expertise-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .badge-icon {
        font-size: 1.3rem;
    }
    
    .experience-showcase {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .exp-divider {
        width: 60px;
        height: 2px;
    }
    
    .exp-number {
        font-size: 2.5rem;
    }
    
    .exp-label {
        font-size: 0.75rem;
    }
}

.features-list {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    padding: 15px 0;
    border-bottom: 1px solid rgba(232, 185, 35, 0.1);
    transition: var(--transition);
}

.features-list li:hover {
    padding-left: 10px;
    border-bottom-color: rgba(232, 185, 35, 0.4);
}

.features-list i {
    color: var(--primary-gold);
    margin-right: 20px;
    font-size: 1.3rem;
    transition: var(--transition);
}

.features-list li:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* Services - Ultra Premium Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(232, 185, 35, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) translateZ(20px);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: var(--shadow-gold), 0 30px 80px rgba(0, 0, 0, 0.6);
    border-color: rgba(232, 185, 35, 0.3);
}

/* Featured Service Card */
.service-card.featured {
    border: 2px solid var(--primary-gold);
    background: rgba(232, 185, 35, 0.03);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: #000;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(232, 185, 35, 0.4);
}

/* Price Tag */
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0 35px;
}

.price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin: 30px 0 40px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
}

.service-features li i {
    color: var(--primary-gold);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 0.9rem;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
}

.service-icon {
    font-size: 3.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 20px rgba(232, 185, 35, 0.6));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.service-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.8;
}

/* Testimonials - Premium */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 50px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    transition: var(--transition);
}

.testimonial-card:hover::before {
    opacity: 0.4;
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(232, 185, 35, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(232, 185, 35, 0.2);
}

.testimonial-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

/* Contact - Ultra Premium */
.contact-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 100px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(232, 185, 35, 0.1);
}

.contact-item i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    margin-right: 25px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-size: 1.05rem;
}

.stadium-section {
    margin-top: 40px;
}

.stadium-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-align: center;
}

.stadium-image {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(232, 185, 35, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.stadium-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.stadium-location {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(232, 185, 35, 0.05);
    border-radius: 8px;
}

.stadium-location i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-right: 12px;
}

.stadium-location span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
}

.contact-form {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
    color: #fff;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.4s ease;
}

.form-group:focus-within::after {
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 5px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.form-group:focus-within label {
    color: var(--secondary-gold);
    transform: translateX(5px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

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

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Design - Comprehensive */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .big-text-quick,
    .big-text-fier {
        font-size: 7rem;
    }
    
    .hero-name {
        font-size: 3rem;
        letter-spacing: 6px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Tablets Portrait */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Mobile */
    .big-text-quick,
    .big-text-fier {
        font-size: 4.5rem;
        letter-spacing: 2px;
    }
    
    .hero-name {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-divider {
        width: 80px;
        margin: 25px 0;
    }
    
    .hero-stats {
        gap: 30px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }
    
    .floating-contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Speed lines mobile */
    .speed-line {
        display: none;
    }
    
    /* Sections Mobile */
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 3rem;
    }
    
    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-img::before {
        transform: translate(10px, 10px);
    }
    
    .floating-badge {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .badge-1 {
        top: 10px;
        right: -10px;
    }
    
    .badge-2 {
        bottom: 20px;
        left: -10px;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .price {
        font-size: 3rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    /* Contact Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 0;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .btn-nav {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1000;
    }
    
    /* Preloader mobile */
    .sprint-loader {
        width: 250px;
    }
    
    .loading-text {
        font-size: 1.5rem;
    }
    
    .loading-bar {
        width: 250px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero Ultra Mobile */
    .big-text-quick,
    .big-text-fier {
        font-size: 3rem;
        letter-spacing: 0;
    }
    
    .hero-name {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.7rem;
    }
    
    /* Sections Ultra Mobile */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    /* Services Ultra Mobile */
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .period {
        font-size: 0.85rem;
    }
    
    .service-badge {
        font-size: 0.6rem;
        padding: 6px 15px;
    }
    
    /* Contact Ultra Mobile */
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group label {
        font-size: 0.7rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    /* Logo Mobile */
    .logo {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    /* Floating button mobile */
    .floating-contact-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }
    
    /* Badges mobile */
    .floating-badge {
        padding: 8px 15px;
        font-size: 0.65rem;
    }
    
    .floating-badge i {
        font-size: 1rem;
    }
    
    /* Preloader ultra mobile */
    .sprint-loader {
        width: 200px;
        height: 80px;
    }
    
    .runner {
        width: 30px;
        height: 30px;
    }
    
    @keyframes sprint-run {
        0%, 100% { left: 0; transform: scale(1); }
        50% { left: calc(100% - 30px); transform: scale(1.2); }
    }
    
    .loading-text {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .loading-bar {
        width: 200px;
    }
}

/* ===== SPORTS BENEFITS SECTION ===== */
#sports-benefits {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-section) 50%, var(--bg-body) 100%);
    position: relative;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 60px 0;
}

.sport-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 185, 35, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.sport-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(232, 185, 35, 0.2);
}

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

.sport-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.sport-icon i {
    font-size: 2.5rem;
    color: #000;
}

.sport-card:hover .sport-icon {
    transform: scale(1.1) rotate(5deg);
}

.sport-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.sport-card:hover .sport-name {
    color: var(--secondary-gold);
}

.sport-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sport-benefits li {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.sport-benefits li i {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.sports-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: rgba(232, 185, 35, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(232, 185, 35, 0.2);
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive Sports Section */
@media (max-width: 1024px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .sport-card {
        padding: 30px 25px;
    }
    
    .sport-icon {
        width: 70px;
        height: 70px;
    }
    
    .sport-icon i {
        font-size: 2rem;
    }
    
    .sport-name {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

/* ===== GALLERY CAROUSEL ===== */
#gallery {
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
    position: relative;
}

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

.carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 30px 30px;
    color: var(--text-color);
}

.carousel-caption h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(232, 185, 35, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(232, 185, 35, 0.3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.indicator:hover {
    background: rgba(232, 185, 35, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-gold);
    box-shadow: 0 0 15px rgba(232, 185, 35, 0.8);
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: pulse-indicator 2s ease-in-out infinite;
}

@keyframes pulse-indicator {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 400px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 25px 20px 20px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
}

/* ===== CUSTOM PREMIUM ANIMATIONS ===== */
@keyframes premiumFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premiumSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes premiumGlow {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: brightness(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.3);
    }
}

/* Override AOS animations with custom premium ones */
[data-aos="zoom-in"] {
    animation: premiumGlow 0.8s ease-out forwards;
}

[data-aos="fade-up"] {
    animation: premiumFadeIn 0.8s ease-out forwards;
}

[data-aos="fade-left"],
[data-aos="fade-right"] {
    animation: premiumSlideIn 0.8s ease-out forwards;
}

/* Ensure section titles are always visible */
.section-title {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Add stagger effect for delayed elements */
[data-aos-delay="100"] {
    animation-delay: 0.1s;
}

[data-aos-delay="200"] {
    animation-delay: 0.2s;
}

[data-aos-delay="300"] {
    animation-delay: 0.3s;
}

[data-aos-delay="400"] {
    animation-delay: 0.4s;
}

[data-aos-delay="500"] {
    animation-delay: 0.5s;
}

[data-aos-delay="600"] {
    animation-delay: 0.6s;
}

[data-aos-delay="800"] {
    animation-delay: 0.8s;
}

[data-aos-delay="1000"] {
    animation-delay: 1s;
}

[data-aos-delay="1200"] {
    animation-delay: 1.2s;
}

