/* Padel Portal - Custom Styles */

/* Auth Pages - Padel Court Theme */
.auth-court-background {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1e40af 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.auth-court-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.auth-court-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 80px;
    border: 3px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.auth-card .card-body {
    background: transparent;
}

.padel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    position: relative;
}

.padel-icon::before {
    content: '🎾';
    font-size: 2rem;
}

.padel-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.auth-court-background .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.auth-court-background .btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.auth-court-background .btn-outline-danger,
.auth-court-background .btn-outline-primary {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.auth-court-background .btn-outline-danger:hover,
.auth-court-background .btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Global Variables & Base */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #FF6B6B;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-light: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

/* Import Google Fonts */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}

/* Force Poppins everywhere */
* {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Global Container & Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-3xl) 0;
    margin: 0;
}

/* Global Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); font-weight: 600; }
h6 { font-size: clamp(1rem, 1.5vw, 1rem); font-weight: 600; }

/* Global Paragraphs */
p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* Global Cards */
.card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

/* Global Buttons */
.btn {
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    border: none;
    cursor: pointer;
}

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

/* Global Icons */
.bi {
    vertical-align: middle;
    line-height: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #4ECDC4 50%, #45B7D1 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white !important;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.hero-section .display-4 {
    font-weight: 800;
    line-height: 1.1;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-lg);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400;
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--spacing-lg);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.stat-item span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-concept-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
}

.hero-concept-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--spacing-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-concept-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.hero-cards-stack {
    position: relative;
    height: 200px;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    width: 200px;
    transition: all 0.3s ease;
}

.hero-card.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.hero-card.card-2 {
    top: 20px;
    left: 80px;
    z-index: 2;
}

.hero-card.card-3 {
    top: 40px;
    left: 160px;
    z-index: 1;
}

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

.hero-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.hero-card h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.hero-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Feature Cards */
.feature-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.feature-card h3 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    font-weight: 400;
    line-height: 1.7;
}

/* Promise Section */
.promise-section {
    background: var(--bg-secondary);
    padding: var(--spacing-3xl) 0;
}

.promise-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.promise-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.promise-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.promise-visual {
    position: relative;
}

.concept-image-container {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
}

.concept-image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    padding: var(--spacing-sm);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-md);
}

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

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.25rem;
}

.author-info strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Navigation */
.navbar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: white !important;
    letter-spacing: -0.5px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    overflow: hidden;
}

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

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    border-radius: 20px 20px 0 0 !important;
    padding: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

/* Cuando card-header tiene bg-primary, usar fondo morado con texto blanco */
.card-header.bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-bottom: none;
}

.card-header.bg-primary h3,
.card-header.bg-primary h4,
.card-header.bg-primary h5,
.card-header.bg-primary h6 {
    color: white !important;
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    width: 300px;
    height: 300px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-light {
    background: white;
    color: #1e293b !important;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #1e293b !important;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: #FF6B6B !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Forms */
.form-control {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
    color: #1e293b;
}

.form-control:focus {
    border-color: #4ECDC4;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.15);
    background: white;
    transform: translateY(-1px);
}

.form-label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    margin-top: auto;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    color: white !important;
}

footer h5 {
    font-weight: 700;
    color: white !important;
}

footer p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Error Pages */
.error-page {
    padding: 4rem 0;
}

.error-page .display-1 {
    font-weight: 800;
    font-size: 8rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dashboard */
.dashboard-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    overflow: hidden;
}

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

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

.dashboard-card .bi {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
}

.alert-danger {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
}

.alert-success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-cards-stack {
        position: static;
        margin-top: 2rem;
    }
    
    .hero-card {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .hero-card-1 {
        transform: translateY(0);
    }
    
    .hero-card-2 {
        transform: translateY(0);
        left: 0;
    }
    
    .hero-card-3 {
        transform: translateY(0);
        left: 0;
    }
    
    /* Ecosystem Responsive */
    .ecosystem-nodes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ecosystem-core {
        max-width: 250px;
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .node-card {
        padding: 1.5rem;
    }
    
    .node-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* How it Works Responsive */
    .timeline-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-step {
        min-width: auto;
        width: 100%;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.75rem;
        top: -8px;
        right: -8px;
    }
    
    .step-icon {
        font-size: 1.25rem;
    }
    
    .how-benefits {
        margin-top: 2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-testimonials {
        margin-top: 2rem;
    }
    
    .testimonial-quote {
        padding: 1.5rem;
    }
    
    /* Player Benefits Responsive */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-large {
        padding: 2rem;
    }
    
    .benefit-medium {
        padding: 1.5rem;
    }
    
    .benefit-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-icon-medium {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .satisfaction-card {
        padding: 1.5rem;
    }
    
    .satisfaction-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .player-testimonials {
        margin-top: 2rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FF5252 0%, #3DBBB3 100%);
}

/* Fix text colors with higher specificity */
.text-muted {
    color: var(--text-muted) !important;
    font-weight: 500;
}

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

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

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

.text-info {
    color: #06B6D4 !important;
}

.text-danger {
    color: #EF4444 !important;
}

/* Section backgrounds */
section {
    padding: var(--spacing-3xl) 0;
    margin: 0;
}

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

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

/* Icons */
.bi {
    vertical-align: middle;
}

/* Spacing improvements */
.container {
    max-width: 1200px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 800; }
h3 { font-size: 2rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

/* Ecosystem Section Styles */
.ecosystem-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.ecosystem-title {
    font-size: clamp(2rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.ecosystem-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.ecosystem-stats {
    margin-bottom: var(--spacing-3xl);
}

.stat-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.ecosystem-diagram {
    margin-top: 4rem;
}

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

.ecosystem-core {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.ecosystem-core i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ecosystem-core h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.ecosystem-core p {
    opacity: 0.9;
    margin: 0;
}

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

.node-group {
    height: 100%;
}

.node-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.node-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.node-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.node-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.node-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.node-icon.players {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.node-icon.clubs {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.node-icon.organizers {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.node-icon.professionals {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.node-features {
    line-height: 1.6;
}

.ecosystem-cta {
    text-align: center;
    margin-top: 4rem;
}

.ecosystem-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.ecosystem-cta p {
    color: #64748b;
    margin-bottom: 2rem;
}

/* How it Works Section */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.how-title {
    font-size: clamp(2rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.how-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.process-timeline {
    margin-bottom: 3rem;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    color: white;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF6B6B;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    font-size: 1.5rem;
    z-index: 1;
}

.timeline-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.timeline-step p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.timeline-arrow {
    display: flex;
    align-items: center;
    color: #667eea;
    font-size: 2rem;
    margin-top: 2rem;
}

.how-benefits {
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.process-testimonials {
    margin-top: 3rem;
}

.testimonial-quote {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.testimonial-quote blockquote {
    font-style: italic;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
    padding-left: 1rem;
}

.testimonial-quote cite {
    color: #1e293b;
    font-weight: 600;
    font-style: normal;
}

/* Player Benefits Section */
.player-benefits {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.benefits-title {
    font-size: clamp(2rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.benefits-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.satisfaction-stats {
    margin-bottom: var(--spacing-3xl);
}

.satisfaction-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.satisfaction-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.satisfaction-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.benefit-large {
    grid-column: 1 / -1;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.benefit-medium {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-medium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.benefit-icon-medium {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.25rem;
}

.benefit-large h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-medium h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-large p,
.benefit-medium p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.benefit-image {
    border-radius: 12px;
    overflow: hidden;
}

.benefit-small-image {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
}

.player-testimonials {
    margin-top: 3rem;
}

.player-testimonials h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: #F59E0B;
}

.testimonial-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e293b;
}

.testimonial-author strong {
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: #64748b;
}

/* Footer Professional - Redesigned */
.footer-professional {
    background: linear-gradient(135deg, var(--text-primary) 0%, #2c3e50 100%);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-light);
    margin-bottom: var(--spacing-md);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--bg-light);
    opacity: 0.9;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-light);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
    margin: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-stats .stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.footer-stats .stat-item span {
    font-size: 0.85rem;
    color: var(--bg-light);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--bg-light);
    font-size: 0.9rem;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
}

.legal-links li {
    display: inline;
}

.legal-links a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.legal-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

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

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

.newsletter-form .input-group .form-control {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form .input-group .form-control::placeholder {
    color: var(--bg-light);
    opacity: 0.7;
}

.newsletter-form .input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: white;
}

.newsletter-form .btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Enhanced Responsive Design */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-section .display-4 {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        height: 600px;
    }
}

/* Large Devices (1200px to 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section .display-4 {
        font-size: 3rem;
    }
}

/* Medium Large Devices (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 450px;
    }
    
    .hero-cards-stack {
        height: 350px;
    }
    
    .hero-card {
        width: 220px;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-section .display-4 {
        font-size: 2.2rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: var(--spacing-lg);
    }
    
    .hero-cards-stack {
        height: 300px;
    }
    
    .hero-card {
        width: 200px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .stat-item {
        min-width: 150px;
    }
    
    .ecosystem-nodes {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .timeline-container {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-md) 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefit-large {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-section {
        min-height: 60vh;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-section .display-4 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .hero-cards-stack {
        height: 250px;
    }
    
    .hero-card {
        width: 180px;
        padding: var(--spacing-sm);
    }
    
    .hero-card h5 {
        font-size: 0.8rem;
    }
    
    .hero-card p {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        margin-bottom: var(--spacing-lg);
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-item strong {
        font-size: 1.2rem;
    }
    
    .stat-item span {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .ecosystem-nodes {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .ecosystem-core {
        width: 120px;
        height: 120px;
        padding: var(--spacing-md);
    }
    
    .ecosystem-core i {
        font-size: 1.5rem;
    }
    
    .ecosystem-core h3 {
        font-size: 0.9rem;
    }
    
    .ecosystem-core p {
        font-size: 0.7rem;
    }
    
    .timeline-step {
        padding: var(--spacing-md);
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .step-icon {
        font-size: 1.2rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-icon-medium {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (575px and down) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-section {
        min-height: 50vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-section .display-4 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-cards-stack {
        height: 200px;
    }
    
    .hero-card {
        width: 160px;
        padding: var(--spacing-sm);
    }
    
    .hero-card h5 {
        font-size: 0.75rem;
    }
    
    .hero-card p {
        font-size: 0.65rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-item strong {
        font-size: 1rem;
    }
    
    .stat-item span {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
    
    .btn-lg {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: var(--spacing-sm) !important;
    }
    
    .ecosystem-stats .row {
        gap: var(--spacing-sm);
    }
    
    .stat-card {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .node-card {
        padding: var(--spacing-md);
    }
    
    .node-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-step {
        padding: var(--spacing-sm);
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .step-icon {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: var(--spacing-sm);
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-icon-medium {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: var(--spacing-sm);
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .role-card {
        padding: var(--spacing-md);
    }
    
    .role-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .event-card {
        padding: var(--spacing-sm);
    }
    
    .event-meta {
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-professional {
        padding: var(--spacing-2xl) 0 var(--spacing-md);
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-heading {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: var(--spacing-md);
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .footer-stats {
        margin: var(--spacing-2xl) 0 var(--spacing-md);
    }
    
    .footer-stats .row {
        gap: var(--spacing-sm);
    }
    
    .footer-stats .stat-item strong {
        font-size: 1.5rem;
    }
    
    .footer-stats .stat-item span {
        font-size: 0.75rem;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .newsletter-form {
        margin-top: var(--spacing-md);
    }
    
    .newsletter-form .btn {
        width: 100%;
        margin-top: var(--spacing-sm);
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, #2c3e50 100%);
    color: white;
    padding: var(--spacing-md) 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: block !important;
    visibility: visible !important;
}

.cookie-banner.show {
    transform: translateY(0);
    display: block !important;
    visibility: visible !important;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-content {
    flex: 1;
    min-width: 250px;
}

.cookie-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--bg-light);
    opacity: 0.9;
    margin: 0;
}

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

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

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-color);
    border: none;
    text-decoration: underline;
    font-size: 0.85rem;
}

.cookie-btn-settings:hover {
    color: var(--secondary-color);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .cookie-content {
        min-width: auto;
        text-align: center;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn-settings {
        width: auto;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: var(--spacing-sm) 0;
    }
    
    .cookie-title {
        font-size: 0.9rem;
    }
    
    .cookie-text {
        font-size: 0.8rem;
    }
    
    .cookie-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
    }
}
