/* Modern NoBall Sports Club - Loveable Inspired Design */

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

:root {
    /* Modern Color Palette - Dark Theme */
    --primary-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    --secondary-gradient: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    --accent-gradient: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    --success-gradient: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    --warning-gradient: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Floating WhatsApp Button (shared) */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.floating-whatsapp i { font-size: 28px; }
@media (max-width: 480px) {
    .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

/* All headings use display font */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.05;
    animation: float 25s infinite linear;
    filter: blur(1px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--accent-gradient);
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--success-gradient);
    top: 60%;
    right: 8%;
    animation-delay: -8s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--warning-gradient);
    top: 35%;
    right: 25%;
    animation-delay: -15s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--secondary-gradient);
    bottom: 25%;
    left: 15%;
    animation-delay: -20s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    top: 45%;
    left: 60%;
    animation-delay: -12s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Modern Loading Screen */
.modern-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.8s ease;
}

.modern-loading.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loading-orb {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-8);
}

.orb-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: orbSpin 3s ease-in-out infinite;
}

.orb-pulse {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes orbSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

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

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

.brand-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--white);
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* Modern Header */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: all 0.3s ease;
}

.nav-glass {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-3);
}

.mobile-toggle span {
    width: 25px !important;
    height: 3px !important;
    background: var(--white) !important;
    border-radius: var(--radius-full) !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-6);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: fadeInUp 1s ease 0.4s both;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(132, 204, 22, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.6s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-gradient {
    color: #84cc16;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(132, 204, 22, 0.4);
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-gradient.green {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-gradient.blue {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-gradient.orange {
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-modern.primary {
    background: var(--white);
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
}

.btn-modern.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-modern.secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.btn-modern.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-modern.large {
    padding: var(--space-5) var(--space-8);
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    animation: fadeInUp 1s ease 1s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: var(--space-1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease 1.2s both;
}

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

.animated-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: slowRotate 20s linear infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.rotating-logo:hover {
    animation-duration: 2s;
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.sport-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.sport-orb:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.sport-orb i {
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
}

.sport-orb span {
    font-size: 0.75rem;
    font-weight: 500;
}

.sport-orb.padel {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.sport-orb.cricket {
    top: 100px;
    right: 80px;
    animation-delay: -1s;
}

.sport-orb.futsal {
    bottom: 100px;
    left: 80px;
    animation-delay: -2s;
}

.sport-orb.pickleball {
    bottom: 50px;
    right: 50px;
    animation-delay: -3s;
}

.central-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    animation: pulse 3s ease-in-out infinite;
}

.orb-content {
    text-align: center;
    color: var(--white);
}

.orb-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Sports Section */
.sports-modern {
    padding: var(--space-20) 0;
    background: var(--white);
    position: relative;
}

.container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.section-badge.dark {
    background: var(--gray-800);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-description.white {
    color: rgba(255, 255, 255, 0.8);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.sport-card.modern {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    cursor: pointer;
}

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

.sport-card.modern:hover .card-glow {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-2xl);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.court-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.sport-card.modern:hover .court-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sport-card.modern:hover .image-overlay {
    opacity: 1;
}

.image-overlay .sport-icon-container {
    margin-bottom: 0;
}

.image-overlay .sport-icon {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: var(--space-8);
}

.sport-icon-container {
    margin-bottom: var(--space-6);
}

.sport-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.padel-icon {
    background: var(--accent-gradient);
}

.cricket-icon {
    background: var(--success-gradient);
}

.futsal-icon {
    background: var(--primary-gradient);
}

.pickleball-icon {
    background: var(--warning-gradient);
}

.sport-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.sport-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.sport-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.feature-tag {
    padding: var(--space-1) var(--space-3);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sport-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.card-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

/* Experience Section */
.experience-modern {
    padding: var(--space-20) 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.features-list {
    margin-top: var(--space-8);
}

.feature-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-1);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.experience-visual {
    position: relative;
    height: 400px;
}

.visual-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    animation: float 8s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: 20%;
    animation-delay: -2s;
}

.element-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: -4s;
}

/* Contact Section */
.contact-modern {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.contact-methods {
    margin-top: var(--space-8);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.875rem;
}

.method-value {
    color: var(--gray-600);
    font-size: 1rem;
}

.cta-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.cta-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

/* Footer */
.footer-modern {
    background: var(--gray-900);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.link-group h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: var(--space-2);
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

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

/* Gallery Section */
.gallery-modern {
    background: var(--white);
    padding: var(--space-20) 0;
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: var(--space-8) var(--space-6) var(--space-6);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.slide-overlay p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-800);
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.gallery-nav.prev {
    left: var(--space-4);
}

.gallery-nav.next {
    right: var(--space-4);
}

.gallery-dots {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

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

.image-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

#modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.modal-info {
    padding: var(--space-6);
    text-align: center;
}

.modal-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    /* Move logo to top on mobile */
    .hero-container {
        flex-direction: column-reverse;
        gap: var(--space-8);
    }
    
    .hero-visual {
        order: -1;
        height: 200px;
        margin-bottom: 0;
    }
    
    .hero-content {
        order: 1;
    }
    
    .rotating-logo {
        width: 150px;
        height: 150px;
    }
    
    .logo-glow {
        width: 200px;
        height: 200px;
    }
    
    .nav-links {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #1a202c !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 1000 !important;
        gap: var(--space-6) !important;
        padding: var(--space-8) !important;
        list-style: none !important;
        margin: 0 !important;
    }
    
    .nav-links.active {
        display: flex !important;
        animation: fadeIn 0.3s ease !important;
    }
    
    .nav-links.active ~ .bg-animation {
        display: none;
    }
    
    body:has(.nav-links.active) .bg-animation {
        display: none;
    }
    
    .nav-link {
        font-size: 1.4rem !important;
        font-weight: 600 !important;
        padding: var(--space-4) var(--space-8) !important;
        border: 2px solid rgba(132, 204, 22, 0.3) !important;
        border-radius: var(--radius-full) !important;
        transition: all 0.3s ease !important;
        background: rgba(132, 204, 22, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        width: 250px !important;
        text-align: center !important;
        color: var(--white) !important;
        text-decoration: none !important;
        position: relative !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    .nav-link::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.5s;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: rgba(132, 204, 22, 0.3);
        border-color: #84cc16;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(132, 204, 22, 0.3);
    }
    
    .mobile-toggle {
        display: flex !important;
        z-index: 1001 !important;
        position: relative !important;
        background: none !important;
        border: none !important;
        padding: var(--space-3) !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        flex-direction: column !important;
        gap: 4px !important;
    }
    
    .mobile-toggle:hover {
        background: none !important;
        transform: scale(1.05) !important;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-4);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    /* Logo positioning handled above */
    
    .hero-modern {
        padding: var(--space-20) 0 var(--space-16);
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 0 var(--space-6);
        gap: var(--space-10);
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .container-modern {
        padding: 0 var(--space-6);
        max-width: 100%;
    }
    
    .sports-modern, .gallery-modern, .experience-modern, .contact-modern {
        padding: var(--space-16) 0;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .title-main {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: var(--space-3);
        font-weight: 800;
        letter-spacing: -0.02em;
    }
    
    .title-accent {
        font-size: 1.3rem;
        line-height: 1.2;
        font-weight: 600;
    }
    
    .hero-description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: var(--space-8);
        padding: 0 var(--space-4);
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .hero-badge {
        margin-bottom: var(--space-4);
        transform: scale(0.9);
    }
    
    .hero-actions {
        margin-top: var(--space-6);
        gap: var(--space-4);
    }
    
    .btn-modern {
        padding: var(--space-4) var(--space-6);
        font-size: 0.95rem;
        border-radius: var(--radius-xl);
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Minimize visual clutter on mobile */
    .floating-shape {
        opacity: 0.02;
    }
    
    /* Better spacing for mobile */
    .section-header {
        margin-bottom: var(--space-8);
    }
    
    .features-list {
        margin-top: var(--space-6);
    }
    
    .feature-item {
        margin-bottom: var(--space-4);
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: var(--space-2) var(--space-4);
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: var(--space-3);
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.4;
        opacity: 0.8;
    }
    
    /* Logo sizing handled above */
    
    .visual-container {
        margin-bottom: var(--space-12);
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-nav.prev {
        left: var(--space-2);
    }
    
    .gallery-nav.next {
        right: var(--space-2);
    }
    
    .sport-orb {
        width: 80px;
        height: 80px;
    }
    
    .central-orb {
        width: 120px;
        height: 120px;
    }
    
    .location-content {
        display: block !important;
        gap: 2rem !important;
    }
    
    .experience-content {
        grid-template-columns: 1fr !important;
        gap: var(--space-8) !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: var(--space-8) !important;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        padding: var(--space-12) 0 var(--space-10);
        min-height: 90vh;
    }
    
    /* Ultra minimalistic design for small screens */
    .floating-shape {
        opacity: 0.01;
        animation-duration: 40s;
    }
    
    /* Reduce visual noise */
    .logo-glow {
        opacity: 0.3;
    }
    
    .hero-badge {
        transform: scale(0.85);
        margin-bottom: var(--space-3);
    }
    
    .hero-container {
        padding: 0 var(--space-4);
        gap: var(--space-6);
    }
    
    .container-modern {
        padding: 0 var(--space-4);
    }
    
    .sports-modern, .gallery-modern, .experience-modern, .contact-modern {
        padding: var(--space-12) 0;
    }
    .container-modern {
        padding: 0 var(--space-4);
    }
    
    .hero-container {
        padding: 0 var(--space-4);
    }
    
    .nav-glass {
        padding: 0 var(--space-4);
    }
    
    .hero-actions {
        gap: var(--space-3);
    }
    
    .hero-stats {
        gap: var(--space-6);
    }
    
    .experience-visual {
        height: 250px;
    }
    
    .floating-shape {
        opacity: 0.03;
        animation-duration: 35s;
    }
    
    .shape-1 { width: 80px; height: 80px; }
    .shape-2 { width: 50px; height: 50px; }
    .shape-3 { width: 35px; height: 35px; }
    .shape-4 { width: 100px; height: 100px; }
    .shape-5 { width: 25px; height: 25px; }
    
    .element {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-container {
        padding: 0 var(--space-3);
        gap: var(--space-5);
    }
    
    .rotating-logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-glow {
        width: 150px;
        height: 150px;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-accent {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 var(--space-2);
    }
    
    .btn-modern {
        padding: var(--space-3) var(--space-5);
        font-size: 0.9rem;
    }
    
    .nav-glass {
        padding: 0 var(--space-3);
    }
}
