/* CSS Custom Properties */
:root {
    --bordo-900: #5c0b16;
    --bordo-800: #6a0f1e;
    --bordo-700: #7e1224;
    --bordo-600: #8a1538;   /* ana bordo */
    --bordo-500: #9a1a42;
    --bordo-300: #c64a59;
    --bordo-200: #d4a5ae;
    --lacivert-900: #0e1420;
    --lacivert-800: #16213a;
    --white: #fff;
    --ink: #111827;
    --cta-w: 150px;         /* eş genişlik */
    --cta-h: 35px;          /* eş yükseklik */
    --gap-cta: 6px;
    
    /* Spacing Scale */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-section: 80px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Colors */
    --bg-light: #f8fafc;
    --border-light: #e2e8f0;
    --text-secondary: #64748b;
    --success: #10b981;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    color: var(--white);
    background-color: var(--ink);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography Scale */
h1 {
    font-size: clamp(28px, 4.5vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    scroll-margin-top: 80px;
}

h2 {
    font-size: clamp(24px, 3.5vw, 42px);
    line-height: 1.1;
    font-weight: 600;
    scroll-margin-top: 80px;
}

h3 {
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.2;
    font-weight: 600;
}

h4 {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    font-weight: 600;
}

h5 {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.2;
    font-weight: 500;
}

h6 {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.2;
    font-weight: 500;
}

p {
    line-height: 1.6;
    font-size: clamp(14px, 1.2vw, 16px);
}

/* CTA Component */
.cta {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 var(--space-md);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    gap: var(--space-xs);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.cta:focus-visible {
    outline: 2px solid var(--clr-gold);
    outline-offset: 2px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background: var(--bordo-900);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}



.navbar {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--clr-text);
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.logo-container {
    position: relative;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(139, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-container:hover .logo-img {
    transform: rotate(5deg) scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(139, 0, 0, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-sm);
    align-items: center;
    flex: 1;
    justify-content: center;
}

.cta-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--gap-cta);
    min-width: calc(var(--cta-w) + 4px);
    flex-shrink: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-xs) var(--space-xs);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--bordo-300);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:focus-visible {
    outline: 2px solid var(--bordo-300);
    outline-offset: 2px;
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--bordo-300);
    border-radius: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 5px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bordo-900);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bordo-300);
    padding-left: 2rem;
}

.dropdown-link:focus-visible {
    outline: 2px solid var(--bordo-300);
    outline-offset: -2px;
}



/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--cta-w);
    height: var(--cta-h);
    border-radius: 9999px;
    padding: 0 12px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-bordo-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--bordo-700), var(--bordo-500));
}

.btn-bordo-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 21, 56, 0.3);
}

.btn-bordo-primary:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--bordo-500);
}

.btn-bordo-outline {
    color: var(--white);
    background: transparent;
    border: 2px solid var(--bordo-300);
}

.btn-bordo-outline:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(198, 74, 89, 0.2);
}

.btn-bordo-outline:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--bordo-300);
}







.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: var(--space-xs);
    gap: 4px;
}

.hamburger:focus-visible {
    outline: 2px solid var(--bordo-300);
    outline-offset: 2px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
    background: linear-gradient(90deg, var(--bordo-900) 0%, var(--bordo-700) 25%, var(--bordo-500) 45%, #e2a8b5 65%, #f3e6ea 80%, #ffffff 100%);
    color: var(--white);
    padding: calc(80px + var(--space-lg)) 0 var(--space-section);
    position: relative;
    scroll-margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="18" cy="18" r="0.3" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="15" r="0.2" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
    animation: float 25s ease-in-out infinite;
    opacity: 0.6;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: 70vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.hero-badge i {
    color: #ffd700;
    animation: pulse 2s ease-in-out infinite;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    animation: slideInFromLeft 1s ease-out 0.6s both;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-align: center;
}

.hero-stats .stat-item:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.8);
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 4px;
    color: white;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: slideInFromLeft 1s ease-out 1.2s both;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.95;
}

.hero-features .feature i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-image-container {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    outline: 2px solid rgba(255, 255, 255, 0.08);
    outline-offset: -2px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

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

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-stats .stat-item {
        width: 100px;
        height: 100px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInFromLeft {
    0% { 
        transform: translateX(-100px);
        opacity: 0;
    }
    100% { 
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% { 
        transform: translateX(100px);
        opacity: 0;
    }
    100% { 
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInFromLeft 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideInFromLeft 1s ease-out 0.2s both;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: slideInFromLeft 1s ease-out 0.4s both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: slideInFromLeft 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    animation: slideInFromLeft 1s ease-out 0.8s both;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #8b0000;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    color: #8b0000;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: slideInFromRight 1s ease-out 0.3s both;
    padding-bottom: 6cm;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(139, 0, 0, 0.3));
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(0,0,0,0.5);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #ffffff;
    color: #8b0000;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8b0000;
}

.btn-outline {
    background: transparent;
    color: #8b0000;
    border: 2px solid #8b0000;
}

.btn-outline:hover {
    background: #8b0000;
    color: white;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #f8fafc;
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #dc143c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.15);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item i {
    font-size: 3.5rem;
    color: #8b0000;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #dc143c;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Home slider */
.home-slider { position: relative; overflow: hidden; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.home-slider .slide { display: none; position: relative; }
.home-slider .slide img { width: 100%; height: 380px; object-fit: cover; display: block; }
.home-slider .slide-fallback { display:block; width:100%; height:380px; background:linear-gradient(135deg,#111827,#1f2937); }
.home-slider .slide-caption { position: absolute; left: 20px; bottom: 20px; background: rgba(0,0,0,0.6); color: #fff; padding: 12px 16px; border-radius: 8px; max-width: 80%; }
.home-slider .slide-caption h3 { margin: 0; font-size: 20px; }
.home-slider .slide-caption a { color: #fff; text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.7); }
.home-slider .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(0,0,0,0.45); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease, transform .1s ease; z-index: 2; }
.home-slider .nav-btn:hover { background: rgba(0,0,0,0.65); }
.home-slider .nav-btn:active { transform: translateY(-50%) scale(0.96); }
.home-slider .nav-btn.prev { left: 12px; }
.home-slider .nav-btn.next { right: 12px; }

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #8b0000;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #475569;
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #475569;
}

.about-text li i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Programs Section */
.programs {
    padding: var(--space-xl) 0;
    background: var(--bg-light);
}

.programs .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

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

.program-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.program-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.group-label {
    font-size: 0.8rem;
    color: var(--bordo-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-icon {
    width: 50px;
    height: 50px;
    background: var(--bordo-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon i {
    font-size: 1.25rem;
    color: white;
}

.program-card h3 {
    color: var(--bordo-800);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.program-content {
    flex: 1;
}

.program-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    font-size: 0.95rem;
}

.program-features {
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

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

.feature-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.program-details {
    background: var(--bg-light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
    font-size: 0.85rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--bordo-700);
    font-weight: 600;
}

.program-detail-btn {
    width: 100%;
    margin-top: auto;
}

/* Program Modal */
.program-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    margin: 3% auto;
    padding: 0;
    border-radius: 24px;
    width: 95%;
    max-width: 900px;
    max-height: 94vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { 
        transform: translateY(30px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #64748b;
    float: right;
    font-size: 2.5rem;
    font-weight: 300;
    position: absolute;
    right: 24px;
    top: 20px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.close-modal:hover {
    color: var(--bordo-600);
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--bordo-600) 0%, var(--bordo-700) 100%);
    color: white;
    padding: 40px 32px 32px;
    border-radius: 24px 24px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.modal-header h2 {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.modal-body {
    padding: 40px;
}

.modal-section {
    margin-bottom: 40px;
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    color: var(--bordo-700);
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 3px solid var(--bordo-200);
    padding-bottom: 16px;
    position: relative;
}

.modal-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--bordo-600);
    border-radius: 2px;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.modal-feature {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 24px;
    border-radius: 16px;
    border-left: 5px solid var(--bordo-500);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(154, 26, 66, 0.05) 0%, rgba(154, 26, 66, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(154, 26, 66, 0.15);
    border-left-color: var(--bordo-600);
}

.modal-feature:hover::before {
    opacity: 1;
}

.modal-feature h4 {
    color: var(--bordo-700);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.modal-feature p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.modal-pricing {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(239, 68, 68, 0.2);
    position: relative;
    overflow: hidden;
}

.modal-pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.modal-pricing h3 {
    color: var(--bordo-700);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.price-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.price-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bordo-600), var(--bordo-500));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
    border-color: var(--bordo-500);
}

.price-item:hover::before {
    transform: scaleX(1);
}

.price-item h4 {
    color: var(--bordo-700);
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-item .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bordo-600);
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.modal-cta {
    text-align: center;
    margin-top: 40px;
}

.modal-cta .btn {
    width: 100%;
    max-width: 400px;
    padding: 20px 32px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.modal-cta .btn:hover::before {
    left: 100%;
}

.modal-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(154, 26, 66, 0.3);
}

.modal-special-offers {
    margin-top: 24px;
}

.special-offer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    border-left: 5px solid var(--success);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.special-offer:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.special-offer:hover::before {
    opacity: 1;
}

.special-offer i {
    color: var(--success);
    font-size: 1.3rem;
    margin-top: 4px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.special-offer p {
    margin: 0;
    color: #065f46;
    font-weight: 600;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.sibling-discount {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0 24px;
    padding: 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    border: 2px solid #f59e0b;
    position: relative;
    overflow: hidden;
}

.sibling-discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f59e0b" opacity="0.3"/><circle cx="10" cy="10" r="0.5" fill="%23f59e0b" opacity="0.2"/><circle cx="40" cy="40" r="0.8" fill="%23f59e0b" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.5;
}

.sibling-discount i {
    font-size: 1.4rem;
    flex-shrink: 0;
    color: #dc2626;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

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

.sibling-discount p {
    margin: 0;
    color: #92400e;
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.discount-note {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    color: #991b1b;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 96vh;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-section {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .modal-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-header h2 {
        font-size: 1.75rem;
    }
    
    .price-table {
        grid-template-columns: 1fr;
    }
}

/* Coaches Section */
.coaches {
    padding: 100px 0;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 100%;
    overflow: hidden;
}

/* Kaydırma sistemi için container */
.coaches-container {
    position: relative;
    overflow: hidden;
}

.coaches-scroll {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    padding: 0 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.coaches-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.coaches-scroll .coach-card {
    flex: 0 0 280px;
    max-width: 280px;
}

/* Kaydırma butonları */
.coaches-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.coaches-nav-btn {
    background: linear-gradient(135deg, #8b0000, #dc143c);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.coaches-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

.coaches-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive tasarım */
@media (max-width: 1200px) {
    .coaches-scroll .coach-card {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .coaches-scroll .coach-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
    
    .coaches-nav {
        flex-direction: column;
        align-items: center;
    }
}

/* Tournaments Section - KALDIRILDI */

/* Tournament styles - KALDIRILDI */

/* Registration Section */
.registration {
    padding: 100px 0;
    background: #f8fafc;
}

.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.registration-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b0000, #dc143c, #ff1744);
    animation: gradientShift 3s ease infinite;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8b0000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b0000;
}

.registration-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.registration-info h3 {
    color: #8b0000;
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #8b0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #8b0000;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #8b0000;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #8b0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item div h4 {
    color: #8b0000;
    margin-bottom: 0.3rem;
}

.contact-item div p {
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #8b0000;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-left: 1rem;
        min-width: auto;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
    
    .dropdown-link {
        padding: 0.5rem 1rem;
        border-bottom: none;
        font-size: 0.85rem;
    }
    
    .dropdown-link:hover {
        padding-left: 1rem;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bordo-900);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow-soft);
        padding: var(--space-lg) 0 120px 0;
        z-index: 999;
        gap: var(--space-md);
        justify-content: flex-start;
        height: 100vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .cta-stack {
        position: fixed;
        bottom: var(--space-lg);
        left: var(--space-lg);
        right: var(--space-lg);
        align-items: stretch;
        min-width: auto;
        z-index: 1000;
    }
    
    .cta-stack .btn {
        width: 100%;
        justify-content: center;
    }
    
    .logo-container {
        width: 48px;
        height: 48px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
}



@media (max-width: 480px) {
    .hero {
        padding: calc(80px + var(--space-md)) 0 var(--space-2xl);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .tournaments-content,
    .registration-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .teams-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid,
    .coaches-grid,
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .match-teams {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .registration-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(20px, 3vw, 32px);
    }
    
    .logo-container {
        width: 40px;
        height: 40px;
    }
    
    .nav-logo {
        font-size: clamp(12px, 2vw, 16px);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Pricing Table */
.registration-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.registration-pricing h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.special-offers-info {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.special-offers-info h4 {
    color: var(--bordo-800);
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    text-align: center;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    padding: var(--space-sm);
    background: white;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--success);
}

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

.offer-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.sibling-offer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: var(--radius-md);
    border: 1px solid #fecaca;
}

.sibling-offer i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sibling-offer span {
    color: var(--bordo-800);
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: #1e3a8a;
    transform: translateY(-2px);
}

.pricing-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.pricing-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.pricing-item ul {
    list-style: none;
    text-align: left;
}

.pricing-item li {
    padding: 0.3rem 0;
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.pricing-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Contact Section Additional Styles */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e0e7ff;
    transform: translateX(5px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-item div h4 {
    color: #1e3a8a;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item div p {
    color: #64748b;
    margin: 0;
}

/* Footer Additional Styles */
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-section a i {
    font-size: 1.1rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Additional Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.slide-in-left {
    animation: slideInFromLeft 0.6s ease;
}

.slide-in-right {
    animation: slideInFromRight 0.6s ease;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

/* Enhanced Form Styles */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Enhanced Card Hover Effects */
.program-card:hover,
.coach-card:hover,
.team-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-btn,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 18pt;
    }
} 

/* Additional Modal Enhancements */
.modal-section h3 i {
    transition: transform 0.3s ease;
}

.modal-section:hover h3 i {
    transform: scale(1.1);
}

.modal-feature p i {
    transition: all 0.3s ease;
}

.modal-feature:hover p i {
    transform: scale(1.2);
    color: var(--success);
}

.modal-feature h4 i {
    transition: all 0.3s ease;
}

.modal-feature:hover h4 i {
    transform: rotate(15deg);
    color: var(--bordo-700);
}

.price-item h4 i {
    transition: all 0.3s ease;
}

.price-item:hover h4 i {
    transform: scale(1.2) rotate(5deg);
    color: var(--bordo-700);
}

/* Enhanced Modal Animations */
.modal-section {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.modal-section:nth-child(1) { animation-delay: 0.1s; }
.modal-section:nth-child(2) { animation-delay: 0.2s; }
.modal-section:nth-child(3) { animation-delay: 0.3s; }
.modal-section:nth-child(4) { animation-delay: 0.4s; }
.modal-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Feature Cards */
.modal-feature {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.modal-feature::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent var(--bordo-200) transparent transparent;
    transition: all 0.3s ease;
}

.modal-feature:hover::after {
    border-color: transparent var(--bordo-500) transparent transparent;
}

/* Enhanced Pricing Section */
.modal-pricing {
    position: relative;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.modal-pricing::after {
    content: '💎';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Enhanced CTA Button */
.modal-cta .btn {
    background: linear-gradient(135deg, var(--bordo-600) 0%, var(--bordo-700) 100%);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modal-cta .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bordo-700) 0%, var(--bordo-800) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modal-cta .btn:hover::after {
    opacity: 1;
}

/* Enhanced Special Offers */
.special-offer {
    position: relative;
    overflow: hidden;
}

.special-offer::after {
    content: '🎁';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0.2;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.special-offer:hover::after {
    opacity: 0.6;
    transform: rotate(0deg) scale(1.2);
}

/* Enhanced Sibling Discount */
.sibling-discount {
    position: relative;
    overflow: hidden;
}

.sibling-discount::after {
    content: '⭐';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Enhanced Discount Note */
.discount-note {
    position: relative;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    color: #991b1b;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    transition: all 0.3s ease;
}

.discount-note:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

.discount-note i {
    color: #dc2626;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

/* Enhanced Modal Header */
.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

/* Enhanced Close Button */
.close-modal {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.close-modal:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(90deg) scale(1.1);
}

/* Enhanced Modal Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--bordo-500), var(--bordo-600));
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--bordo-600), var(--bordo-700));
} 

.coaches-scroll .coach-card {
    flex: 0 0 280px;
    max-width: 280px;
}

.coach-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.coach-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(220, 20, 60, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 0, 0, 0.15);
}

.coach-card:hover::after {
    opacity: 1;
}

.coach-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 4px solid #8b0000;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.coach-card:hover .coach-image {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.4);
    border-color: #dc143c;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-card h3 {
    font-size: 1.3rem;
    color: #8b0000;
    margin-bottom: 0.5rem;
}

.coach-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b0000, #dc143c);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.coach-card:hover .coach-title {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

.coach-bio {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coach-specialties {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coach-specialties span {
    background: #ffe6e6;
    color: #8b0000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}