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

:root {
    /* Premium Color Palette */
    --primary-dark: #0a0b0d;
    --secondary-dark: #1a1d23;
    --accent-dark: #2a2f38;
    --tertiary-dark: #1c2026;
    --gold-primary: #d4af37;
    --gold-secondary: #f4e4a6;
    --gold-dark: #b8941f;
    --gold-accent: #ffd700;
    --white-pure: #ffffff;
    --white-soft: #f8f9fa;
    --white-muted: #e9ecef;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-strong: rgba(255, 255, 255, 0.12);
    --shadow-soft: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.25);
    --shadow-hard: rgba(0, 0, 0, 0.4);
    --shadow-gold: rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Breakpoints */
    --mobile: 768px;
    --tablet: 1024px;
    --desktop: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--tertiary-dark) 100%);
    color: var(--white-soft);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow-medium);
    transition: all var(--transition-medium);
}

.glassmorphism:hover {
    background: var(--glass-strong);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 40px var(--shadow-hard);
    transform: translateY(-2px);
}

.gold {
    color: var(--gold-primary);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent), var(--gold-secondary));
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px var(--shadow-gold);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

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

.section-tag:hover::before {
    left: 100%;
}

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

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 11, 13, 0.95), rgba(26, 29, 35, 0.95), rgba(28, 32, 38, 0.98));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-medium);
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    pointer-events: none;
}

.navbar.scrolled {
    padding: 12px 0;
    background: linear-gradient(135deg, rgba(10, 11, 13, 0.98), rgba(26, 29, 35, 0.98));
    border-bottom: 3px solid var(--gold-primary);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white-pure);
    transition: var(--transition-fast);
    cursor: pointer;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-logo:hover {
    transform: translateY(-1px);
    color: var(--gold-secondary);
}

.nav-logo i {
    color: var(--gold-primary);
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: crownPulse 3s ease-in-out infinite;
}

@keyframes crownPulse {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.3);
        transform: scale(1.05);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-left: auto;
}

.nav-link {
    color: var(--white-soft);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.4s ease;
}

.nav-link:hover {
    color: var(--gold-primary);
    background: var(--glass-strong);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-icon {
    font-size: 0.75rem;
    color: rgba(212, 175, 55, 0.7);
    transition: var(--transition-fast);
}

.nav-link:hover .nav-icon {
    color: var(--gold-accent);
    transform: scale(1.2) rotate(10deg);
}

.nav-link.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.nav-link.active .nav-icon {
    color: var(--gold-primary);
}

.nav-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-fast);
    margin-left: auto;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-1px);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--white-pure), var(--gold-primary));
    margin: 2px 0;
    transition: var(--transition-fast);
    border-radius: 1px;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('football-bg.jpg') center center/cover no-repeat,
                linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-dark) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 11, 13, 0.7) 0%, rgba(26, 29, 35, 0.8) 50%, rgba(42, 47, 56, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--gold-primary) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--gold-secondary) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, var(--gold-accent) 1px, transparent 1px);
    background-size: 60px 60px, 100px 100px, 80px 80px;
    animation: particleFloat 25s linear infinite;
    opacity: 0.4;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 40%, rgba(212, 175, 55, 0.1) 40px, transparent 40px),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 30px, transparent 30px);
    background-size: 200px 200px, 150px 150px;
    animation: particleFloat 30s linear infinite reverse;
}

@keyframes particleFloat {
    0% { 
        transform: translateY(0) rotate(0deg) scale(1);
        filter: blur(0px);
    }
    50% { 
        transform: translateY(-15px) rotate(180deg) scale(1.1);
        filter: blur(1px);
    }
    100% { 
        transform: translateY(-20px) rotate(360deg) scale(1);
        filter: blur(0px);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-crown {
    margin-bottom: 30px;
}

.hero-crown i {
    font-size: 3rem;
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
    0% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.2); }
    100% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 80px rgba(212, 175, 55, 0.4); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    animation: titleReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--white-muted);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleFade 0.8s ease-out 0.8s forwards;
    opacity: 0;
    line-height: 1.6;
}

@keyframes subtitleFade {
    to { opacity: 1; }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: ctaSlide 0.8s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes ctaSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-primary, .cta-secondary {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-primary {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(45deg, var(--gold-accent), var(--gold-primary));
}

.cta-secondary {
    background: var(--glass-bg);
    color: var(--white-pure);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: var(--glass-strong);
    border-color: var(--gold-primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px var(--shadow-medium), 0 0 30px rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: statsReveal 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

@keyframes statsReveal {
    to { opacity: 1; }
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white-muted);
    margin-top: 5px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    background: transparent;
}

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

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.about-card {
    padding: 40px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-slow);
}

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

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px var(--shadow-hard), 0 0 50px var(--shadow-gold);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent), var(--gold-secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 2.2rem;
    color: var(--primary-dark);
    box-shadow: 0 8px 25px var(--shadow-gold);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.card-icon::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.6s ease;
}

.about-card:hover .card-icon::before {
    left: 100%;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white-pure);
}

.about-card p {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.7;
}

/* ===== PROGRAMS SECTION ===== */
.programs {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
}

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

.program-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-medium);
    border-radius: 20px;
}

.program-card.featured {
    transform: scale(1.05);
    border: 1px solid var(--glass-border);
    position: relative;
}

.program-card.featured::after {
    display: none; /* Sarı arka plan efekti kaldırıldı */
}

@keyframes featuredGlow {
    0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 80px rgba(212, 175, 55, 0.3); }
}

.program-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px var(--shadow-hard), 0 0 50px var(--shadow-medium);
    border-color: var(--glass-border);
}

.program-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 80px var(--shadow-hard), 0 0 50px var(--shadow-medium);
}

.program-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.program-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.program-age {
    background: var(--glass-bg);
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    color: var(--gold-primary);
}

.program-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white-pure);
}

.program-card > p {
    color: var(--white-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.program-features {
    margin-bottom: 30px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--white-soft);
}

.feature i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.program-price {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.period {
    color: var(--white-muted);
    font-size: 1rem;
}

/* ===== SCOUTS SECTION ===== */
.scouts {
    padding: 120px 0;
}

.scouts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.scouts-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.scouts-info > p {
    font-size: 1.1rem;
    color: var(--white-muted);
    margin-bottom: 50px;
    line-height: 1.7;
}

.scouts-features {
    margin-bottom: 50px;
}

.scout-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--white-muted);
    line-height: 1.5;
}

.success-stats {
    display: flex;
    gap: 40px;
}

.success-stat {
    text-align: center;
}

.success-stat .stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
}

.success-stat .stat-label {
    font-size: 0.9rem;
    color: var(--white-muted);
    margin-top: 5px;
}

.scouts-visual {
    position: relative;
}

.scout-card {
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.scout-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.scout-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 5px;
}

.scout-info p {
    color: var(--white-muted);
    margin-bottom: 10px;
}

.scout-rating {
    display: flex;
    gap: 5px;
}

.scout-rating i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.scout-timeline {
    padding: 30px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

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

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 30px;
    width: 2px;
    height: 25px;
    background: var(--glass-border);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border: 3px solid var(--glass-border);
    border-radius: 50%;
    background: var(--secondary-dark);
    flex-shrink: 0;
}

.timeline-dot.active {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--white-muted);
    font-size: 0.9rem;
}

/* ===== REGISTRATION SECTION ===== */
.register {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
}

.registration-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.registration-form {
    padding: 50px;
    border-radius: 25px;
}

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

.form-section h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--gold-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--white-soft);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    color: var(--white-pure);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
}

.program-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.program-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.program-option:hover {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
}

.program-option input[type="radio"] {
    accent-color: var(--gold-primary);
    margin: 0;
}

.program-option label {
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent), var(--gold-secondary));
    color: var(--primary-dark);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    box-shadow: 0 8px 25px var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.submit-btn::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.6s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 30px 25px;
    border-radius: 24px;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold-primary), transparent, var(--gold-secondary));
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: 24px;
    z-index: -1;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-hard), 0 0 40px var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.4);
}

.info-card:hover::before {
    opacity: 0.1;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--white-muted);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--white-muted);
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--white-muted);
    line-height: 1.6;
}

.social-media h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-dark);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.contact-map {
    display: flex;
    align-items: stretch;
}

.map-container {
    flex: 1;
    padding: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 10px;
}

.map-placeholder p {
    color: var(--white-muted);
    margin-bottom: 30px;
}

.map-btn {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-dark);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    padding: 20px;
    z-index: 9999;
    display: none;
    border: 1px solid var(--gold-primary);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-soft);
}

.cookie-btn.accept {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-dark);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--gold-primary);
    font-size: 1.7rem;
}

.footer-brand p {
    color: var(--white-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-dark);
    border-color: var(--gold-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--white-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-copyright p {
    color: var(--white-muted);
}

.footer-legal {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--white-muted);
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--white-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ssl-secure {
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}



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

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

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

/* AOS Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 7px 14px;
    }
    
    .nav-icon {
        font-size: 0.8rem;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 5px 10px;
        gap: 5px;
    }
    
    .nav-icon {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .scouts-content,
    .contact-content,
    .registration-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .footer-column ul li {
        margin-bottom: 12px;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-crown i {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .about-card, .program-card {
        padding: 20px 15px;
    }
    
    .about-card h3, .program-card h3 {
        font-size: 1.2rem;
    }
    
    .about-card p, .program-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .program-age {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .program-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
    
    .program-features .feature {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .program-price .price {
        font-size: 1.8rem;
    }
    
    .program-price .period {
        font-size: 0.8rem;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .registration-form {
        padding: 20px 15px;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .success-stats {
        flex-direction: row;
        gap: 15px;
    }
    
    .contact-info h2,
    .scouts-info h2 {
        font-size: 1.4rem;
    }
    
    .contact-item h4 {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
    }
    
    .scout-feature h4 {
        font-size: 1rem;
    }
    
    .scout-feature p {
        font-size: 0.8rem;
    }
    
    .success-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .success-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .info-card h4 {
        font-size: 1rem;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        margin-bottom: 12px;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-logo i {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .hero-crown i {
        font-size: 1.8rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 10px 18px;
        font-size: 0.8rem;
        max-width: 220px;
    }
    
    .hero-stats {
        gap: 12px;
        margin-top: 20px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .about-card,
    .info-card {
        padding: 18px 12px;
    }
    
    .program-card {
        padding: 15px 10px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .about-card h3, .program-card h3 {
        font-size: 1.1rem;
    }
    
    .about-card p, .program-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .program-age {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .program-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
    }
    
    .program-badge i {
        font-size: 0.6rem;
    }
    
    .program-features .feature {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .program-features .feature i {
        font-size: 0.7rem;
    }
    
    .program-price .price {
        font-size: 1.6rem;
    }
    
    .program-price .period {
        font-size: 0.75rem;
    }
    
    .registration-form {
        padding: 15px 10px;
    }
    
    .form-section {
        margin-bottom: 25px;
    }
    
    .form-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    
    .contact-info h2,
    .scouts-info h2 {
        font-size: 1.3rem;
    }
    
    .contact-item h4 {
        font-size: 0.85rem;
    }
    
    .contact-item p {
        font-size: 0.75rem;
    }
    
    .scout-feature h4 {
        font-size: 0.9rem;
    }
    
    .scout-feature p {
        font-size: 0.75rem;
    }
    
    .success-stat .stat-number {
        font-size: 1.3rem;
    }
    
    .success-stat .stat-label {
        font-size: 0.7rem;
    }
    
    .info-card h4 {
        font-size: 0.9rem;
    }
    
    .info-card p {
        font-size: 0.75rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-crown i,
    .card-icon,
    .program-icon {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-crown i {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }
    
    .cta-primary, .cta-secondary {
        padding: 8px 15px;
        font-size: 0.75rem;
        max-width: 200px;
    }
    
    .hero-stats {
        gap: 10px;
        margin-top: 18px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    .section-header p {
        font-size: 0.8rem;
    }
    
    .about-card,
    .info-card {
        padding: 15px 10px;
    }
    
    .program-card {
        padding: 12px 8px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .about-card h3, .program-card h3 {
        font-size: 0.95rem;
    }
    
    .about-card p, .program-card p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .program-age {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .program-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    .program-badge i {
        font-size: 0.55rem;
    }
    
    .program-features .feature {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    
    .program-features .feature i {
        font-size: 0.65rem;
    }
    
    .program-price .price {
        font-size: 1.4rem;
    }
    
    .program-price .period {
        font-size: 0.7rem;
    }
    
    .registration-form {
        padding: 12px 8px;
    }
    
    .form-section {
        margin-bottom: 20px;
    }
    
    .form-section h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.75rem;
        padding: 6px 8px;
    }
    
    .contact-info h2,
    .scouts-info h2 {
        font-size: 1.1rem;
    }
    
    .contact-item h4 {
        font-size: 0.8rem;
    }
    
    .contact-item p {
        font-size: 0.7rem;
    }
    
    .scout-feature h4 {
        font-size: 0.85rem;
    }
    
    .scout-feature p {
        font-size: 0.7rem;
    }
    
    .success-stat .stat-number {
        font-size: 1.1rem;
    }
    
    .success-stat .stat-label {
        font-size: 0.65rem;
    }
    
    .info-card h4 {
        font-size: 0.8rem;
    }
    
    .info-card p {
        font-size: 0.7rem;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
    }
    
    .footer-column ul li a {
        font-size: 0.75rem;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
    

    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-logo i {
        font-size: 1.5rem;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 25px;
    }
    
    .cta-primary, .cta-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .about-card,
    .program-card,
    .registration-form,
    .info-card {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-info h2,
    .scouts-info h2 {
        font-size: 1.8rem;
    }
}

/* Landscape Phone Styles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 30px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .about-card:hover,
    .program-card:hover,
    .scout-feature:hover,
    .info-card:hover,
    .contact-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .nav-link:hover,
    .social-link:hover,
    .footer-social a:hover {
        transform: none;
    }
    
    .cta-primary:hover,
    .cta-secondary:hover,
    .submit-btn:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .nav-link,
    .social-link,
    .cta-primary,
    .cta-secondary,
    .hamburger,
    button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
}

/* High DPI and Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-crown i,
    .card-icon,
    .program-icon,
    .feature-icon,
    .contact-icon,
    .info-icon {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .glassmorphism {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-particles,
    .particle {
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .glassmorphism {
        background: white;
        border: 1px solid #ccc;
    }
    
    .hero {
        height: auto;
        padding: 50px 0;
    }
    
    .section-header h2,
    .hero-title {
        color: black;
    }
    
    .gold {
        color: #333;
    }
}
