/* ===============================================
   IPSM Football - Modern Animated Styles
   OPTIMIZED & CLEANED VERSION
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===============================================
   CSS VARIABLES
   =============================================== */
:root {
    --ipsm-green: #00940a;
    --ipsm-green-light: #00c20d;
    --ipsm-green-dark: #006d08;
    --ipsm-red: #b3081b;
    --ipsm-red-light: #d61f34;
    --ipsm-red-dark: #8a0614;
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-green: 0 20px 40px rgba(0, 148, 10, 0.3);
}

/* ===============================================
   GLOBAL STYLES
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    
    color: var(--gray-900);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100dvh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 148, 10, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(179, 8, 27, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 148, 10, 0.04) 0%, transparent 50%);
    animation: bgMove 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

@keyframes bgMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-20px, -20px) rotate(1deg);
    }
    66% {
        transform: translate(20px, -10px) rotate(-1deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.container-contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===============================================
   TYPOGRAPHY
   =============================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ipsm-green);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-green-light), var(--ipsm-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s linear infinite;
}

.text-gradient-2 {
    background: linear-gradient(90deg, var(--ipsm-red), var(--ipsm-green), var(--ipsm-red));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s linear infinite reverse;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.brand-split .brand-red {
    color: var(--ipsm-red);
    -webkit-text-fill-color: var(--ipsm-red);
    background: none;
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease-in-out infinite;
}

.logo-text-nav {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-green-light));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--ipsm-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Desktop Language Dropdown */
.language-dropdown {
    position: relative;
    margin-left: 1rem;
}

.language-current {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    background: linear-gradient(135deg, rgba(0, 148, 10, 0.05), rgba(0, 148, 10, 0.02)) !important;
    border: 1px solid rgba(0, 148, 10, 0.2) !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: black !important;
    text-decoration: none !important;
    pointer-events: auto !important;
}

.language-current:hover {
    background: rgba(0, 148, 10, 0.1) !important;
    border-color: var(--ipsm-green) !important;
    transform: translateY(-2px);
}

.language-current i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-current i {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 148, 10, 0.1);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    color: #333;
    margin-top: 4px;
}

.language-dropdown.active .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-form {
    margin: 0;
    padding: 0;
}

.lang-option {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333 !important;
}

.lang-option:hover {
    background: rgba(0, 148, 10, 0.1);
}

.lang-option.active {
    background: rgba(0, 148, 10, 0.15);
    font-weight: 600;
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-flag-img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.language-current .lang-flag-img {
    height: 16px;
}

/* CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 148, 10, 0.3);
    margin-left: 1rem;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 148, 10, 0.4);
}

/* ===============================================
   MOBILE MENU - ÜBERARBEITET
   =============================================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: absolute;
}

.mobile-toggle span:nth-child(1) {
    top: 12px;
}

.mobile-toggle span:nth-child(2) {
    top: 20px;
}

.mobile-toggle span:nth-child(3) {
    top: 28px;
}

/* X-Animation wenn aktiv */
.mobile-toggle.active span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
    background: var(--ipsm-green);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
    background: var(--ipsm-green);
}

/* Mobile Menu - Vollbild mit weißem Hintergrund */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-scroll {
    height: 100dvh;
    padding: 80px 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Navigation Links */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-800);
    text-decoration: none;
    padding: 1.25rem 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 60px;
    position: relative;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--ipsm-green);
}

.mobile-nav-link:active {
    background: rgba(0, 148, 10, 0.08);
    transform: scale(0.98);
}

.mobile-nav-link:hover {
    background: rgba(0, 148, 10, 0.05);
    color: var(--ipsm-green);
}

/* Mobile Language Section */
.mobile-language-section {
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 148, 10, 0.03);
    margin: 1rem 0;
}

.mobile-lang-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mobile-lang-toggle:active {
    transform: scale(0.98);
    background: rgba(0, 148, 10, 0.05);
}

.mobile-lang-toggle .current-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.mobile-lang-toggle #mobile-current-lang {
    flex: 1;
    text-align: left;
    font-weight: 600;
}

.mobile-lang-toggle #mobile-lang-arrow {
    font-size: 0.8rem;
    color: var(--gray-600);
    transition: transform 0.3s ease;
}

.mobile-lang-toggle.active #mobile-lang-arrow {
    transform: rotate(180deg);
}

.mobile-lang-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-lang-dropdown.open {
    max-height: 400px;
    overflow-y: auto;
}

.mobile-lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: left;
    font-family: inherit;
}

.mobile-lang-option:last-child {
    border-bottom: none;
}

.mobile-lang-option img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.mobile-lang-option:active {
    background: rgba(0, 148, 10, 0.1);
    transform: scale(0.98);
}

.mobile-lang-option:hover {
    background: rgba(0, 148, 10, 0.08);
}

.mobile-lang-option.active {
    background: rgba(0, 148, 10, 0.12);
    color: var(--ipsm-green);
    font-weight: 700;
}

/* Mobile CTA Button */
.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(0, 148, 10, 0.4);
    transition: all 0.3s ease;
    min-height: 60px;
    border: none;
}

.mobile-cta-btn:active {
    transform: scale(0.96);
    box-shadow: 0 4px 15px rgba(0, 148, 10, 0.5);
}

.mobile-cta-btn i {
    font-size: 1.1rem;
}

/* Body Scroll Lock wenn Menu offen */
body.menu-open {
    overflow: hidden;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
}

/* Touch Optimization */
button, a, .mobile-nav-link, .mobile-lang-option, .mobile-cta-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Smooth Scrolling für iOS */
@supports (-webkit-touch-callout: none) {
    .mobile-menu-scroll {
        -webkit-overflow-scrolling: touch;
    }
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 20%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(0, 148, 10, 0.1);
    width: fit-content;
}

.stat-item-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ipsm-green);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    position: relative;
}

.floating-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    animation-delay: 1.5s;
}

.floating-card:nth-child(3) {
    animation-delay: 3s;
}

.floating-card:nth-child(4) {
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    75% {
        transform: translateY(10px) rotate(-1deg);
    }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 148, 10, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover .card-glow {
    opacity: 1;
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 148, 10, 0.2);
}

.card-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.card-content i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.floating-card:hover .card-content i {
    transform: scale(1.2) rotate(10deg);
}

.card-content h3 {
    color: var(--gray-900);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Soccer Ball Animation */
.soccer-ball-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.soccer-ball {
    width: 60px;
    height: 60px;
    background: var(--ipsm-green);
    border-radius: 50%;
    position: relative;
    animation: ballRotate 20s linear infinite;
    opacity: 0.1;
}

@keyframes ballRotate {
    from {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--ipsm-green);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--ipsm-green);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/* ===============================================
   BUTTONS
   =============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    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.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--ipsm-green) 0%, var(--ipsm-green-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 148, 10, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 148, 10, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--ipsm-green);
    border: 2px solid var(--ipsm-green);
}

.btn-outline:hover {
    background: var(--ipsm-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 148, 10, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===============================================
   ABOUT SECTION
   =============================================== */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-green-light));
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 148, 10, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 148, 10, 0.2);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.about-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 148, 10, 0.1);
    border-radius: 50px;
    color: var(--ipsm-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.expertise-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(0, 148, 10, 0.1), rgba(0, 148, 10, 0.05));
    border: 1px solid rgba(0, 148, 10, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--ipsm-green);
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 148, 10, 0.1) 100%);
    pointer-events: none;
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 1rem;
}

.stat-bubble {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 148, 10, 0.2);
}

.stat-bubble .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ipsm-green);
    margin-bottom: 0.25rem;
}

.stat-bubble .label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Process Timeline */
.process-wrapper {
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(0, 148, 10, 0.02);
    border-radius: 30px;
}

.process-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-green-light));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--ipsm-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 148, 10, 0.1);
}

.process-step:hover .step-icon {
    background: var(--ipsm-green);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--ipsm-green);
    transition: color 0.3s ease;
}

.process-step:hover .step-icon i {
    color: var(--white);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    max-width: 150px;
    margin: 0 auto;
}

/* ===============================================
   PLAYERS SECTION
   =============================================== */
.players {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.players-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.player-card-modern {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.player-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.player-card-modern:hover::before {
    transform: scaleX(1);
}

.player-card-modern:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 148, 10, 0.15);
}

.player-image-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.player-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.player-card-modern:hover .player-img {
    transform: scale(1.05);
}

.player-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 148, 10, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-card-modern:hover .player-overlay {
    opacity: 1;
}

.player-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--white);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.player-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.player-stats .stat i {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.75rem;
}

.player-info-modern {
    padding: 1rem;
    text-align: center;
    position: relative;
}

.player-info-modern h3 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.player-club {
    color: var(--gray-600);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.player-flag {
    font-size: 1.2rem;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

/* ===============================================
   SERVICES SECTION
   =============================================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 148, 10, 0.02) 35px, rgba(0, 148, 10, 0.02) 70px);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-modern:hover::after {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 148, 10, 0.15);
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    border-radius: 20px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.service-card-modern:hover .icon-bg {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--ipsm-green);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card-modern:hover .service-icon-wrapper i {
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.service-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-card-modern p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    padding-left: 0.5rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    transform: translateX(5px);
    color: var(--ipsm-green);
}

.service-features i {
    color: var(--ipsm-green);
    font-size: 0.875rem;
}

.service-link {
    color: var(--ipsm-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ipsm-green);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    gap: 1rem;
}

/* Services Page Specific */
.services-hero {
    min-height: 60vh;
    padding: 180px 0 100px;
}

.service-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 148, 10, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.intro-feature:hover {
    background: rgba(0, 148, 10, 0.1);
    transform: translateX(5px);
}

.intro-feature i {
    color: var(--ipsm-green);
    font-size: 1.25rem;
}

.intro-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 148, 10, 0.03);
    border-left: 3px solid var(--ipsm-green);
    border-radius: 8px;
    text-align: left;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.services-detailed {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 148, 10, 0.15);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 148, 10, 0.1);
    line-height: 1;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-lead {
    font-size: 1.15rem;
    color: var(--ipsm-green);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-highlights {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 148, 10, 0.05);
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(0, 148, 10, 0.1);
    transform: scale(1.05);
}

.highlight i {
    color: var(--ipsm-green);
}

.contact-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* ===============================================
   TESTIMONIALS SECTION
   =============================================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Success Metrics */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 148, 10, 0.15);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 148, 10, 0.1), rgba(0, 148, 10, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    transform: scale(1.1) rotate(5deg);
}

.metric-icon i {
    font-size: 1.5rem;
    color: var(--ipsm-green);
    transition: color 0.3s ease;
}

.metric-card:hover .metric-icon i {
    color: var(--white);
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ipsm-green);
    line-height: 1;
    display: inline-block;
}

.metric-suffix {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--ipsm-green);
    font-weight: 600;
    margin-left: 0.25rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem 0 1rem;
}

.metric-progress {
    height: 4px;
    background: rgba(0, 148, 10, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-green-light));
    border-radius: 2px;
    animation: progressGrow 1.5s ease-out;
}

@keyframes progressGrow {
    from {
        width: 0;
    }
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch; /* NEU: Alle Cards gleich hoch */
}

.testimonial-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 148, 10, 0.05);
    display: flex; /* NEU */
    flex-direction: column; /* NEU */
}

.testimonial-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 148, 10, 0.1);
    border-color: rgba(0, 148, 10, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    flex-grow: 1; 
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto; 
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 148, 10, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-details h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-details span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.club-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Success Journey */
.success-journey {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 148, 10, 0.03), rgba(0, 148, 10, 0.01));
    border-radius: 30px;
}

.journey-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.journey-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--ipsm-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    color: var(--ipsm-green);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.journey-step:hover .step-number {
    background: var(--ipsm-green);
    color: var(--white);
    transform: scale(1.1);
}

.journey-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.journey-step p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.journey-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-green-light));
    margin: 0 -20px;
    margin-bottom: 80px;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 148, 10, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--ipsm-green);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.arrow:hover {
    background: var(--ipsm-green);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow);
    min-width: 150px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.contact {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 148, 10, 0.3), transparent);
    margin: 4rem 0;
}

/* Scouts Grid */
.scouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.scout-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 148, 10, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 148, 10, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.scout-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 148, 10, 0.15);
}

.scout-card--highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    border: 2px solid var(--ipsm-green-light);
}

.scout-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 148, 10, 0.1);
}

.country-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.country-item.global-item {
    align-items: center;
}

.flag {
    height: 24px;
    width: 36px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.scout-flag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.scout-flag .flag {
    height: 21px;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
}

.globe {
    font-size: 1.5rem;
    color: var(--ipsm-green);
    flex-shrink: 0;
}

.country-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
}

.scout-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
    justify-content: flex-end;
}

.scout-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 0.5rem 0;
    min-height: 1.3em;
}

.scout-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.1rem 0;
    color: var(--gray-700);
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.scout-contact:hover {
    color: var(--ipsm-green);
    transform: translateX(5px);
}

.scout-contact i {
    color: var(--ipsm-green);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.scout-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scout-contact a:hover {
    color: var(--ipsm-green);
    text-decoration: underline;
}

.badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-green);
    z-index: 2;
}

.badge i {
    margin-right: 5px;
}

.ceo-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 148, 10, 0.03), rgba(255, 255, 255, 0.9));
    border-top: 3px solid var(--ipsm-green);
    margin-top: 1rem;
}

/* Contact CTA */
.contact-cta {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 148, 10, 0.1);
    box-shadow: 0 20px 40px rgba(0, 148, 10, 0.1);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ipsm-green), var(--ipsm-red), var(--ipsm-green));
}

.cta-content {
    position: relative;
    z-index: 2;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: floatParticle 25s ease-in-out infinite;
}

.footer-particle:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--ipsm-green);
    top: -150px;
    right: -150px;
}

.footer-particle:nth-child(2) {
    width: 250px;
    height: 250px;
    background: var(--ipsm-red);
    bottom: -125px;
    left: -125px;
    animation-delay: 10s;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
}

.social-link:hover {
    background: var(--ipsm-green);
    border-color: var(--ipsm-green);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 148, 10, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ipsm-green);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--ipsm-green);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--ipsm-green);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--ipsm-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--ipsm-green);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===============================================
   BACK TO TOP & COOKIE BANNER
   =============================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 148, 10, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 148, 10, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-cookie-accept {
    background: var(--ipsm-green);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background: var(--ipsm-green-dark);
    transform: scale(1.05);
}

.btn-cookie-decline {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-cookie-decline:hover {
    background: var(--gray-300);
}

/* Cookie Consent Library Overrides */
:root {
    --cc-btn-primary-bg: #00940a !important;
    --cc-btn-primary-hover-bg: #007308 !important;
    --cc-link-color: #00940a !important;
    --cc-toggle-on-bg: #00940a !important;
    --cc-font-family: 'Poppins', sans-serif !important;
}

#cc-main .cm__btn:not(.cm__btn--secondary) {
    background: #00940a !important;
    border-color: #00940a !important;
    color: white !important;
}

#cc-main .cm__btn:not(.cm__btn--secondary):hover {
    background: #007308 !important;
    border-color: #007308 !important;
    box-shadow: 0 4px 12px rgba(0, 148, 10, 0.3) !important;
    transform: translateY(-1px) !important;
}

#cc-main .cc__link,
#cc-main a {
    color: #00940a !important;
}

#cc-main .cc__link:hover,
#cc-main a:hover {
    color: #007308 !important;
}

#cc-main .section__toggle:checked~.toggle__icon {
    background: #00940a !important;
    box-shadow: 0 0 0 1px #00940a !important;
}

/* ===============================================
   ANIMATIONS & KEYFRAMES
   =============================================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ball-bounce {
    width: 30px;
    height: 30px;
    background: var(--ipsm-green);
    border-radius: 50%;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 148, 10, 0.1);
    border-top-color: var(--ipsm-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: var(--white);
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 3rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--ipsm-green), var(--ipsm-green-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ipsm-green-dark);
}

/* ===============================================
   RESPONSIVE DESIGN - MOBILE
   =============================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-line {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .journey-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .journey-line {
        display: none;
    }

    .scouts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .bottom-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .scouts-map-container {
        min-height: 300px;
    }

    .container-contact {
        padding: 1.5rem 1rem;
    }

    .contact-section {
        gap: 1.5rem;
    }

    .country-info {
        gap: 0.5rem;
    }

    .country-item {
        gap: 0.5rem;
    }

    .country-label {
        font-size: 0.9rem;
    }
}

/* Navigation Breakpoint */
@media (max-width: 1010px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .players-showcase {
        grid-template-columns: 1fr;
    }

    .scouts-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
    }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        min-height: 90vh;
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .scroll-indicator {
        display: none;
    }

    .floating-stats {
        position: static;
        margin-top: 2rem;
        justify-content: center;
        gap: 0.75rem;
    }

    .stat-bubble {
        min-width: 80px;
        padding: 1rem;
    }

    /* Typography */
    .section-title {
        font-size: 1.6rem !important;
    }

    .section-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        padding: 0 1rem;
    }

    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.2rem !important; }

    p, li {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* Buttons & Touch Targets */
    .btn {
        font-size: 0.9rem !important;
        min-height: 44px;
        padding: 0.875rem 1.5rem;
    }

    .nav-cta-btn,
    .mobile-cta-btn {
        min-height: 48px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .scout-contact a,
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Players Section */
    .players {
        padding: 40px 0;
    }

    .players-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .player-image-container {
        height: 160px;
    }

    .player-info-modern {
        padding: 0.75rem;
    }

    .player-info-modern h3 {
        font-size: 0.9rem;
    }

    .player-club {
        font-size: 0.75rem;
    }

    .player-flag {
        font-size: 1rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .player-stats .stat {
        font-size: 0.75rem;
    }

    .player-overlay {
        padding: 0.75rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card-modern {
        padding: 2rem 1.5rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 1rem 1.5rem;
        text-align: center;
        position: relative;
        margin: 0 auto;
        width: calc(100% - 1rem);
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }

    .service-number {
        position: absolute;
        top: 0.5rem;
        left: -1rem;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--ipsm-green), var(--ipsm-green-light));
        color: white;
        border-radius: 50%;
        font-size: 1.4rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 148, 10, 0.3);
    }

    .service-detail-content {
        text-align: center;
        padding-top: 0;
    }

    .service-detail-content .service-icon-wrapper {
        margin: 0 auto 1.5rem auto;
    }

    .service-detail-content h3,
    .service-lead,
    .service-detail-content p {
        text-align: center;
        margin-bottom: 1rem;
    }

    .service-highlights {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .highlight {
        justify-content: center;
        min-width: 160px;
        max-width: 85%;
    }

    .service-card-modern,
    .service-card-modern h3,
    .service-card-modern p {
        text-align: center;
    }

    .service-features {
        align-items: center;
    }

    .service-features li {
        justify-content: center;
        text-align: center;
    }

    .service-icon-wrapper {
        margin: 0 auto 1.5rem auto;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .services-detailed {
        gap: 1.5rem;
        max-width: 100%;
        padding: 0;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    /* Contact Section */
    .scout-card {
        padding: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .country-label {
        font-size: 0.85rem;
    }

    .scout-contact {
        font-size: 0.9rem;
    }

    .scouts-grid,
    .bottom-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .contact-cta {
        padding: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.7rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    /* Logo & Social */
    .logo-img {
        max-height: 40px;
    }

    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    /* Testimonials */
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.6;
    }

    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .slider-arrows {
        display: none;
    }

    /* Mobile Navigation */
    .mobile-menu {
        top: 60px;
    }

    .mobile-nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .mobile-language-section {
        padding: 0.875rem 1.25rem;
    }

    .mobile-cta-btn {
        margin: 0.875rem 1.25rem 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    .hero-description,
    .section-description {
        font-size: 0.9rem !important;
        line-height: 1.6;
        padding: 0 1rem;
    }

    p, li {
        font-size: 0.85rem !important;
    }

    .floating-stats {
        flex-direction: column;
        right: 20px;
        bottom: 20px;
    }

    .process-step {
        padding: 0 1rem;
    }

    .service-card-modern,
    .player-card-modern {
        border-radius: 16px;
    }

    .players-showcase {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }

    .player-image-container {
        height: 200px;
    }

    .player-info-modern {
        padding: 0.6rem;
    }

    .player-info-modern h3 {
        font-size: 0.85rem;
    }

    .player-club {
        font-size: 0.7rem;
    }

    .scout-card {
        padding: 1.25rem;
    }

    .badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .testimonial-card {
        padding: 1.8rem;
        min-height: 320px;
    }

    .testimonial-text {
        font-size: 1.1rem;
        padding-left: 20px;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .author-image {
        width: 70px;
        height: 70px;
    }
}

/* Very Small Devices */
@media (max-width: 400px) {
    .players-showcase {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
}

/* Large Desktop Optimization */
@media (min-width: 1024px) {
    .container-contact {
        padding: 2rem 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .back-to-top,
    .cookie-banner,
    .scroll-indicator {
        display: none !important;
    }

    body {
        background: white;
    }

    .hero,
    .about,
    .services,
    .testimonials,
    .contact,
    .footer {
        padding: 20px 0;
    }
}