/* ============================================
   SRPSKI INSAJDER - Main Stylesheet
   Version: 2.0.0 - Premium Sports Edition
   Author: D. Svilenković
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colors - Serbian Flag Palette */
    --color-primary: #C8102E;
    --color-primary-dark: #9B0D24;
    --color-primary-light: #DC3545;
    --color-primary-glow: rgba(200, 16, 46, 0.4);
    --color-secondary: #0C3B7C;
    --color-secondary-dark: #082B5A;
    --color-secondary-light: #1A5BB5;
    --color-secondary-glow: rgba(12, 59, 124, 0.3);
    
    /* Neutrals */
    --color-white: #FFFFFF;
    --color-off-white: #FAFBFC;
    --color-gray-50: #F8F9FA;
    --color-gray-100: #F1F3F5;
    --color-gray-200: #E9ECEF;
    --color-gray-300: #DEE2E6;
    --color-gray-400: #ADB5BD;
    --color-gray-500: #6C757D;
    --color-gray-600: #495057;
    --color-gray-700: #343A40;
    --color-gray-800: #212529;
    --color-gray-900: #0D1117;
    
    /* Gradients - Serbian Flag: CRVENO-PLAVO-BELO */
    --gradient-hero: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 50%, #FFFFFF 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(200,16,46,0.03) 0%, rgba(200,16,46,0.03) 33%, rgba(12,59,124,0.03) 33%, rgba(12,59,124,0.03) 66%, rgba(255,255,255,0.5) 66%, rgba(255,255,255,0.5) 100%);
    --gradient-section-alt: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    
    /* Solid color gradients */
    --gradient-red: linear-gradient(135deg, #C8102E 0%, #E31837 50%, #C8102E 100%);
    --gradient-blue: linear-gradient(135deg, #0C3B7C 0%, #1450A3 50%, #0C3B7C 100%);
    
    /* Serbian flag order: Crveno → Plavo → Belo - Smooth transitions */
    --gradient-serbia: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary) 25%, var(--color-secondary) 50%, var(--color-secondary) 75%, var(--color-white) 100%);
    --gradient-serbia-soft: linear-gradient(180deg, rgba(200,16,46,0.15) 0%, rgba(200,16,46,0.12) 30%, rgba(12,59,124,0.12) 50%, rgba(12,59,124,0.15) 70%, rgba(255,255,255,0.8) 100%);
    --gradient-serbia-horizontal: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 25%, var(--color-secondary) 50%, var(--color-secondary) 75%, var(--color-white) 100%);
    
    /* Animated gradient - Smooth blend */
    --gradient-animated: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-white) 100%);
    
    /* Two-color combinations - Smooth transitions */
    --gradient-red-blue: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 35%, var(--color-secondary) 65%, var(--color-secondary) 100%);
    --gradient-blue-white: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary) 35%, var(--color-white) 65%, var(--color-white) 100%);
    --gradient-red-white: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 35%, var(--color-white) 65%, var(--color-white) 100%);
    
    /* Mesh background - all 3 colors */
    --gradient-mesh: radial-gradient(at 20% 20%, rgba(200, 16, 46, 0.08) 0px, transparent 50%),
                     radial-gradient(at 80% 10%, rgba(12, 59, 124, 0.08) 0px, transparent 50%),
                     radial-gradient(at 50% 50%, rgba(255, 255, 255, 0.9) 0px, transparent 70%),
                     radial-gradient(at 10% 60%, rgba(12, 59, 124, 0.06) 0px, transparent 50%),
                     radial-gradient(at 90% 50%, rgba(200, 16, 46, 0.06) 0px, transparent 50%),
                     radial-gradient(at 30% 90%, rgba(200, 16, 46, 0.08) 0px, transparent 50%),
                     radial-gradient(at 70% 80%, rgba(12, 59, 124, 0.08) 0px, transparent 50%);
    
    /* Typography - Modern Sports Fonts */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-accent: 'Oswald', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* 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;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow-red: 0 0 40px rgba(200, 16, 46, 0.3);
    --shadow-glow-blue: 0 0 40px rgba(30, 58, 95, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(200, 16, 46, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-regular);
    line-height: var(--leading-relaxed);
    color: var(--color-gray-700);
    background: var(--gradient-hero);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: -1;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--color-gray-900);
}

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   ANIMATIONS - Serbian Colors
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* NEW: Breathing/Pulsing animation */
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* NEW: Glowing border animation */
@keyframes glowBorder {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(200, 16, 46, 0.3), 
                    0 0 10px rgba(200, 16, 46, 0.2),
                    0 0 15px rgba(200, 16, 46, 0.1);
    }
    50% { 
        box-shadow: 0 0 10px rgba(12, 59, 124, 0.4), 
                    0 0 20px rgba(12, 59, 124, 0.3),
                    0 0 30px rgba(12, 59, 124, 0.2);
    }
}

/* NEW: Rotating animation */
@keyframes rotateSlowly {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* NEW: Wave animation */
@keyframes wave {
    0%, 100% { transform: translateY(0) scaleY(1); }
    25% { transform: translateY(-5px) scaleY(1.1); }
    50% { transform: translateY(0) scaleY(1); }
    75% { transform: translateY(5px) scaleY(0.9); }
}

/* NEW: Shake animation for attention */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* NEW: Bounce in animation */
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* NEW: Slide and fade */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

/* NEW: Text reveal animation */
@keyframes textReveal {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

/* NEW: Ripple effect */
@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

/* NEW: Floating particles enhanced */
@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) translateX(10px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) translateX(-15px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-40px) translateX(5px) rotate(270deg);
        opacity: 0.7;
    }
}

/* NEW: Glow pulse for icons */
@keyframes glowPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 5px currentColor);
    }
    50% { 
        filter: drop-shadow(0 0 15px currentColor) drop-shadow(0 0 25px currentColor);
    }
}

/* Color cycling: Crveno → Plavo → Belo - SMOOTH */
@keyframes colorCycle {
    0%, 100% { 
        background-color: var(--color-primary);
        box-shadow: 0 0 15px rgba(200, 16, 46, 0.3);
    }
    33% { 
        background-color: var(--color-secondary);
        box-shadow: 0 0 15px rgba(12, 59, 124, 0.3);
    }
    66% { 
        background-color: var(--color-white);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }
}

@keyframes colorCycleText {
    0%, 100% { color: var(--color-primary); }
    50% { color: var(--color-secondary); }
}

@keyframes colorCycleBorder {
    0%, 100% { border-color: var(--color-primary); }
    50% { border-color: var(--color-secondary); }
}

@keyframes serbiaGradientMove {
    0%, 100% { 
        background: var(--color-primary); 
        box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
    }
    50% { 
        background: var(--color-secondary); 
        box-shadow: 0 4px 20px rgba(12, 59, 124, 0.4);
    }
}

/* Smooth color pulse animation */
/* Diagonal color sweep - red to blue and back */
@keyframes smoothColorPulse {
    0% { 
        background: var(--color-primary);
        box-shadow: 0 4px 15px rgba(200, 16, 46, 0.25);
    }
    50% { 
        background: var(--color-secondary);
        box-shadow: 0 4px 15px rgba(12, 59, 124, 0.25);
    }
    100% { 
        background: var(--color-primary);
        box-shadow: 0 4px 15px rgba(200, 16, 46, 0.25);
    }
}

/* Diagonal sweep overlay animation */
@keyframes diagonalSweep {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Page load animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ripple effect for buttons */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
}

/* Typing cursor effect */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Morphing shape animation */
@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* 3D rotation animation */
@keyframes rotate3d {
    0% { transform: perspective(1000px) rotateY(0deg); }
    100% { transform: perspective(1000px) rotateY(360deg); }
}

/* Scale pulse animation */
@keyframes scalePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(200, 16, 46, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-4) var(--container-padding);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    position: relative;
}

.nav__logo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-regular);
    letter-spacing: 0.15em;
    line-height: 1.1;
}

.nav__logo-author {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--color-gray-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.text--blue {
    color: var(--color-secondary);
}

.text--red {
    color: var(--color-primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav__link {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-600);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav__link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: -1;
}

.nav__link:hover::before {
    width: 150px;
    height: 150px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav__link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: var(--space-2) var(--space-5);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%, var(--color-secondary) 100%);
    background-size: 200% 200%;
    color: var(--color-white);
    border-radius: var(--radius-md);
    transition: all 0.6s ease;
    animation: diagonalSweep 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.2);
}

.nav__link--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav__link--cta:hover::before {
    left: 100%;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.4), 0 10px 30px rgba(12, 59, 124, 0.2);
    color: var(--color-white);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--color-gray-200);
        padding: var(--space-4);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__link {
        display: block;
        padding: var(--space-4);
        font-size: var(--text-base);
        text-align: center;
        border-bottom: 1px solid var(--color-gray-100);
    }
    
    .nav__link::after {
        display: none;
    }
    
    .nav__link--cta {
        margin-top: var(--space-4);
        border-bottom: none;
    }
}

/* ============================================
   HERO SECTION - PREMIUM SPORTS DESIGN
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(200, 16, 46, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(30, 58, 95, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 20%, rgba(200, 16, 46, 0.08) 0%, transparent 50%);
    animation: pulse-glow 8s ease-in-out infinite;
}

/* Geometric patterns */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(200, 16, 46, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 16, 46, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
}

.hero__container {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-24) var(--container-padding);
    text-align: center;
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero__badge {
    display: inline-block;
    padding: var(--space-2) var(--space-6);
    background: rgba(200, 16, 46, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    opacity: 0;
    animation: heroReveal 1s ease 0.1s forwards;
}

.hero__badge-text {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Hero Stats */
.hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-6);
    margin-bottom: var(--space-8);
    opacity: 0;
    animation: heroReveal 1s ease 0.5s forwards;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.hero__stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero__stat-icon {
    font-size: var(--text-xl);
}

.hero__stat-text {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-700);
    letter-spacing: 0.05em;
}

/* Sports Icons Background */
.hero__sports-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sports-icon {
    position: absolute;
    opacity: 0.1;
    animation: floatIcon 20s ease-in-out infinite;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.sports-icon--1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
    color: var(--color-primary);
    animation-delay: 0s;
}

.sports-icon--2 {
    width: 65px;
    height: 65px;
    top: 20%;
    right: 10%;
    color: var(--color-secondary);
    animation-delay: -4s;
}

.sports-icon--3 {
    width: 55px;
    height: 55px;
    bottom: 35%;
    left: 12%;
    color: var(--color-secondary);
    animation-delay: -8s;
}

.sports-icon--4 {
    width: 60px;
    height: 60px;
    top: 55%;
    right: 6%;
    color: var(--color-primary);
    animation-delay: -12s;
}

.sports-icon--5 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    right: 25%;
    color: var(--color-primary);
    animation-delay: -16s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.08;
        filter: blur(0px);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        opacity: 0.15;
        filter: blur(0.5px);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg) scale(0.95);
        opacity: 0.06;
        filter: blur(0px);
    }
    75% {
        transform: translateY(-25px) rotate(8deg) scale(1.05);
        opacity: 0.12;
        filter: blur(0.5px);
    }
}

/* Sports icon glow on hover */
.hero__sports-icons:hover .sports-icon {
    opacity: 0.2 !important;
    filter: drop-shadow(0 0 10px currentColor);
    animation-duration: 10s;
}

.hero__title {
    margin-bottom: var(--space-6);
    perspective: 1000px;
    position: relative;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    background-size: 200% 100%;
    border-radius: 2px;
    opacity: 0;
    animation: gradientMove 3s linear infinite, fadeInUp 1s ease 0.8s forwards;
}

.hero__title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: var(--font-regular);
    letter-spacing: 0.08em;
    color: var(--color-gray-900);
    opacity: 0;
    transform: translateY(40px) rotateX(-15deg);
    animation: heroReveal 1s ease forwards;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.hero__title-line:hover {
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
}

.hero__title-line--accent {
    color: var(--color-primary);
    animation: heroReveal 1s ease 0.2s forwards;
    position: relative;
}

.hero__title-line--accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse, rgba(200, 16, 46, 0.08), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero__title-line--accent::after {
    content: 'INSAJDER';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--color-primary);
    filter: blur(20px);
    opacity: 0.15;
    z-index: -1;
}

.hero__subtitle {
    font-family: var(--font-accent);
    font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
    font-weight: var(--font-medium);
    color: var(--color-gray-600);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s ease 0.4s forwards;
    position: relative;
}

.hero__subtitle::before,
.hero__subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.hero__subtitle::before {
    right: calc(100% + 20px);
}

.hero__subtitle::after {
    left: calc(100% + 20px);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-10);
    font-family: var(--font-accent);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%, var(--color-secondary) 100%);
    background-size: 200% 200%;
    border-radius: var(--radius-full);
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s ease 0.6s forwards, diagonalSweep 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.hero__cta:hover::before {
    left: 100%;
}

.hero__cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.35), 0 15px 40px rgba(12, 59, 124, 0.25);
}

.hero__cta-icon {
    width: 20px;
    height: 20px;
    animation: bounce 2s ease infinite;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* Hero Decorations */
.hero__decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__line {
    position: absolute;
    opacity: 0.3;
}

.hero__line--1 {
    width: 3px;
    height: 200px;
    top: 15%;
    left: 10%;
    background: var(--color-primary);
    animation: lineFloat 6s ease-in-out infinite;
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.hero__line--2 {
    width: 150px;
    height: 3px;
    bottom: 20%;
    right: 10%;
    background: var(--color-secondary);
    animation: lineFloat 6s ease-in-out 1s infinite;
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px var(--color-secondary-glow);
}

@keyframes lineFloat {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.4;
        transform: translateY(-10px) scale(1.05) rotate(2deg);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1.1) rotate(0deg);
    }
    75% {
        opacity: 0.4;
        transform: translateY(-10px) scale(1.05) rotate(-2deg);
    }
}

/* Floating orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 15s ease-in-out infinite;
}

.hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary), transparent);
    opacity: 0.15;
    top: -100px;
    right: -100px;
    animation: orbFloat 15s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}

.hero__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-secondary), transparent);
    opacity: 0.15;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
    animation: orbFloat 15s ease-in-out infinite, glowPulse 4s ease-in-out infinite 2s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Floating Particles */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
}

.particle--1 {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    top: 20%;
    left: 15%;
    animation: particleFloat 12s ease-in-out infinite, colorCycle 6s ease-in-out infinite;
}

.particle--2 {
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    top: 30%;
    right: 20%;
    animation: particleFloat 12s ease-in-out infinite -2s, colorCycle 6s ease-in-out infinite -2s;
}

.particle--3 {
    width: 10px;
    height: 10px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    bottom: 30%;
    left: 25%;
    animation: particleFloat 12s ease-in-out infinite -4s, colorCycleBorder 6s ease-in-out infinite;
}

.particle--4 {
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    top: 60%;
    right: 15%;
    animation: particleFloat 12s ease-in-out infinite -6s, colorCycle 6s ease-in-out infinite -4s;
}

.particle--5 {
    width: 7px;
    height: 7px;
    background: var(--color-secondary);
    bottom: 20%;
    right: 30%;
    animation: particleFloat 12s ease-in-out infinite -8s, colorCycle 6s ease-in-out infinite -1s;
}

.particle--6 {
    width: 4px;
    height: 4px;
    background: var(--color-white);
    border: 1px solid var(--color-secondary);
    top: 45%;
    left: 10%;
    animation: particleFloat 12s ease-in-out infinite -10s, colorCycleBorder 6s ease-in-out infinite -3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) translateX(-10px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-40px) translateX(20px) scale(1.1);
        opacity: 0.6;
    }
}

/* Hero Emblem */
.hero__emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 0;
}

.hero__emblem-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(200, 16, 46, 0.15);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite, rotateSlowly 60s linear infinite;
}

.hero__emblem-ring--2 {
    width: 80%;
    height: 80%;
    border-color: rgba(12, 59, 124, 0.15);
    animation: ringPulse 4s ease-in-out infinite -2s, rotateSlowly 45s linear infinite reverse;
}

/* Add third ring for more effect */
.hero__emblem::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 1px dashed rgba(200, 16, 46, 0.1);
    border-radius: 50%;
    animation: rotateSlowly 30s linear infinite;
}

.hero__emblem::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
        border-width: 2px;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
        border-width: 3px;
    }
}

/* Hero Divider - Serbian colors */
.hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin: 0 auto var(--space-8);
    opacity: 0;
    animation: heroReveal 1s ease 0.5s forwards;
    width: 100%;
    max-width: 200px;
}

.hero__divider-line {
    width: 60px;
    height: 2px;
    border-radius: var(--radius-full);
}

.hero__divider-line:first-child {
    background: var(--color-primary);
}

.hero__divider-line:last-child {
    background: var(--color-secondary);
}

.hero__divider-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(200, 16, 46, 0);
    }
}

/* Hero Corners - Crveni i Plavi */
.hero__corner {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
    transition: all 0.5s ease;
}

.hero:hover .hero__corner--tl {
    transform: translate(-5px, -5px);
}

.hero:hover .hero__corner--br {
    transform: translate(5px, 5px);
}

.hero__corner::before,
.hero__corner::after {
    content: '';
    position: absolute;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.hero:hover .hero__corner::before,
.hero:hover .hero__corner::after {
    opacity: 0.8;
    box-shadow: 0 0 20px currentColor;
}

.hero__corner--tl {
    top: 10%;
    left: 5%;
}

.hero__corner--tl::before,
.hero__corner--tl::after {
    background: var(--color-primary);
}

.hero__corner--tl::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    border-radius: var(--radius-full);
    animation: lineFloat 4s ease-in-out infinite;
}

.hero__corner--tl::after {
    top: 0;
    left: 0;
    width: 3px;
    height: 60px;
    border-radius: var(--radius-full);
    animation: lineFloat 4s ease-in-out infinite 0.5s;
}

.hero__corner--br {
    bottom: 10%;
    right: 5%;
}

.hero__corner--br::before,
.hero__corner--br::after {
    background: var(--color-secondary);
}

.hero__corner--br::before {
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    border-radius: var(--radius-full);
    animation: lineFloat 4s ease-in-out infinite 1s;
}

.hero__corner--br::after {
    bottom: 0;
    right: 0;
    width: 3px;
    height: 60px;
    border-radius: var(--radius-full);
    animation: lineFloat 4s ease-in-out infinite 1.5s;
}

/* Serbian Flag Decoration */
.hero__flag {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroReveal 1s ease 1s forwards;
}

.hero__flag-stripe {
    width: 50px;
    height: 8px;
    border-radius: var(--radius-full);
    animation: flagColorShift 6s ease-in-out infinite;
}

.hero__flag-stripe--red {
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary));
    animation: flagStripeRed 6s ease-in-out infinite;
}

.hero__flag-stripe--blue {
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary));
    animation: flagStripeBlue 6s ease-in-out infinite;
}

.hero__flag-stripe--white {
    background: linear-gradient(90deg, var(--color-white), var(--color-white));
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    animation: flagStripeWhite 6s ease-in-out infinite;
}

/* Smooth color transition animations */
@keyframes flagStripeRed {
    0%, 100% {
        background: var(--color-primary);
        transform: scaleX(1);
        box-shadow: 0 0 10px rgba(200, 16, 46, 0.5);
    }
    33% {
        background: var(--color-secondary);
        transform: scaleX(1.1);
        box-shadow: 0 0 15px rgba(12, 59, 124, 0.5);
    }
    66% {
        background: var(--color-white);
        transform: scaleX(1.05);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(0,0,0,0.1);
    }
}

@keyframes flagStripeBlue {
    0%, 100% {
        background: var(--color-secondary);
        transform: scaleX(1);
        box-shadow: 0 0 10px rgba(12, 59, 124, 0.5);
    }
    33% {
        background: var(--color-white);
        transform: scaleX(1.1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(0,0,0,0.1);
    }
    66% {
        background: var(--color-primary);
        transform: scaleX(1.05);
        box-shadow: 0 0 15px rgba(200, 16, 46, 0.5);
    }
}

@keyframes flagStripeWhite {
    0%, 100% {
        background: var(--color-white);
        transform: scaleX(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(0,0,0,0.1);
    }
    33% {
        background: var(--color-primary);
        transform: scaleX(1.1);
        box-shadow: 0 0 15px rgba(200, 16, 46, 0.5);
    }
    66% {
        background: var(--color-secondary);
        transform: scaleX(1.05);
        box-shadow: 0 0 10px rgba(12, 59, 124, 0.5);
    }
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */
.section {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

/* Section background animation */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(200, 16, 46, 0.03) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section:hover::before {
    opacity: 1;
}

.section__header {
    margin-bottom: var(--space-12);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section__header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section__header--center {
    text-align: center;
}

.section__label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-3);
    position: relative;
    animation: textReveal 1s ease forwards;
}

.section__label::before {
    content: '';
    position: absolute;
    left: calc(-16px - 8px);
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    animation: glowPulse 2s ease-in-out infinite;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite, colorCycle 6s ease-in-out infinite;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    color: var(--color-gray-900);
    position: relative;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    transition: width 0.8s ease;
}

.section__header.animate-in .section__title::after {
    width: 80px;
}

.section__header--center .section__title::after {
    left: 50%;
    transform: translateX(-50%);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Alternating section colors */
.section:nth-of-type(odd) .section__label {
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
}

.section:nth-of-type(even) .section__label {
    color: var(--color-secondary);
    -webkit-text-fill-color: var(--color-secondary);
}

.section:nth-of-type(even) .section__label::before {
    background: var(--color-secondary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section--about {
    background: transparent;
    position: relative;
}

.section--about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 0% 50%, rgba(200, 16, 46, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 50%, rgba(30, 58, 95, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 768px) {
    .about__content {
        grid-template-columns: 2fr 1fr;
    }
}

.about__text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about__lead {
    font-size: var(--text-xl);
    color: var(--color-gray-800);
    margin-bottom: var(--space-6);
}

.about__lead strong {
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__text p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
}

.about__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%, var(--color-secondary) 100%);
    background-size: 200% 200%;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-red);
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: diagonalSweep 8s ease-in-out infinite;
    position: relative;
    cursor: pointer;
}

.about__badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: conic-gradient(from 0deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0.6;
    filter: blur(15px);
    animation: rotateSlowly 8s linear infinite;
}

.about__badge::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    animation: rotateSlowly 15s linear infinite reverse;
}

.about__badge:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(200, 16, 46, 0.5);
}

.about__badge.animate {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.about__badge-since {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-1);
}

.about__badge-date {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: glowPulse 3s ease-in-out infinite;
    letter-spacing: 0.05em;
}

/* ============================================
   VALUES SECTION - SPORTS CARDS
   ============================================ */
.section--values {
    background: var(--gradient-section-alt);
    position: relative;
    overflow: hidden;
}

.section--values::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 16, 46, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 50%, rgba(30, 58, 95, 0.08) 0%, transparent 25%);
    animation: float 20s ease-in-out infinite;
}

.values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    background-size: 200% 200%;
    animation: shimmer 3s linear infinite;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

/* Shimmer effect on hover */
.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s ease;
}

.value-card:hover::after {
    left: 150%;
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: bounceIn 0.6s ease forwards;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow: var(--shadow-card-hover), var(--shadow-glow-red), 0 30px 60px rgba(0,0,0,0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-6);
    background: var(--color-primary);
    background-size: 200% 200%;
    border-radius: var(--radius-2xl);
    position: relative;
    animation: gradient-shift 4s ease infinite, breathe 3s ease-in-out infinite;
    transition: all 0.5s ease;
}

.value-card__icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--color-primary);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.value-card:hover .value-card__icon::before {
    opacity: 0.7;
}

.value-card:hover .value-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card__icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--color-white);
}

.value-card__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.value-card__text {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: var(--leading-relaxed);
}

/* Staggered animation delays + Alternating Serbian colors */
.value-card:nth-child(1) { transition-delay: 0.1s; }
.value-card:nth-child(2) { transition-delay: 0.2s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }
.value-card:nth-child(4) { transition-delay: 0.4s; }

/* Card 1: Crvena */
.value-card:nth-child(1) .value-card__icon {
    background: var(--gradient-red);
}
.value-card:nth-child(1)::before {
    background: var(--color-primary);
}
.value-card:nth-child(1):hover {
    box-shadow: var(--shadow-card-hover), 0 0 30px rgba(200, 16, 46, 0.3);
}

/* Card 2: Plava */
.value-card:nth-child(2) .value-card__icon {
    background: var(--gradient-blue);
}
.value-card:nth-child(2)::before {
    background: var(--color-secondary);
}
.value-card:nth-child(2):hover {
    box-shadow: var(--shadow-card-hover), 0 0 40px rgba(12, 59, 124, 0.5), 0 0 60px rgba(12, 59, 124, 0.3);
    border-color: rgba(12, 59, 124, 0.3);
}
.value-card:nth-child(2):hover .value-card__icon {
    box-shadow: 0 0 30px rgba(12, 59, 124, 0.6);
}

/* Card 3: Crvena */
.value-card:nth-child(3) .value-card__icon {
    background: var(--gradient-red);
}
.value-card:nth-child(3)::before {
    background: var(--color-primary);
}
.value-card:nth-child(3):hover {
    box-shadow: var(--shadow-card-hover), 0 0 30px rgba(200, 16, 46, 0.3);
}

/* Card 4: Plava */
.value-card:nth-child(4) .value-card__icon {
    background: var(--gradient-blue);
}
.value-card:nth-child(4)::before {
    background: var(--color-secondary);
}
.value-card:nth-child(4):hover {
    box-shadow: var(--shadow-card-hover), 0 0 40px rgba(12, 59, 124, 0.5), 0 0 60px rgba(12, 59, 124, 0.3);
    border-color: rgba(12, 59, 124, 0.3);
}
.value-card:nth-child(4):hover .value-card__icon {
    box-shadow: 0 0 30px rgba(12, 59, 124, 0.6);
}

/* ============================================
   REPRESENT SECTION
   ============================================ */
.section--represent {
    background: transparent;
    position: relative;
}

.section--represent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.represent__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .represent__wrapper {
        grid-template-columns: 1.5fr 1fr;
    }
}

.represent__content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.represent__content.animate {
    opacity: 1;
    transform: translateX(0);
}

.represent__text {
    margin-bottom: var(--space-8);
}

.represent__text p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
}

.represent__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.represent__list li {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-gray-700);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 16, 46, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
}

.represent__list li.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.represent__list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.represent__list li:hover::after {
    left: 100%;
}

/* Alternating colors for list items */
.represent__list li:nth-child(odd) {
    border-left: 3px solid var(--color-primary);
}
.represent__list li:nth-child(even) {
    border-left: 3px solid var(--color-secondary);
}
.represent__list li:nth-child(3n) {
    border-left: 3px solid var(--color-gray-400);
    background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
}

.represent__list li:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(200, 16, 46, 0.2);
    box-shadow: var(--shadow-md);
}

/* Alternating icon colors */
.represent__list li:nth-child(odd) svg {
    fill: var(--color-primary);
}
.represent__list li:nth-child(even) svg {
    fill: var(--color-secondary);
}

.represent__list svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.represent__visual {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.represent__visual.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.represent__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.represent__stats:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Serbian flag colors for each stat */
.stat {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    padding: var(--space-8) var(--space-12);
}

.stat:nth-child(1) {
    background: var(--color-primary);
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.stat:nth-child(2) {
    background: var(--color-secondary);
}

.stat:nth-child(3) {
    background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 0 0 var(--radius-3xl) var(--radius-3xl);
}

.stat:nth-child(3) .stat__number,
.stat:nth-child(3) .stat__label {
    color: var(--color-gray-800);
    text-shadow: none;
}

.stat:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-7xl);
    font-weight: var(--font-regular);
    color: var(--color-white);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    letter-spacing: 0.05em;
    animation: glowPulse 3s ease-in-out infinite;
}

.stat__label {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ============================================
   QUOTE SECTION - DRAMATIC SPORTS STYLE
   ============================================ */
.section--quote {
    background: 
        linear-gradient(135deg, rgba(12, 59, 124, 0.03) 0%, rgba(12, 59, 124, 0.03) 100%),
        var(--gradient-section-alt);
    padding: var(--space-32) 0;
    position: relative;
    overflow: hidden;
}

.section--quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 40% 40% at 0% 0%, rgba(200, 16, 46, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 100% 100%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: breathe 8s ease-in-out infinite;
}

.section--quote::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(200, 16, 46, 0.1);
    border-radius: 50%;
    animation: ringPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.quote__decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.quote__decor--bottom {
    margin-top: var(--space-8);
    margin-bottom: 0;
}

.quote__line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
    border-radius: var(--radius-full);
    animation: shimmer 3s ease-in-out infinite;
}

.quote__icon {
    font-size: var(--text-xl);
    color: var(--color-primary);
    animation: colorCycleText 6s ease-in-out infinite, spinSlow 10s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.quote__mark {
    font-family: var(--font-display);
    font-size: clamp(var(--text-5xl), 6vw, var(--text-7xl));
    font-weight: var(--font-bold);
    line-height: 0.6;
    animation: colorCycleText 8s ease-in-out infinite;
    vertical-align: middle;
}

.quote__mark--open {
    color: var(--color-primary);
    margin-right: var(--space-1);
}

.quote__mark--close {
    color: var(--color-secondary);
    margin-left: var(--space-1);
}

.quote__text {
    font-family: var(--font-accent);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: var(--font-medium);
    color: var(--color-gray-900);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
    display: inline;
}

.quote__footer {
    position: relative;
    z-index: 1;
}

.quote__author {
    font-family: var(--font-accent);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section--contact {
    background: transparent;
    position: relative;
}

.section--contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.02), transparent);
    pointer-events: none;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .contact__wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact__info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact__text {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-bottom: var(--space-8);
}

.contact__social {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.social-link svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2) rotate(-5deg);
}

.social-link--instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-link--instagram:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.social-link--tiktok {
    background: linear-gradient(135deg, #000000, #25F4EE);
    box-shadow: 0 4px 15px rgba(37, 244, 238, 0.3);
}

.social-link--tiktok:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 244, 238, 0.4);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact__email {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--color-gray-800);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(200, 16, 46, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact__email:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), 0 0 20px rgba(200, 16, 46, 0.1);
    transform: translateY(-2px);
}

.contact__email svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.contact__form-wrapper {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.contact__form-wrapper.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact__form {
    padding: var(--space-10);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

.form__group {
    margin-bottom: var(--space-5);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.form__group:nth-child(1) { animation-delay: 0.1s; }
.form__group:nth-child(2) { animation-delay: 0.2s; }
.form__group:nth-child(3) { animation-delay: 0.3s; }
.form__group:nth-child(4) { animation-delay: 0.4s; }

.form__label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-700);
    margin-bottom: var(--space-2);
    transition: color 0.3s ease;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-gray-800);
    background-color: var(--color-gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    background-color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1), 0 10px 30px rgba(200, 16, 46, 0.1);
    transform: translateY(-2px);
}

.form__input:focus + .form__label,
.form__textarea:focus + .form__label {
    color: var(--color-primary);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-gray-400);
    transition: opacity 0.3s ease;
}

.form__input:focus::placeholder,
.form__textarea:focus::placeholder {
    opacity: 0.5;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%, var(--color-secondary) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: diagonalSweep 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.2);
}

.form__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.form__submit:hover::before {
    left: 100%;
}

.form__submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.4), 0 10px 30px rgba(12, 59, 124, 0.2);
}

.form__submit:active {
    transform: translateY(-2px) scale(0.98);
}

.form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.35), 0 15px 40px rgba(12, 59, 124, 0.25);
}

.form__submit svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FOOTER - PREMIUM SPORTS FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--color-gray-900) 0%, #0a1628 100%);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-primary) 25%, 
        var(--color-secondary) 50%, 
        var(--color-secondary) 75%, 
        var(--color-white) 100%
    );
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 50% 30% at 10% 100%, rgba(200, 16, 46, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 90% 100%, rgba(30, 58, 95, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-8);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
}

.footer__brand {
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer__brand {
        margin: 0;
    }
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-regular);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: var(--space-3);
    transition: all 0.3s ease;
}

.footer__logo .text--blue {
    color: var(--color-secondary);
}

.footer__logo .text--red {
    color: var(--color-primary);
}

.footer__logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer__tagline {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    animation: fadeInUp 0.8s ease forwards;
}

.footer__nav {
    width: 100%;
}

@media (min-width: 768px) {
    .footer__nav {
        width: auto;
    }
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-6);
    }
}

.footer__links a {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: var(--space-2) 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .footer__links a {
        padding: 0;
    }
}

.footer__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.footer__links a:hover {
    color: var(--color-white);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(200, 16, 46, 0.5);
}

.footer__links a:hover::after {
    width: 100%;
}

/* Friends Section */
.footer__friends-section {
    padding: var(--space-10) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-8);
}

.footer__friends-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--space-6);
    position: relative;
}

.footer__friends-title::before,
.footer__friends-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: var(--color-primary);
}

.footer__friends-title::before {
    right: calc(50% + 100px);
}

.footer__friends-title::after {
    left: calc(50% + 100px);
}

.footer__friends-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.friend-link {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

/* Alternating hover colors: Crvena, Plava, Bela */
.friend-link:nth-child(3n+1):hover {
    color: var(--color-white);
    background: rgba(200, 16, 46, 0.3);
    border-color: rgba(200, 16, 46, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.friend-link:nth-child(3n+2):hover {
    color: var(--color-white);
    background: rgba(12, 59, 124, 0.3);
    border-color: rgba(12, 59, 124, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 59, 124, 0.3);
}

.friend-link:nth-child(3n):hover {
    color: var(--color-gray-900);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer__credits {
    text-align: center;
}

@media (min-width: 768px) {
    .footer__credits {
        text-align: left;
    }
}

.footer__credits p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.footer__credits a {
    color: var(--color-primary-light);
    transition: color var(--transition-fast);
}

.footer__credits a:hover {
    color: var(--color-white);
}

.footer__copyright {
    text-align: center;
}

@media (min-width: 768px) {
    .footer__copyright {
        text-align: right;
    }
}

.footer__copyright p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%, var(--color-secondary) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4), 0 0 30px rgba(200, 16, 46, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    animation: diagonalSweep 8s ease-in-out infinite;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.5), 0 0 50px rgba(200, 16, 46, 0.3);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.back-to-top svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-3px);
    animation: bounceUp 0.6s ease infinite;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .back-to-top svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */

/* Page Load Animation */
body {
    opacity: 0;
    animation: pageLoad 0.6s ease forwards;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body.page-loaded .nav {
    animation: slideInFromTop 0.6s ease forwards;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Section header animations */
.section__header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section__header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section__label {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.section__label.animate,
.section__header.animate .section__label {
    opacity: 1;
    transform: translateX(0);
}

.section__title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.section__title.animate,
.section__header.animate .section__title {
    opacity: 1;
    transform: translateY(0);
}

/* List item staggered animations */
.represent__list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.represent__list li.animate {
    opacity: 1;
    transform: translateX(0);
}

.represent__list li:nth-child(1) { transition-delay: 0.1s; }
.represent__list li:nth-child(2) { transition-delay: 0.2s; }
.represent__list li:nth-child(3) { transition-delay: 0.3s; }
.represent__list li:nth-child(4) { transition-delay: 0.4s; }

/* Footer animations */
.footer__brand {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer__brand.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer__links {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.footer__links.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer__friends-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.footer__friends-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax scrolling effect for decorative elements */
@supports (animation-timeline: scroll()) {
    .hero__orb {
        animation: orbFloat 15s ease-in-out infinite, parallax linear;
        animation-timeline: scroll();
    }
    
    @keyframes parallax {
        from { transform: translateY(0); }
        to { transform: translateY(-100px); }
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero__title-line {
        font-size: clamp(2.5rem, 14vw, 4rem);
        letter-spacing: 0.05em;
    }
    
    .hero__badge {
        padding: var(--space-1) var(--space-4);
    }
    
    .hero__badge-text {
        font-size: var(--text-xs);
        letter-spacing: 0.15em;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .hero__stat {
        padding: var(--space-2) var(--space-4);
    }
    
    .hero__stat-text {
        font-size: var(--text-xs);
    }
    
    .section__title {
        font-size: clamp(var(--text-2xl), 8vw, var(--text-4xl));
    }
    
    .value-card {
        padding: var(--space-6);
    }
    
    .value-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .value-card__icon svg {
        width: 36px;
        height: 36px;
    }
    
    .quote__text {
        font-size: var(--text-xl);
    }
    
    .footer__logo {
        font-size: var(--text-2xl);
    }
    
    .friend-link {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-3);
    }
}

/* Small devices (phones, 480px to 640px) */
@media (max-width: 640px) {
    :root {
        --container-padding: 1rem;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .section--quote {
        padding: var(--space-20) 0;
    }
    
    .hero__container {
        padding: var(--space-20) var(--container-padding);
    }
    
    .hero__subtitle::before,
    .hero__subtitle::after {
        display: none;
    }
    
    .hero__sports-icons {
        opacity: 0.5;
    }
    
    .sports-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .about__badge {
        width: 160px;
        height: 160px;
    }
    
    .about__badge-since {
        font-size: var(--text-xs);
    }
    
    .about__badge-date {
        font-size: var(--text-xl);
    }
    
    .represent__stats {
        padding: var(--space-8);
    }
    
    .stat__number {
        font-size: var(--text-5xl);
    }
    
    .contact__form {
        padding: var(--space-6);
    }
    
    .footer__friends-title::before,
    .footer__friends-title::after {
        display: none;
    }
    
    .footer__friends-grid {
        gap: var(--space-2);
    }
}

/* Medium devices (tablets, 641px to 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    .hero__stats {
        gap: var(--space-4);
    }
    
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large devices (desktops, 769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra large devices (large desktops, 1025px and up) */
@media (min-width: 1025px) {
    .hero__title-line {
        font-size: clamp(5rem, 12vw, 10rem);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-3) var(--space-6);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    z-index: 1000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-4);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .nav,
    .hero__cta,
    .hero__decoration,
    .contact__form-wrapper,
    .footer__friends-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    body::before {
        display: none;
    }
    
    .section {
        padding: 1cm 0;
    }
}

/* ============================================
   LOGO STYLES
   ============================================ */
.nav__logo-wrapper {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.2);
    flex-shrink: 0;
}

.nav__logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.nav__logo:hover .nav__logo-img {
    transform: scale(1.05);
}

.footer__logo-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-3);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
    flex-shrink: 0;
}

.footer__logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   HERO TITLE BLUE COLOR
   ============================================ */
.hero__title-line--blue {
    color: var(--color-secondary);
    text-shadow: 0 4px 30px rgba(12, 59, 124, 0.2);
}

.hero__title-line--blue:hover {
    text-shadow: 0 6px 35px rgba(12, 59, 124, 0.3);
}
