/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 
    ===============================================
    PRO SCOUT MANAGEMENT - COLOR SYSTEM
    ===============================================
    
    To customize the theme colors, simply modify the values below:
    
    BRAND COLORS:
    - Primary: Main brand color (yellow/gold)
    - Secondary: Supporting color (gray)
    
    BACKGROUNDS:
    - Dark: Main black background
    - Light: Slightly lighter sections
    - Medium: Interactive elements
    
    TEXT COLORS:
    - Dark: White text on dark backgrounds
    - Light: Gray text for subtitles
    - Muted: Lighter gray for secondary info
    
    INTERACTIVE:
    - Hover states and borders
    ===============================================
    */
    
    /* Primary Brand Colors */
    --primary-color: #e6b800;         /* Golden yellow - main CTA color */
    --primary-hover: #cc9900;         /* Darker gold for hover states */
    --primary-light: #f2c614;         /* Lighter gold for accents */
    
    /* Secondary Colors */
    --secondary-color: #333333;       /* Dark gray for secondary buttons */
    --secondary-hover: #444444;       /* Lighter gray for hover */
    
    /* Background Colors */
    --background-dark: #000000;       /* Pure black - main background */
    --background-light: #111111;      /* Very dark gray - section alternates */
    --background-medium: #1a1a1a;     /* Medium dark for cards */
    --hover-bg: #1a1a1a;             /* Hover background for interactive elements */
    
    /* Text Colors */
    --text-dark: #ffffff;             /* White text - main readable text */
    --text-light: #cccccc;            /* Light gray - subtitles and descriptions */
    --text-muted: #999999;            /* Muted gray - secondary information */
    
    /* Border Colors */
    --border-color: #333333;          /* Main border color */
    --border-light: #444444;          /* Lighter borders for hover states */
    
    /* Utility Colors */
    --white: #ffffff;
    --success-color: #e6b800;         /* Same as primary for consistency */
    --warning-color: #e6b800;         /* Same as primary for consistency */
    --accent-color: #e6b800;          /* Same as primary for consistency */
    
    /* Typography - Larger titles */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.754rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    --font-size-6xl: 5rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-dark);
}

/* Header Styles */
.header {
    background: var(--background-dark);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Utility class for sections that need header compensation */
.header-offset {
    padding-top: 8rem;
}

/* Responsive header offset */
@media (max-width: 768px) {
    .header-offset {
        padding-top: 6rem;
    }
}

@media (max-width: 576px) {
    .header-offset {
        padding-top: 8rem;
    }
}

.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark) !important;
    text-decoration: none;
    padding-block: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Navigation hover effects handled by scrollspy system below */

/* Mobile Navigation Styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: var(--hover-bg);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(230, 184, 0, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 2.3rem;
    height: 1.9rem;
}

/* Close button for mobile menu */
.navbar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.navbar-close:hover {
    background: var(--background-medium);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.navbar-close:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(230, 184, 0, 0.3);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
        border: 1px solid var(--border-color);
        border-radius: 1rem;
        padding: 2rem 1.5rem 1.5rem;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        position: relative;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link {
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        padding-left: 1rem !important;
        color: var(--primary-color) !important;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .cta-button-header {
        margin-top: 2rem;
        width: 100%;
        justify-self: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 1rem;
        box-shadow: 0 8px 20px rgba(230, 184, 0, 0.4);
    }
    
    /* FAQ Mobile */
    .faq-intro {
        position: static;
        margin-bottom: var(--spacing-2xl);
        padding: var(--spacing-xl) 0;
    }
    
    .faq-items {
        padding-left: 0;
    }
    
    .faq-stats {
        justify-content: center;
    }
}

/* Header CTA Button - Enhanced with more thickness/weight */
.cta-button-header {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 0.75rem;
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    color: #000 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 184, 0, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border: 2px solid var(--primary-color);
}

.cta-button-header:hover {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 184, 0, 0.5);
    color: #000 !important;
    text-decoration: none;
}

.cta-button-header:focus {
    background: var(--primary-color) !important;
    color: #000 !important;
    box-shadow: 0 0 0 0.25rem rgba(230, 184, 0, 0.5);
}

.cta-button-header:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(230, 184, 0, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--background-dark);
    padding-top: 8rem; /* Increased padding for fixed header compensation */
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

/* Smooth transition gradient to services section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12rem;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0.1) 20%, 
        rgba(0,0,0,0.3) 40%, 
        rgba(0,0,0,0.6) 60%, 
        rgba(0,0,0,0.8) 80%, 
        var(--background-dark) 100%);
    z-index: 4;
    pointer-events: none;
}

/* Mobile responsive gradient */
@media (max-width: 768px) {
    .hero::after {
        height: 8rem; /* Smaller gradient on mobile */
    }
    
    .services-horizontal .section-title {
        padding-top: 3rem; /* Less padding on mobile */
    }
}

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

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Hero content centered */
.hero .hero-title {
    max-width: none;
}

.hero .hero-subtitle {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

/* Underline Effect */
.underline-effect {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.underline-effect svg {
    position: absolute;
    bottom: -0.9rem;
    left: 0;
    width: 100%;
    height: 2.1rem;
    overflow: visible;
    pointer-events: none;
    opacity: 0; /* Hide SVG initially */
    transition: opacity 0.3s ease; /* Smooth transition when showing */
    z-index: -1;
}

.underline-effect svg path {
    stroke: var(--primary-color);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: var(--path-len, 120);
    stroke-dashoffset: var(--path-len, 120);
}

@keyframes drawUnderline {
    to {
        stroke-dashoffset: 0;
    }
}

/* Trigger animation when element is in view */
.underline-effect.animate svg {
    opacity: 1; /* Show SVG when animation starts */
}

.underline-effect.animate svg path {
    animation: drawUnderline 1.5s ease-out forwards;
}

/* Different animation delays for multiple underlines in hero */
.hero .underline-effect:nth-child(1).animate svg {
    transition-delay: 0.3s; /* Show SVG with delay */
}

.hero .underline-effect:nth-child(1).animate svg path {
    animation-delay: 0.3s;
}

.hero .underline-effect:nth-child(2).animate svg {
    transition-delay: 0.6s; /* Show SVG with delay */
}

.hero .underline-effect:nth-child(2).animate svg path {
    animation-delay: 0.6s;
}

.hero-subtitle .underline-effect:nth-child(1).animate svg {
    transition-delay: 0.9s; /* Show SVG with delay */
}

.hero-subtitle .underline-effect:nth-child(1).animate svg path {
    animation-delay: 0.9s;
}

.hero-subtitle .underline-effect:nth-child(2).animate svg {
    transition-delay: 1.2s; /* Show SVG with delay */
}

.hero-subtitle .underline-effect:nth-child(2).animate svg path {
    animation-delay: 1.2s;
}

/* CTA Buttons */
.cta-button,
.btn-primary {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 0.75rem;
    padding: var(--spacing-md) var(--spacing-2xl);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
    color: #000 !important;
    text-decoration: none;
}

.hero .cta-button,
.hero .btn-primary {
    box-shadow: 0 6px 20px rgba(230, 184, 0, 0.4);
    color: #000 !important;
}

.cta-button:hover,
.btn-primary:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #000 !important;
    text-decoration: none;
}

.cta-button:focus,
.btn-primary:focus {
    background: var(--primary-color) !important;
    color: #000 !important;
    box-shadow: 0 0 0 0.2rem rgba(230, 184, 0, 0.5);
}

/* Section Titles */
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--spacing-3xl);
    line-height: 1.1;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 2px;
    /* Default centered alignment */
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 992px){
    /* Left-aligned sections */
    .section-title.text-left::after,
    .text-left .section-title::after {
        left: 0;
        transform: translateX(0);
    }
}

/* Right-aligned sections */
.section-title.text-right::after,
.text-right .section-title::after {
    left: auto;
    right: 0;
    transform: translateX(0);
}

/* Centered sections (explicit) */
.section-title.text-center::after,
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Horizontal Services Section */
.services-horizontal {
    background: var(--background-dark);
    padding-top: 0; /* Removed padding-top for smooth transition with hero gradient */
    overflow: hidden;
}

.services-horizontal .section-title {
    padding-top: 4rem; /* Add top padding to section title for proper spacing after gradient */
}

.services-scroll-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
}

.services-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Webkit */
}

.services-track {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    width: max-content;
}

.service-card {
    flex: none;
    width: 37vw; /* Desktop: smaller size as requested */
    min-height: 420px;
    scroll-snap-align: center;
    position: relative;
}

.service-card-inner {
    background: linear-gradient(135deg, var(--background-medium) 0%, var(--background-light) 100%);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    padding: var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 184, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card-inner:hover::before {
    left: 100%;
}

.service-card-inner:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(230, 184, 0, 0.2);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.service-icon svg {
    width: 100px;
    height: 100px;
    transition: all 0.4s ease;
}

.service-card-inner:hover .service-icon svg {
    transform: scale(1.08) rotate(2deg);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.service-description {
    color: var(--text-light);
    font-size: var(--font-size-base);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.service-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: auto;
}

.service-cta:hover {
    color: var(--primary-hover);
    transform: translateX(0.5rem);
}

.services-indicators {
    text-align: center;
    margin-top: var(--spacing-xl);
    opacity: 0.7;
}

.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-light);
    font-size: var(--font-size-sm);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.scroll-hint svg {
    transform: rotate(0deg);
}

/* Scroll indicators and edge effects */
.services-scroll-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3rem;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    left: 0;
    background: linear-gradient(to right, var(--background-dark), transparent);
}

.services-scroll-container:not(.scroll-start)::before {
    opacity: 1;
}

/* Smooth scroll behavior for cards - Already defined above */

/* Add subtle glow effect for active card */
@media (hover: hover) {
    .service-card-inner:hover {
        box-shadow: 
            0 20px 40px rgba(230, 184, 0, 0.3),
            0 0 0 1px rgba(230, 184, 0, 0.2);
    }
}

/* Large Desktop - Show all 4 services without scroll */
@media (min-width: 2000px) {
    .services-horizontal {
        overflow: visible;
    }
    
    .services-scroll-container {
        overflow: visible;
        cursor: default;
    }
    
    .services-track {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-2xl);
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .service-card {
        width: 100%;
        scroll-snap-align: none;
    }
    
    .services-indicators {
        display: none;
    }
    
    .services-scroll-container::before {
        display: none;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .service-card {
        width: 50vw; /* Tablet: ~2 cards visible */
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .service-card {
        width: 65vw; /* Mobile: 65vw max with peek of next */
        min-height: 380px;
    }
    
    .service-card-inner {
        padding: var(--spacing-lg);
    }
    
    .service-icon svg {
        width: 80px;
        height: 80px;
    }
    
    .service-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-sm);
    }
    
    .service-description {
        font-size: var(--font-size-sm);
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
    }
    
    .service-cta {
        font-size: var(--font-size-sm);
    }
    
    .services-track {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .service-card {
        width: 75vw; /* Keep 65vw max as requested */
        min-height: 350px;
    }
    
    .service-card-inner {
        padding: var(--spacing-md);
    }
    
    .service-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1.9rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* How it works sections */
.how-it-works-audience {
    background: var(--background-light);
}

/* Step Rows with Background Images */
.step-row {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: var(--spacing-3xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.step-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(230, 184, 0, 0.1);
    border-color: var(--border-light);
}

.step-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.step-row .row {
    position: relative;
    z-index: 3;
}

/* Giant Numbers */
.giant-number {
    font-size: 24rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 0.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.6;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Step Content */
.step-content {
    padding: var(--spacing-xl);
}

.step-content .step-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
}

.step-content .step-description {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}

.step-row:hover .step-content .step-title {
    color: var(--primary-light);
}

.step-card {
    padding: var(--spacing-xl);
}

.step-icon {
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon svg {
    transform: scale(1.1);
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.step-description {
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.additional-info {
    font-size: var(--font-size-base);
    color: var(--text-light);
    max-width: 50rem;
    margin: 0 auto var(--spacing-2xl) auto;
    line-height: 1.7;
}

/* Organizers Section */
.how-it-works-organizers {
    background: var(--background-dark);
}

.organizer-feature {
    padding: var(--spacing-xl);
}

.step-organizer {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    margin-bottom: var(--spacing-lg);
    transition: border-color 0.3s ease;
}

.step-organizer:hover {
    border-color: var(--primary-color);
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.step-organizer .step-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.step-organizer .step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Who Benefits Section */
.who-benefits {
    background: var(--background-light);
    padding-block: var(--spacing-2xl);
}

/* Benefit Rows with Background Images */
.benefit-row {
    position: relative;
    padding: var(--spacing-2xl) 0;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(230, 184, 0, 0.1);
    border-color: var(--border-light);
}

.benefit-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.benefit-row .row {
    position: relative;
    z-index: 3;
}

/* Benefit Image Container */
.benefit-image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-image-container:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.benefit-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/2;
}

/* Benefit Content */
.benefit-content {
    padding: var(--spacing-lg);
}

.benefit-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
}

.benefit-description {
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.benefit-row:hover .benefit-title {
    color: var(--primary-light);
}

.cta-text {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.cta-subtext {
    font-size: var(--font-size-base);
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

/* FAQ Section */
.faq {
    background: var(--background-light);
}

/* FAQ Intro - Left Column */
.faq-intro {
    padding: var(--spacing-2xl) 0 0;
    position: sticky;
    top: calc(5rem + var(--spacing-lg)); /* Account for fixed header + padding */
    height: fit-content;
}

.faq-intro-text {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    line-height: 1.7;
}

.faq-stats {
    display: flex;
    gap: var(--spacing-xl);
}

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

.faq-stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.faq-stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
}

/* FAQ Items - Right Column */
.faq-item {
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(230, 184, 0, 0.05);
}

.faq-question h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-color);
}

.faq-toggle {
    font-size: var(--font-size-2xl);
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--spacing-lg);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-xl);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: var(--font-size-base);
}

/* Contact Section */
.contact {
    background: var(--background-dark);
    position: relative;
}

.contact-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    margin-bottom: var(--spacing-3xl);
    font-weight: 400;
}

/* Contact Information Column */
.contact-info {
    padding-right: var(--spacing-xl);
}

.contact-intro {
    margin-bottom: var(--spacing-2xl);
}

.contact-section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.contact-intro-text {
    font-size: var(--font-size-md);
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-details {
    margin-bottom: var(--spacing-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #000;
}

.contact-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-content p {
    font-size: var(--font-size-md);
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-style: italic;
}

/* CTA Info Highlight */
.contact-cta-info {
    margin-top: var(--spacing-2xl);
}

.cta-info-highlight {
    background: linear-gradient(135deg, rgba(230, 184, 0, 0.1) 0%, rgba(230, 184, 0, 0.05) 100%);
    border: 1px solid rgba(230, 184, 0, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-xl);
}

.cta-info-highlight h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

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

.cta-benefits-list li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-weight: 500;
}

.cta-benefits-list li::before {
    content: 'ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
}

/* Contact Form Column */
.contact-form-wrapper {
    padding-left: var(--spacing-xl);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-2xl);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    border-radius: 0.75rem;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(230, 184, 0, 0.25);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.form-privacy {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.contact-submit-btn {
    position: relative;
    padding: 1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-submit-btn .btn-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: var(--spacing-2xl);
    }
    
    .contact-form-wrapper {
        padding-left: 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .contact-item {
        padding: var(--spacing-md);
    }
    
    .cta-info-highlight {
        padding: var(--spacing-lg);
    }
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    color: var(--white);
    border-top: 2px solid var(--border-color);
    font-size: 0.9rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.footer-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--text-light);
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-color);
}

.contact-icon {
    flex-shrink: 0;
    opacity: 0.8;
}

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

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

.footer-services-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.footer-services-list a:before {
    content: "→";
    margin-right: var(--spacing-sm);
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.footer-services-list a:hover {
    color: var(--primary-color);
    padding-left: var(--spacing-sm);
}

.footer-services-list a:hover:before {
    transform: translateX(0.25rem);
}

.footer-divider {
    border-color: var(--border-color);
    margin: var(--spacing-2xl) 0 var(--spacing-xl);
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin: 0;
}

.footer-tagline {
    text-align: right;
}

.footer-tagline p {
    margin: 0;
}

.footer-tagline strong {
    color: var(--primary-color);
}

.footer-services p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.footer-cta .btn {
    border-radius: 0.5rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-cta .btn:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile Footer Adjustments */
@media (max-width: 991px) {
    .footer-tagline {
        text-align: left;
        margin-top: var(--spacing-lg);
    }
    
    .footer-section-title {
        font-size: 1rem;
    }
    
    .footer-brand {
        font-size: 1.25rem;
    }
}

/* Button Variants */
.btn-secondary {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: var(--spacing-md) var(--spacing-2xl);
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--white);
}

/* About Section */
.about {
    background: var(--background-dark);
}

.about-content {
    padding-right: var(--spacing-2xl);
}

.about .section-title {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.about-text {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.about-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* About Statistics */
.about-stats {
    margin: var(--spacing-2xl) 0;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--background-light);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.15);
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Success Cases Preview Section */
.success-cases-preview {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0px solid var(--border-color);
    display: flex;
    overflow: scroll;
    border-top: 1px solid #555;
}

.cases-preview-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: left;
    position: sticky;
    left: 0;
    background-color: #000;
    z-index: 2;
    padding: 1.5rem 2rem 1.5rem 1rem;
    margin: 0;
    height: 100%;
    white-space: nowrap;
    text-transform: uppercase;
}

.cases-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.case-logo-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    max-width: 78px;
}

.case-logo-link:hover {
    border: none;
    background: transparent;
    transform: translateY(-4px);
    box-shadow: none;
    text-decoration: none;
}

.case-preview-logo {
    max-width: 4rem;
    max-height: 4rem;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-sm);
    aspect-ratio: 1;
}

.case-logo-link:hover .case-preview-logo {
    transform: scale(1.1);
}

.case-tooltip {
    position: static;
    background: transparent;
    color: var(--text-dark);
    padding: 0;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 1;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

.case-tooltip::before {
    display: none;
}

.case-logo-link:hover .case-tooltip {
    opacity: 1;
    visibility: visible;
    color: var(--primary-color);
}

/* Responsive adjustments for cases preview */
@media (max-width: 991px) {
    .cases-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .case-preview-logo {
        max-width: 4rem;
        max-height: 4rem;
    }
}

@media (max-width: 576px) {
    .cases-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-preview-logo {
        max-width: 3.5rem;
        max-height: 3.5rem;
    }
    
    .case-tooltip {
        font-size: var(--font-size-xs);
    }
}

/* About Image */
.about-image {
    padding-left: var(--spacing-xl);
}

.image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: var(--spacing-xl);
}

.experience-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-number {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.badge-text {
    font-size: var(--font-size-sm);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .hero {
        padding-top: 6rem; /* Increased mobile padding for fixed header */
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    /* Header CTA Mobile */
    .cta-button-header {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: var(--font-size-4xl);
    }
    
    /* Step Rows Mobile */
    .step-row {
        padding: var(--spacing-2xl) 0;
        margin-bottom: var(--spacing-xl);
    }
    
    .giant-number {
        font-size: 4rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .step-content {
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .step-content .step-title {
        font-size: var(--font-size-xl);
    }
    
    .step-content .step-description {
        font-size: var(--font-size-base);
    }
    
    .step-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    /* Benefit Rows Mobile */
    .benefit-row {
        padding: var(--spacing-lg) 0;
        margin-bottom: var(--spacing-md);
    }
    
    .benefit-content {
        padding: var(--spacing-md) 2rem;
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
    
    .benefit-title {
        font-size: var(--font-size-lg);
    }
    
    .benefit-description {
        font-size: var(--font-size-sm);
    }
    
    .benefit-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .step-organizer {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .cta-text {
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 8rem; /* Ensure enough padding on small mobile devices */
    }
    
    .hero-background-image {
        opacity: 1;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    }
    
    .hero-subtitle {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    }
    
    /* Header CTA Mobile Small */
    .cta-button-header {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
        margin-bottom: 2rem;
    }
    
    /* Step Rows Mobile Small */
    .step-row {
        padding: var(--spacing-xl) 0;
    }
    
    .giant-number {
        font-size: 13rem;
        margin-bottom: var(--spacing-md);
        position: absolute;
        opacity: .2 !important;
    }
    
    .step-background-image {
        opacity: 0.15;
    }
    
    .step-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 100%);
    }
    
    .step-content .step-title {
        font-size: var(--font-size-2xl);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    }
    
    .step-content .step-description {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    /* Benefit Rows Mobile Small */
    .benefit-row {
        padding: var(--spacing-md) 0;
    }
    
    .benefit-background-image {
        opacity: 0.1;
    }
    
    .benefit-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 100%);
    }
    
    .benefit-title {
        font-size: 1.7rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
        margin-bottom: var(--spacing-sm);
        padding-block: 1rem;
    }
    
    .benefit-description {
        font-size: var(--font-size-sm);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        line-height: 1.5;
    }
    
    /* About Mobile */
    .about-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: var(--spacing-2xl);
    }
    
    .about .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-image {
        padding-left: 0;
    }
    
    .stat-item {
        margin-bottom: var(--spacing-md);
    }
    
    .cta-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    .step-card,
    .feature-card,
    .organizer-feature {
        padding: var(--spacing-lg);
    }
    
    .benefit-card,
    .step-organizer {
        padding: var(--spacing-lg);
    }
}

/* Additional utility classes for spacing */
.py-5 {
    padding-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-4xl);
}

.py-4 {
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
}

.mb-5 {
    margin-bottom: var(--spacing-4xl);
}

.mt-5 {
    margin-top: var(--spacing-4xl);
}

/* CTA Section - Enhanced Design */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f5c842 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Background Decorative Elements */
.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-particle {
    position: absolute;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cta-particle-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.cta-particle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 8%;
    animation-delay: 4s;
}

.cta-geometric-shape {
    position: absolute;
    background: rgba(0, 0, 0, 0.03);
    animation: rotate 20s linear infinite;
}

.cta-shape-1 {
    width: 150px;
    height: 150px;
    top: 5%;
    right: 20%;
    transform: rotate(45deg);
    border-radius: 20px;
}

.cta-shape-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 5%;
    border-radius: 50%;
    animation-direction: reverse;
}

/* Floating Football Elements */
.cta-football-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.cta-football-icon {
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    animation: float 8s ease-in-out infinite;
}

.cta-football-1 {
    top: 15%;
    left: 15%;
    animation-delay: 1s;
}

.cta-football-2 {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.cta-football-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 5s;
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 3;
}

/* CTA Badge */
.cta-badge {
    display: inline-block;
    background: #000;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.cta-badge-text {
    position: relative;
    z-index: 2;
}

/* CTA Title */
.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-highlight {
    color: #000;
    background: linear-gradient(135deg, #333, #000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.cta-gradient-text {
    background: linear-gradient(135deg, #2c1810, #000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* CTA Description */
.cta-description {
    font-size: var(--font-size-lg);
    color: #000;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-emphasis {
    background: #000;
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
}

/* CTA Benefits */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-size: 0.95rem;
    font-weight: 600;
}

.cta-benefit-item svg {
    color: #000;
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

/* Primary Button */
.cta-primary-button {
    background: #000;
    color: var(--primary-color);
    border: 3px solid #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-button-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.cta-button-arrow {
    transition: transform 0.3s ease;
}

.cta-button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 184, 0, 0.3), transparent);
    z-index: 1;
    transition: left 0.6s ease;
}

.cta-primary-button:hover {
    background: transparent;
    color: #000;
    border-color: #000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-primary-button:hover .cta-button-arrow {
    transform: translateX(4px);
}

.cta-primary-button:hover .cta-button-shine {
    left: 100%;
}

.cta-primary-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Secondary Button */
.cta-secondary-button {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: var(--font-size-base);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-secondary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #000;
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cta-secondary-button:hover {
    background: #000;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-secondary-button:hover .cta-secondary-icon {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

/* Trust Indicators */
.cta-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: #000;
    opacity: 0.8;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.cta-trust-item {
    text-align: center;
}

.cta-trust-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.2rem;
}

.cta-trust-item span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.cta-trust-separator {
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-section {
        min-height: 60vh;
        padding: var(--spacing-4xl) 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-button,
    .cta-secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-trust-separator {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: var(--font-size-base);
    }
    
    .cta-particle,
    .cta-geometric-shape,
    .cta-football-elements {
        opacity: 0.3;
    }
}

/* Inview Animations - Subtle entrance effects */
.animate-inview {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-inview.fade-in {
    opacity: 0;
    transform: none;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-inview.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-inview.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-inview.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-inview.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animated state when visible */
.animate-inview.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered animations for groups */
.stagger-container .animate-inview:nth-child(1) { transition-delay: 0.1s; }
.stagger-container .animate-inview:nth-child(2) { transition-delay: 0.2s; }
.stagger-container .animate-inview:nth-child(3) { transition-delay: 0.3s; }
.stagger-container .animate-inview:nth-child(4) { transition-delay: 0.4s; }
.stagger-container .animate-inview:nth-child(5) { transition-delay: 0.5s; }
.stagger-container .animate-inview:nth-child(6) { transition-delay: 0.6s; }

/* Faster animations for text elements */
.animate-inview.text-fast {
    transition-duration: 0.6s;
}

/* Slower animations for images and large elements */
.animate-inview.slow {
    transition-duration: 1.2s;
}

/* Bounce effect for CTAs */
.animate-inview.bounce {
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Special animation for numbers and stats */
.animate-inview.counter {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-inview.counter.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.step-row .animate-inview.counter.visible {
    opacity: .4;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .animate-inview {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .animate-inview.visible {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        margin-inline: auto;
    }
}

/* Scrollspy - Active navigation state */



.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::after {
    opacity: 0.5;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    opacity: 1;
}

/* Scrollspy - CTA Header Button Active State */
.cta-button-header.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--background-dark) !important;
    font-weight: 600;
}

.cta-button-header {
    transition: all 0.3s ease;
}

/* 
// TRANSLATION STYLES DISABLED - Will be implemented later
// ======================================================

// Language Selector
.language-selector {
    position: relative;
}
... translation styles commented out ...

// END TRANSLATION STYLES - DISABLED
// ================================ 
*/

/* Brand Logo Styling */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.2em;
    font-size: 1.6rem; /* Base size - cambia este valor para escalar todo el logo */
}

.brand-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    /* El tamaÃƒÆ’Ã‚Â±o se controla desde el SVG usando em */
}

.brand-logo:hover .brand-icon {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-primary {
    font-size: 1.1em;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 0.03em;
    margin-bottom: -0.1em;
}

.brand-secondary {
    font-size: 0.84em;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Responsive adjustments for brand - ahora solo cambiamos el font-size base */
@media (max-width: 768px) {
    .brand-logo {
        font-size: 0.9rem; /* Todo el logo se escala proporcionalmente */
        gap: 0.4em;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        font-size: 1.3rem; /* Todo el logo se escala proporcionalmente */
        gap: 0.35em;
    }
}

/* About Field Animation */
.about-field-animation {
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
}

.field-drawing-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: var(--spacing-lg);
}

/* Field lines animation - stroke drawing effect */
.field-line {
    animation: none; /* Initially no animation */
    stroke-width: 18px;
    /* stroke-dasharray and stroke-dashoffset are set dynamically via JavaScript */
}

.field-tech {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: none; /* Initially no animation */
}

/* Animation when field enters viewport */
.field-drawing-svg.animate .field-line {
    animation: drawFieldLine 3.5s ease-out forwards;
}

.field-drawing-svg.animate .field-tech {
    animation: drawTechLine 2s ease-out 1.5s forwards;
}

@keyframes drawFieldLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawTechLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Field description styling */
.field-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 2.5s;
}

.field-drawing-svg.animate + .field-description {
    opacity: 1;
    transform: translateY(0);
}

.field-description h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.field-description p {
    font-size: var(--font-size-md);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Desktop rotation for field drawing SVG */
@media (min-width: 992px) {
    .field-drawing-svg {
        transform: rotate(90deg) scale(1.2);
        width: 100%;
        max-width: 630px;
        height: auto;
    }
}

/* Responsive adjustments for field animation */
@media (max-width: 768px) {
    .about-field-animation {
        padding: var(--spacing-lg);
    }
    
    .field-drawing-svg {
        max-width: 400px;
    }
    
    .field-description h4 {
        font-size: var(--font-size-lg);
    }
    
    .field-description p {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 576px) {
    .field-drawing-svg {
        max-width: 320px;
    }
    
    .about-field-animation {
        padding: var(--spacing-md);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* About Us Page Styles */

/* Alternative Hero Section - About Us Page */
/* 
   Features:
   - Left: Title, description, and stats
   - Right: Constant velocity movement animation with club logos (no background)
   - Logos maintain vertical orientation while moving at constant speed within rectangular bounds
   - Movement: Linear velocity with collision detection and reflection on rectangular boundaries
   - Interactive: hover effects and click-to-scroll functionality
   - Individual logo pause on hover (others continue moving)
   - CTA button for scrolling to success cases
   - Mobile-first responsive design
   - Movement: 0.6px per frame at 60fps (reduced speed), same for all logos
   - Container: Full width of parent column (100% width, fixed height)
   - Desktop: up to 600px width × 400px height, dynamically calculated
   - Tablet: up to 400px width × 320px height
   - Mobile: up to 320px width × 280px height  
   - Small: up to 280px width × 240px height
   - Shape: Rounded rectangle (12px border-radius)
   - Logo sizes: Premium logos (Liverpool, Murcia, Espanyol, Brugge, Beroe) up to 180px desktop, others 50-85px range
*/
.hero-alternative {
    background: var(--background-dark);
    padding-top: 8rem; /* Account for fixed header */
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-alternative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(230, 184, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

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

/* Hero Alternative Content - Left Side */
.hero-alt-content {
    padding-right: var(--spacing-2xl);
}

.hero-alt-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    line-height: 1.1;
}

.hero-alt-description {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
}

.hero-alt-stats {
    display: flex;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.alt-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.alt-stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.alt-stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Success Cases Sphere - Right Side */
.success-sphere-container {
    text-align: center;
    position: relative;
}

.sphere-title {
    margin-bottom: var(--spacing-2xl);
}

.sphere-title h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.sphere-title p {
    color: var(--text-light);
    font-size: var(--font-size-base);
    margin: 0;
}

/* Random Movement Animation Container - Responsive width, fixed height */
.success-sphere {
    position: relative;
    width: 100%; /* Full width of container in desktop */
    height: 400px; /* Fixed height for better proportions */
    max-width: 600px; /* Maximum width limit */
    margin: 0 auto var(--spacing-2xl);
    border-radius: 12px; /* Rounded rectangle */
    /* No fixed animation - controlled by JavaScript */
}

.sphere-logo {
    position: absolute;
    cursor: pointer;
    /* No transition for completely smooth constant velocity movement */
    transform-origin: center;
    /* Size and position will be set dynamically by JavaScript */
    left: 50%;
    top: 50%;
}

.sphere-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: transparent; /* No background */
    padding: 0; /* No padding */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.logo-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Logo positions will be set dynamically by JavaScript for random movement */

/* Logo sizes are now handled dynamically by JavaScript */

/* Hover Effects */
.sphere-logo:hover {
    z-index: 10;
}

.sphere-logo:hover img {
    transform: scale(1.2);
    box-shadow: 0 12px 30px rgba(230, 184, 0, 0.4);
    filter: drop-shadow(0 8px 16px rgba(230, 184, 0, 0.3));
}

.sphere-logo:hover .logo-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

/* Random movement animation will be controlled by JavaScript */

/* CTA Button */
.sphere-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.sphere-cta-button {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 0.75rem;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: #000 !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 184, 0, 0.3);
}

.sphere-cta-button:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 184, 0, 0.4);
    color: #000 !important;
    text-decoration: none;
}

.sphere-cta-button svg {
    transition: transform 0.3s ease;
}

.sphere-cta-button:hover svg {
    transform: translateX(4px);
}

/* About Hero Section */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero .hero-background-image {
    opacity: 0.4;
    filter: grayscale(20%);
}

.about-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-subtitle-container {
    margin-bottom: var(--spacing-2xl);
}

.hero-subtitle-main {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.02em;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.hero-tag {
    background: rgba(230, 184, 0, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--text-dark);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 2rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

/* About Paco Section */
.about-paco {
    background: var(--background-dark);
    padding-top: 8rem; /* Account for fixed header on about-us page */
}

.paco-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paco-image-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(230, 184, 0, 0.2);
}

.paco-profile-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 3/4;
    object-position: bottom;
}

.paco-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 70%);
    padding: var(--spacing-xl);
}

.paco-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-number {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.badge-text {
    font-size: var(--font-size-sm);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.paco-content {
    padding-left: var(--spacing-2xl);
}

.paco-description {
    /* font-size: var(--font-size-lg); */
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.text-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.paco-stats {
    margin: var(--spacing-2xl) 0;
}

/* Sports Experience Section */
.sports-experience {    
    background: var(--background-light);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(230, 184, 0, 0.3);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-4xl);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--background-light);
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 2;
}

.timeline-year {
    background: var(--primary-color);
    color: #000;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 2rem;
    font-weight: 700;
    font-size: var(--font-size-sm);
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
}

.timeline-content {
    background: var(--background-medium);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: var(--spacing-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 2.5rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 2rem);
}

.timeline-content:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(230, 184, 0, 0.15);
}

.timeline-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.timeline-position {
    font-size: var(--font-size-base);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

.timeline-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Club Badge Styles */
.timeline-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.club-badge {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.club-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
}

.timeline-text {
    flex: 1;
}

/* Small badges for sub-clubs */
.club-mentions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.club-mention {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(230, 184, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    font-weight: 500;
}

.small-badge {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    border-radius: var(--radius-xs);
}

/* About Company Section Styles */
.about-company {
    background: var(--background-light);
}

.capability-card {
    background: var(--background-medium);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
}

.capability-card:hover {
    transform: translateY(-0.5rem);
    border-color: var(--primary-color);
    box-shadow: 0 0.5rem 2rem rgba(230, 184, 0, 0.15);
}

.capability-icon {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.capability-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.capability-card p {
    color: var(--text-light);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

/* Success Cases Styles */
.success-cases h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.success-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(230, 184, 0, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-sm);
}

.success-item:hover {
    transform: translateX(0.5rem);
    background: rgba(230, 184, 0, 0.15);
    box-shadow: 0 0.25rem 1rem rgba(230, 184, 0, 0.2);
}

.success-badge {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-text {
    flex: 1;
}

.success-text strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: var(--font-size-base);
}

.success-text small {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* Full Viewport Success Cases Section - 50/50 Alternating Layout */
.success-cases-section {
    background: transparent;
    padding: 0;
    overflow: hidden;
}

.success-cases-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.dynamic-success-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Background overlay for readability */
.dynamic-success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Specific backgrounds for each case */
.dynamic-success-card:nth-child(1) {
    background-image: url('../assets/images/backgrounds/field.webp'); /* Club Brugge - Field */
}

.dynamic-success-card:nth-child(2) {
    background-image: url('../assets/images/backgrounds/field.webp'); /* Lorca FC - Field */
}

.dynamic-success-card:nth-child(3) {
    background-image: url('../assets/images/backgrounds/field.webp'); /* Rising Phoenix - Field */
}

.dynamic-success-card:nth-child(4) {
    background-image: url('../assets/images/backgrounds/beroe.jpeg'); /* PFC Beroe */
}

.dynamic-success-card:nth-child(5) {
    background-image: url('../assets/images/backgrounds/field.webp'); /* Liverpool FC */
}

.dynamic-success-card:nth-child(6),
.dynamic-success-card:nth-child(7),
.dynamic-success-card:nth-child(8),
.dynamic-success-card:nth-child(9) {
    background-image: url('../assets/images/backgrounds/field.webp'); /* Real Murcia */
}

/* Giant Case Numbers - Alternating Left/Right */
.case-number {
    position: absolute;
    font-size: 37rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 1;
    bottom: 0;
    line-height: 0.8;
    font-family: 'Inter', sans-serif;
    user-select: none;
}

.case-number-left {
    left: -5rem;
}

.case-number-right {
    right: -5rem;
}

/* Logo Block - 50% Full Viewport */
.success-logo-block {
    text-align: center;
    padding: 0 var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mega-success-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18rem;
    margin-bottom: var(--spacing-xl);
    background: transparent;
    transition: all 0.3s ease;
}

.mega-club-logo {
    max-width: 24rem;
    max-height: 17rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none;
    width: 100%;
    height: auto;
}

.dynamic-success-card:hover .mega-club-logo {
    transform: scale(1.05);
}

.success-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.success-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.meta-country, .meta-period {
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-country {
    background: #ffffff;
    color: #000;
    border-radius: 1rem;
}

/* .meta-period {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
} */

/* Clean Highlights List with Green Checks */
.success-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    min-width: 320px;
}

.highlight-achievement {
    position: relative;
    padding: var(--spacing-sm) 0 var(--spacing-xs) var(--spacing-xl);
    background: transparent;
    border-radius: 0;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.highlight-achievement::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-weight: 700;
    font-size: 1.2em;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Description Block - 50% Full Viewport */
.success-description-block {
    padding: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.case-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.case-description strong {
    color: #fff;
    font-weight: 600;
}

/* Success CTA - Yellow Button Style */
.success-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--primary-color);
    border: none;
    border-radius: 0.75rem;
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
    color: #000;
    text-decoration: none;
    margin-top: var(--spacing-lg);
}

.success-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 184, 0, 0.4);
    color: #000;
    text-decoration: none;
}

.success-cta svg {
    transition: transform 0.3s ease;
    width: 1.2em;
    height: 1.2em;
}

.success-cta:hover svg {
    transform: translateX(0.25rem);
}

/* Content container for full viewport cards */
.dynamic-success-card .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--spacing-2xl);
}

/* Responsive adjustments for full viewport layout */
@media (max-width: 991px) {
    .dynamic-success-card {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .success-logo-block,
    .success-description-block {
        padding:  0;
        text-align: center;
    }
    
    .mega-success-logo {
        height: 16rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .mega-club-logo {
        max-width: 20rem;
        max-height: 15rem;
    }
    
    .success-title {
        font-size: var(--font-size-xl);
    }
    
    .success-meta {
        justify-content: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .case-description {
        text-align: left;
        font-size: var(--font-size-base);
    }
    
    .success-cta {
        justify-content: center;
    }
    
    .dynamic-success-card .container {
        padding: var(--spacing-xl);
    }
    
    /* Responsive case numbers */
    .case-number {
        font-size: 12rem;
    }
    
    .case-number-left {
        left: -2rem;
    }
    
    .case-number-right {
        right: -2rem;
    }
}

@media (max-width: 576px) {
    .case-number {
        font-size: 8rem;
    }
    
    .case-number-left {
        left: -1rem;
    }
    
    .case-number-right {
        right: -1rem;
    }
}

/* Journalism Experience Section */
.journalism-experience {
    background: var(--background-dark);
}

.journalism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.media-item {
    background: var(--background-medium);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.media-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 184, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.media-item:hover::before {
    left: 100%;
}

.media-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(230, 184, 0, 0.15);
}

.media-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.media-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.media-period {
    background: rgba(230, 184, 0, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 1rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(230, 184, 0, 0.3);
}

.media-position {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.media-description {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    font-style: italic;
}

/* Clubs Section */
.clubs-section {
    background: var(--background-light);
}

.clubs-showcase {
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.clubs-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clubs-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(230, 184, 0, 0.2);
}

/* Responsive Design for Alternative Hero */
@media (max-width: 991px) {
    .hero-alternative {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .hero-alt-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: var(--spacing-2xl);
    }
    
    .hero-alt-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-alt-description {
        font-size: var(--font-size-base);
    }
    
    .hero-alt-stats {
        justify-content: center;
        gap: var(--spacing-xl);
    }
    
    .alt-stat-item {
        align-items: center;
        text-align: center;
    }
    
    .success-sphere {
        width: 100%;
        height: 320px;
        max-width: 400px;
    }
    
    /* Logo positions and sizes handled by JavaScript for all screen sizes */
}

@media (max-width: 768px) {
    .hero-alternative {
        padding-top: 6rem;
        padding-bottom: 2rem;
    }
    
    .hero-alt-title {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-alt-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-alt-stats {
        gap: var(--spacing-lg);
    }
    
    .alt-stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .sphere-title h3 {
        font-size: var(--font-size-xl);
    }
    
    .success-sphere {
        width: 100%;
        height: 280px;
        max-width: 320px;
    }
    
    /* Logo positions and sizes handled by JavaScript */
}

@media (max-width: 576px) {
    .hero-alternative {
        padding-top: 8rem;
        padding-bottom: 2rem;
    }
    
    .hero-alt-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-alt-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--spacing-md);
    }
    
    .alt-stat-number {
        font-size: var(--font-size-xl);
    }
    
    .success-sphere {
        width: 100%;
        height: 240px;
        max-width: 280px;
    }
    
    /* Logo positions and sizes handled by JavaScript */
    
    .sphere-cta-button {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: var(--font-size-base);
    }
}

/* Responsive Design for About Us */
@media (max-width: 991px) {
    .paco-content {
        padding-left: 0;
        text-align: center;
        margin-top: var(--spacing-2xl);
    }
    
    .paco-description {
        text-align: center;
    }

    .timeline-container::before {
        left: 2rem;
    }
    
    .timeline-item::before {
        left: 2rem;
    }
    
    .timeline-year {
        left: 2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 4rem;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding-top: 5rem;
    }
    
    .about-paco {
        padding-top: 6rem; /* Responsive padding for tablets and mobile */
    }
    
    .hero-subtitle-main {
        font-size: var(--font-size-lg);
    }
    
    .hero-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-tag {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .paco-profile-image {
        aspect-ratio: 1/1;
    }
    
    .timeline-container::before {
        left: 1rem;
    }
    
    .timeline-item::before {
        left: 1rem;
    }
    
    .timeline-year {
        left: 1rem;
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 2.5rem;
        margin-right: 0;
    }
    
    .timeline-content {
        padding: var(--spacing-lg);
        margin-top: 2rem;
    }
    
    .timeline-title {
        font-size: var(--font-size-lg);
    }
    
    .timeline-position {
        font-size: var(--font-size-sm);
    }
    
    .timeline-description {
        font-size: var(--font-size-sm);
    }
    
    .journalism-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .media-item {
        padding: var(--spacing-lg);
    }
    
    .media-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .media-name {
        font-size: var(--font-size-base);
    }
    
    .media-period {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .about-paco {
        padding-top: 8rem; /* Ensure enough padding on small mobile devices */
    }
    
    .timeline-container::before {
        left: 0.5rem;
    }
    
    .timeline-item::before {
        left: 0.5rem;
        width: 0.8rem;
        height: 0.8rem;
    }
    
    .timeline-year {
        left: 0.5rem;
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 2rem;
    }
    
    .clubs-image {
        border-radius: 1rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
}