/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #cccccc;
    --accent-color: #808080;
    --dark-bg: #1a1a1a;
    --dark-surface: rgba(30, 30, 30, 0.8);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --gradient-1: linear-gradient(135deg, #808080 0%, #606060 100%);
    --gradient-2: linear-gradient(135deg, #a0a0a0 0%, #707070 100%);
    --gradient-3: linear-gradient(135deg, #909090 0%, #505050 100%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Hide default cursor on desktop only */
@media (min-width: 1025px) and (pointer: fine) {
    /* Hide cursor on ALL elements, including inputs, textareas, buttons, links */
    *,
    *::before,
    *::after,
    input,
    textarea,
    button,
    a,
    select,
    label {
        cursor: none !important;
    }
    
    /* Specific overrides for elements that might have cursor styles */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="search"],
    input[type="tel"],
    input[type="url"],
    textarea {
        cursor: none !important;
    }
    
    button,
    a,
    .btn,
    .nav-link,
    .lang-btn,
    .hamburger {
        cursor: none !important;
    }
    
    /* Custom cursor with logo */
    #custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        pointer-events: none;
        z-index: 99999;
        opacity: 0;
        transition: opacity 0.2s ease;
        transform-origin: center center;
        will-change: left, top;
    }
    
    #custom-cursor .cursor-logo {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }
    
    #custom-cursor .cursor-logo img {
        width: 40px;
        height: auto;
        max-width: 40px;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
        transition: all 0.2s ease;
    }
    
    /* Hover state - enlarge cursor */
    #custom-cursor.cursor-hover .cursor-logo img {
        transform: scale(1.3);
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
    }
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better touch targets */
a, button, input, textarea, select {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ===================================
   ANIMATED BACKGROUND
   =================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 30px) scale(0.9);
    }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

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

.logo-accent {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 44px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.lang-flag {
    font-size: 20px;
    line-height: 1;
}

.lang-text {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 15px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    max-width: 100vw;
    z-index: 0;
    overflow: hidden;
    margin: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.4) contrast(1.1);
    animation: imageScale 20s ease-in-out infinite;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Desktop: show full image with contain */
@media (min-width: 769px) {
    .hero-image {
        object-fit: contain;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Mobile: cover screen but show more content with adjusted zoom and position */
@media (max-width: 768px) {
    .hero-image {
        object-fit: cover !important;
        object-position: center 40% !important;
        transform: translate(-50%, -50%) scale(0.55) !important;
        width: 180% !important;
        height: 180% !important;
        max-width: 180% !important;
    }
}

@keyframes imageScale {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.02);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.75) 0%,
        rgba(26, 26, 26, 0.55) 30%,
        rgba(26, 26, 26, 0.65) 70%,
        rgba(26, 26, 26, 0.85) 100%
    );
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center 40%,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(204, 204, 204, 0.08) 80%,
        rgba(26, 26, 26, 0.4) 100%
    );
    opacity: 1;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    padding: 20px 20px;
    margin-top: 0;
}

/* Staggered animations */
[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    animation: fadeInUp 0.8s ease forwards;
}

[data-delay="0.2"].animated {
    animation-delay: 0.2s;
}

[data-delay="0.4"].animated {
    animation-delay: 0.4s;
}

[data-delay="0.6"].animated {
    animation-delay: 0.6s;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-accent {
    color: var(--accent-color);
    text-shadow: 0 0 40px var(--accent-color);
    display: inline-block;
    animation: accent-glow 2s ease-in-out infinite;
}

@keyframes accent-glow {
    0%, 100% {
        text-shadow: 0 0 40px var(--accent-color), 0 0 60px var(--accent-color);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 60px var(--accent-color), 0 0 80px var(--accent-color), 0 0 100px var(--accent-color);
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 0;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #505050, #353535);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(80, 80, 80, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #606060, #454545);
    box-shadow: 0 15px 40px rgba(80, 80, 80, 0.6);
    border-color: rgba(255, 255, 255, 0.25);
}

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

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

/* Hero visual removed - using team image instead */

.floating-card {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation: float-card 8s ease-in-out infinite;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation: float-card 10s ease-in-out infinite;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation: float-card 12s ease-in-out infinite;
    animation-delay: 4s;
}

.card-glow {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0.3;
    animation: pulse 3s ease infinite;
}

@keyframes float-card {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* ===================================
   SCROLL INDICATOR
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
    opacity: 0.8;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrows {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.arrows span {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: scroll-arrow 1.5s ease-in-out infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll-arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translateY(-10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translateY(10px);
    }
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
    background: var(--dark-bg);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header {
    margin-bottom: 40px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-content {
    margin-top: 40px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.lead-text {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-text p {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.stat-item:hover::after {
    width: 300px;
    height: 300px;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.3), 0 0 25px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.highlight-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* ===================================
   TEAM GRID
   =================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1400px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.staff-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.staff-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

@media (max-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.staff-grid .team-card {
    width: 100%;
    max-width: 100%;
}

.staff-grid .team-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

@media (max-width: 1200px) {
    .staff-grid {
        max-width: 900px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .staff-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .staff-title {
        margin-bottom: 30px;
        font-size: clamp(24px, 5vw, 32px);
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .staff-grid .team-card-inner {
        min-height: auto;
    }
}

.team-card {
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.team-card-inner {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.team-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-card-inner {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
}

.team-card:hover .team-card-inner::before {
    opacity: 0.1;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-role {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 8px;
}

.team-nationality {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 0;
    font-style: italic;
}

.team-email {
    margin-top: 10px;
    font-size: 13px;
}

.team-email a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-email a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

/* ===================================
   RESULTS GRID
   =================================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.result-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.result-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.result-card:hover::after {
    left: 100%;
}

.result-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.3), 0 0 25px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.result-icon {
    font-size: 48px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.result-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    text-align: center;
}

.result-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 50px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    text-align: center;
}

.result-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    flex-shrink: 0;
}

.result-badge-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.result-badge-silver {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.result-badge-bronze {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}

/* ===================================
   SPONSORS SECTION
   =================================== */
.sponsors-content {
    margin-top: 40px;
}

.sponsors-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.sponsors-lead {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.sponsors-description {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
}

.sponsors-subtitle {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.3), 0 0 25px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.package-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.3);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}

.package-badge-bronze {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}

.package-badge-silver {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.package-badge-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.package-features {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.package-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.sponsors-cta {
    text-align: center;
    padding: 50px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-text {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 20px;
    will-change: transform, opacity;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.discord-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.discord-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
}

.social-btn {
    padding: 8px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

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

.social-icon-btn {
    min-height: 36px;
    padding: 8px 14px;
}

.social-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-icon-btn:hover .social-icon {
    transform: scale(1.15);
}

/* Social media specific colors on hover */
.social-icon-btn[aria-label="Twitter"]:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.social-icon-btn[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.social-icon-btn[aria-label="TikTok"]:hover {
    background: #000000;
    border-color: #FF0050;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-info {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-surface);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    cursor: pointer;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    opacity: 0.9;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.footer-social-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.footer-social-link:hover .footer-social-icon {
    transform: scale(1.15);
}

.footer-social-link[aria-label="Twitter"]:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: #ffffff;
}

.footer-social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    color: #ffffff;
}

.footer-social-link[aria-label="TikTok"]:hover {
    background: #000000;
    border-color: #FF0050;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (min-width: 1400px) {
    .team-grid {
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar .container {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background: var(--dark-surface);
        backdrop-filter: blur(20px);
        padding: 40px 30px;
        gap: 0;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        text-align: center;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .language-switcher {
        margin-left: 10px;
    }

    .lang-btn {
        padding: 6px 12px;
        min-height: 40px;
    }

    .lang-flag {
        font-size: 18px;
    }

    .lang-text {
        font-size: 12px;
    }

    .hamburger {
        display: flex;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding-top: 100px;
        min-height: 85vh;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 20px 10px;
        margin-top: 0;
    }

    .hero-title {
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    .hero-visual {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator .mouse {
        width: 25px;
        height: 40px;
    }

    .particles-container {
        opacity: 0.5;
    }

    .section {
        padding: 50px 0;
    }
    
    .section:first-of-type {
        padding-top: 50px;
    }
    
    .section:not(:first-of-type) {
        margin-top: -40px;
        padding-top: 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 36px);
        margin-bottom: 15px;
    }

    .about-text {
        padding: 0 10px;
        margin-bottom: 50px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        padding: 30px 0;
    }

    .stat-item {
        padding: 25px 20px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .highlight-card {
        padding: 35px 25px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .sponsors-cta {
        padding: 40px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
        align-items: stretch;
    }

    .contact-info {
        padding: 30px 20px;
        gap: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 0;
        align-items: center;
        padding: 20px 15px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 14px;
        word-break: break-word;
    }

    .social-links {
        justify-content: center;
        width: 100%;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .social-btn {
        flex: 1;
        min-width: 0;
        font-size: 11px;
        padding: 8px 12px;
        min-height: 36px;
    }

    .social-icon {
        width: 14px;
        height: 14px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        height: auto;
    }

    .contact-form {
        height: auto;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .team-card-inner {
        padding: 30px 20px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .result-card {
        padding: 35px 25px;
        min-height: 240px;
    }
    
    .result-title {
        min-height: 58px;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        padding: 10px 0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-img {
        height: 38px;
        max-width: 150px;
    }

    .footer-logo {
        height: 45px;
        max-width: 180px;
    }

    .hero {
        padding-top: 80px;
        min-height: 75vh;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 20px 15px;
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(32px, 12vw, 48px);
    }

    .hero-subtitle {
        font-size: clamp(14px, 4vw, 18px);
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section {
        padding: 40px 0;
    }
    
    .section:first-of-type {
        padding-top: 40px;
    }
    
    .section:not(:first-of-type) {
        margin-top: -50px;
        padding-top: 40px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: clamp(24px, 8vw, 32px);
    }

    .about-text {
        margin-bottom: 35px;
        padding: 0;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-stats {
        gap: 15px;
        padding: 25px 0;
        margin-top: 30px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

    .about-highlights {
        gap: 20px;
        margin-top: 25px;
    }

    .highlight-card {
        padding: 25px 20px;
    }

    .highlight-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .highlight-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .highlight-card p {
        font-size: 14px;
    }

    .team-grid {
        gap: 20px;
        margin-top: 25px;
    }

    .team-card-inner {
        padding: 25px 15px;
    }

    .team-avatar {
        width: 85px;
        height: 85px;
        margin-bottom: 15px;
    }

    .team-name {
        font-size: 18px;
    }

    .team-role {
        font-size: 13px;
    }

    .results-grid {
        gap: 20px;
    }

    .result-card {
        padding: 25px 20px;
        min-height: 220px;
    }

    .result-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .result-title {
        font-size: 18px;
        margin-bottom: 10px;
        min-height: 54px;
    }

    .result-description {
        font-size: 14px;
        margin-bottom: 15px;
        min-height: 40px;
    }

    .result-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .contact-content {
        gap: 35px;
        margin-top: 25px;
    }

    .contact-info {
        padding: 25px 20px;
        gap: 20px;
    }

    .benefits-grid {
        gap: 20px;
        margin-bottom: 40px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .benefit-card h4 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .packages-grid {
        gap: 20px;
        margin-bottom: 40px;
    }

    .package-card {
        padding: 30px 20px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-badge {
        padding: 10px 25px;
        font-size: 16px;
        margin-bottom: 25px;
    }

    .package-features li {
        font-size: 14px;
        padding: 10px 0;
    }

    .sponsors-cta {
        padding: 35px 15px;
    }

    .cta-text {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 25px;
    }

    .contact-item {
        gap: 12px;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .contact-icon {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }

    .contact-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact-item p {
        font-size: 13px;
        word-break: break-word;
    }

    .social-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .social-btn {
        width: 100%;
        padding: 12px 18px;
        font-size: 13px;
        min-height: 48px;
        justify-content: center;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-social {
        gap: 15px;
        margin-bottom: 25px;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
    }

    .footer-social-icon {
        width: 20px;
        height: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links a {
        padding: 8px 0;
        font-size: 15px;
    }

    .footer-text {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .language-switcher {
        margin-left: 5px;
    }

    .lang-btn {
        padding: 6px 10px;
        min-height: 38px;
        min-width: 38px;
    }

    .lang-flag {
        font-size: 16px;
    }

    .lang-text {
        font-size: 10px;
    }

    .hamburger {
        min-width: 44px;
        min-height: 44px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-image {
        filter: brightness(0.35) contrast(1.15);
        animation: none;
        transform: translate(-50%, -50%) scale(0.5) !important;
        max-width: 200% !important;
        width: 200% !important;
        height: 200% !important;
        object-fit: cover !important;
        object-position: center 40% !important;
        position: absolute;
        left: 50%;
        top: 50%;
        right: auto;
        min-height: 100%;
        min-width: 100%;
    }
    
    .hero-background {
        max-width: 100vw;
        width: 100vw;
        overflow: hidden;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .hero {
        overflow-x: hidden;
        position: relative;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(26, 26, 26, 0.85) 0%,
            rgba(26, 26, 26, 0.7) 50%,
            rgba(26, 26, 26, 0.95) 100%
        );
    }

    .particles-container {
        opacity: 0.3;
    }

    .nav-menu {
        top: 64px;
        height: calc(100vh - 64px);
        padding: 30px 20px;
    }

    .nav-link {
        padding: 16px 0;
        font-size: 17px;
        min-height: 50px;
    }

    .hero-content {
        padding: 30px 10px;
    }

    .lead-text {
        font-size: clamp(18px, 5vw, 24px);
    }
}

/* Extra small devices (phones in landscape, small phones) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding-top: 75px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: clamp(28px, 10vw, 40px);
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(22px, 7vw, 28px);
    }

    .contact-item {
        padding: 18px 12px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .social-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Tablet adjustments */
@media (min-width: 481px) and (max-width: 768px) {
    .contact-content {
        gap: 45px;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-btn {
        flex: 0 1 calc(50% - 5px);
    }
}

/* Medium tablets and small desktops */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-content {
        gap: 50px;
    }

    .container {
        padding: 0 30px;
    }
}

