/* ==========================================
   ALEM INNOVATION - Vibrant Creative Design
   ========================================== */

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

:root {
    /* Primary Colors - Vibrant Palette */
    --coral: #FF6B6B;
    --coral-light: #FF8E8E;
    --sunshine: #FFE66D;
    --sunshine-light: #FFF3A3;
    --mint: #4ECDC4;
    --mint-light: #7EDDD6;
    --sky: #45B7D1;
    --sky-light: #7BCFE0;
    --lavender: #A66DE9;
    --lavender-light: #C49EF5;
    --rose: #FF69B4;
    --rose-light: #FF9AD0;
    --lime: #95E66A;
    --lime-light: #B5EF9A;
    --peach: #FFAB76;
    --peach-light: #FFC8A0;
    
    /* Neutral Colors */
    --dark: #2D3436;
    --dark-soft: #636E72;
    --gray: #B2BEC3;
    --light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-sky: linear-gradient(135deg, #45B7D1 0%, #96E6A1 100%);
    --gradient-lavender: linear-gradient(135deg, #A66DE9 0%, #FF69B4 100%);
    --gradient-mint: linear-gradient(135deg, #4ECDC4 0%, #44CF6C 100%);
    --gradient-sunshine: linear-gradient(135deg, #FFE66D 0%, #FF8E53 100%);
    --gradient-rose: linear-gradient(135deg, #FF69B4 0%, #FF6B6B 100%);
    --gradient-rainbow: linear-gradient(90deg, #FF6B6B, #FFE66D, #4ECDC4, #45B7D1, #A66DE9, #FF69B4);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
    --shadow-color: 0 8px 30px rgba(69, 183, 209, 0.3);
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    line-height: 1.3;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

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

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

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

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

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

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

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ==========================================
   HEADER
   ========================================== */

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(-3deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 8s ease infinite;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--dark-soft);
    line-height: 1.3;
    max-width: 200px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-link:hover {
    background: var(--light);
    color: var(--sky);
}

.nav-link.active {
    background: var(--gradient-sky);
    color: white;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.75rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all var(--transition);
    margin-top: 0.5rem;
    overflow: hidden;
}

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

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--light);
    padding-left: 2rem;
}

.dropdown-menu li a .menu-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.dropdown-arrow {
    transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
    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.3), transparent);
    transition: left 0.5s;
}

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

.btn-primary {
    background: var(--gradient-coral);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--sky);
    border: 2px solid var(--sky);
}

.btn-secondary:hover {
    background: var(--sky);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    transition: all var(--transition);
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
    background: linear-gradient(180deg, #E8F4F8 0%, #FFF5F5 50%, #F5F0FF 100%);
}

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--coral-light);
    top: -200px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--mint-light);
    bottom: -150px;
    left: -100px;
    animation: floatReverse 18s ease-in-out infinite;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--lavender-light);
    top: 40%;
    left: 50%;
    animation: float 20s ease-in-out infinite;
    animation-delay: -5s;
}

.hero-shape-4 {
    width: 200px;
    height: 200px;
    background: var(--sunshine-light);
    bottom: 20%;
    right: 10%;
    animation: floatReverse 12s ease-in-out infinite;
}

/* Decorative floating elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 25%; right: 15%; animation-delay: -1s; }
.floating-element:nth-child(3) { top: 60%; left: 5%; animation-delay: -2s; }
.floating-element:nth-child(4) { bottom: 20%; right: 10%; animation-delay: -3s; }
.floating-element:nth-child(5) { top: 10%; left: 40%; animation-delay: -4s; }
.floating-element:nth-child(6) { bottom: 30%; left: 15%; animation-delay: -5s; }

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slideRight 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    font-size: 0.95rem;
}

.hero-badge-icon {
    animation: wave 1s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-title-highlight {
    display: block;
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 5s ease infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark-soft);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-sky);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--dark-soft);
    font-weight: 600;
}

.hero-image {
    position: relative;
    animation: slideLeft 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-image.loaded {
    opacity: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    z-index: -1;
}

.hero-image-decoration-1 {
    background: var(--coral-light);
    top: -20px;
    left: -20px;
    animation: float 4s ease-in-out infinite;
}

.hero-image-decoration-2 {
    background: var(--mint-light);
    bottom: -20px;
    right: -20px;
    animation: floatReverse 5s ease-in-out infinite;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-soft);
    font-size: 0.85rem;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
    animation: bounce 2s ease-in-out infinite;
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sky);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-title-gradient {
    background: var(--gradient-sky);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--dark-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT / WELCOME SECTION
   ========================================== */

.about-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    animation: rainbow 5s ease infinite;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-soft);
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.about-feature:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature-icon.coral { background: var(--coral-light); }
.about-feature-icon.mint { background: var(--mint-light); }
.about-feature-icon.lavender { background: var(--lavender-light); }
.about-feature-icon.sky { background: var(--sky-light); }

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--dark-soft);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-stats-floating {
    position: absolute;
    bottom: -30px;
    left: -30px;
    right: 40px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

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

.about-stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--dark-soft);
    font-weight: 600;
}

/* ==========================================
   DIRECTIONS SECTION
   ========================================== */

.directions-section {
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

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

.direction-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}

.direction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.direction-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.direction-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.direction-card:hover .direction-card-image img {
    transform: scale(1.1);
}

.direction-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.direction-card-badge.scientific { background: var(--gradient-sky); }
.direction-card-badge.artistic { background: var(--gradient-rose); }
.direction-card-badge.music { background: var(--gradient-sunshine); }
.direction-card-badge.ecology { background: var(--gradient-mint); }
.direction-card-badge.sports { background: var(--gradient-coral); }

.direction-card-content {
    padding: 2rem;
}

.direction-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    margin-top: -45px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.direction-card-icon.scientific { background: var(--sky-light); }
.direction-card-icon.artistic { background: var(--rose-light); }
.direction-card-icon.music { background: var(--sunshine-light); }
.direction-card-icon.ecology { background: var(--lime-light); }
.direction-card-icon.sports { background: var(--coral-light); }

.direction-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.direction-card p {
    color: var(--dark-soft);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.direction-card-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light);
}

.direction-card-stat {
    text-align: center;
}

.direction-card-stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.direction-card-stat-label {
    font-size: 0.75rem;
    color: var(--dark-soft);
}

.direction-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sky);
    font-weight: 700;
    text-decoration: none;
    transition: gap var(--transition);
}

.direction-card-link:hover {
    gap: 0.75rem;
}

/* ==========================================
   ACHIEVEMENTS SECTION
   ========================================== */

.achievements-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.achievements-section .section-title,
.achievements-section .section-subtitle {
    color: white;
}

.achievements-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.achievements-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.achievement-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.achievement-date {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 600;
}

/* ==========================================
   SUMMER CASES SECTION
   ========================================== */

.cases-section {
    background: white;
}

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

.case-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.case-card:nth-child(1)::before { background: var(--gradient-coral); }
.case-card:nth-child(2)::before { background: var(--gradient-lavender); }
.case-card:nth-child(3)::before { background: var(--gradient-mint); }
.case-card:nth-child(4)::before { background: var(--gradient-sky); }
.case-card:nth-child(5)::before { background: var(--gradient-sunshine); }
.case-card:nth-child(6)::before { background: var(--gradient-rose); }
.case-card:nth-child(7)::before { background: var(--gradient-coral); }
.case-card:nth-child(8)::before { background: var(--gradient-mint); }

.case-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.case-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
}

.case-card:nth-child(1) .case-icon { background: var(--coral-light); }
.case-card:nth-child(2) .case-icon { background: var(--lavender-light); }
.case-card:nth-child(3) .case-icon { background: var(--mint-light); }
.case-card:nth-child(4) .case-icon { background: var(--sky-light); }
.case-card:nth-child(5) .case-icon { background: var(--sunshine-light); }
.case-card:nth-child(6) .case-icon { background: var(--rose-light); }
.case-card:nth-child(7) .case-icon { background: var(--peach-light); }
.case-card:nth-child(8) .case-icon { background: var(--lime-light); }

.case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.case-card p {
    font-size: 0.9rem;
    color: var(--dark-soft);
    margin-bottom: 1rem;
}

.case-coverage {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.case-coverage-number {
    color: var(--coral);
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-section {
    background: var(--light);
    padding: 4rem 0;
}

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

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.stat-card:nth-child(1)::before { background: var(--gradient-coral); }
.stat-card:nth-child(2)::before { background: var(--gradient-sky); }
.stat-card:nth-child(3)::before { background: var(--gradient-mint); }
.stat-card:nth-child(4)::before { background: var(--gradient-lavender); }
.stat-card:nth-child(5)::before { background: var(--gradient-sunshine); }
.stat-card:nth-child(6)::before { background: var(--gradient-rose); }

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.stat-card:nth-child(1) .stat-icon { background: var(--coral-light); }
.stat-card:nth-child(2) .stat-icon { background: var(--sky-light); }
.stat-card:nth-child(3) .stat-icon { background: var(--mint-light); }
.stat-card:nth-child(4) .stat-icon { background: var(--lavender-light); }
.stat-card:nth-child(5) .stat-icon { background: var(--sunshine-light); }
.stat-card:nth-child(6) .stat-icon { background: var(--rose-light); }

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--dark-soft);
    font-weight: 600;
}

/* ==========================================
   INFRASTRUCTURE SECTION
   ========================================== */

.infrastructure-section {
    background: white;
}

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

.infra-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.infra-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.infra-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.infra-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFE66D 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--coral);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-white:hover {
    background: white;
    color: var(--coral);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    animation: rainbow 5s ease infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-name {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 8s ease infinite;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition);
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================================
   PAGE HERO
   ========================================== */

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    position: relative;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-page-content {
    padding: 4rem 0;
}

.about-page-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-page-section.reverse {
    direction: rtl;
}

.about-page-section.reverse > * {
    direction: ltr;
}

.about-page-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--dark-soft);
    font-size: 1.1rem;
}

.about-page-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    background: var(--light);
    padding: 4rem 0;
    margin: 4rem 0;
}

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

.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.value-card:nth-child(1) .value-icon { background: var(--coral-light); }
.value-card:nth-child(2) .value-icon { background: var(--sky-light); }
.value-card:nth-child(3) .value-icon { background: var(--mint-light); }
.value-card:nth-child(4) .value-icon { background: var(--lavender-light); }

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--dark-soft);
    line-height: 1.7;
}

/* ==========================================
   DIRECTIONS PAGE
   ========================================== */

.directions-full {
    padding: 4rem 0;
}

.direction-section-full {
    margin-bottom: 5rem;
    scroll-margin-top: 100px;
}

.direction-section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--light);
}

.direction-section-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.direction-section-icon.scientific { background: var(--sky-light); }
.direction-section-icon.artistic { background: var(--rose-light); }
.direction-section-icon.music { background: var(--sunshine-light); }
.direction-section-icon.ecology { background: var(--lime-light); }
.direction-section-icon.sports { background: var(--coral-light); }

.direction-section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.direction-section-header p {
    color: var(--dark-soft);
}

.direction-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.course-item {
    background: white;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: all var(--transition);
}

.course-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.course-item.scientific { border-left-color: var(--sky); }
.course-item.artistic { border-left-color: var(--rose); }
.course-item.music { border-left-color: var(--sunshine); }
.course-item.ecology { border-left-color: var(--lime); }
.course-item.sports { border-left-color: var(--coral); }

.course-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-item p {
    color: var(--dark-soft);
    font-size: 0.95rem;
}

/* ==========================================
   CONTACTS PAGE
   ========================================== */

.contacts-section {
    padding: 4rem 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item:nth-child(2) .contact-icon { background: var(--coral-light); }
.contact-item:nth-child(3) .contact-icon { background: var(--sky-light); }
.contact-item:nth-child(4) .contact-icon { background: var(--mint-light); }
.contact-item:nth-child(5) .contact-icon { background: var(--lavender-light); }

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--dark-soft);
    margin: 0;
}

.contact-details a {
    color: var(--sky);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-details a:hover {
    color: var(--coral);
}

.registration-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.registration-form h2 {
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--dark-soft);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky);
    background: white;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--coral);
}

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

.form-success {
    background: var(--mint);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* ==========================================
   DIRECTOR PAGE
   ========================================== */

.director-section {
    padding: 4rem 0;
}

.director-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.director-image-wrapper {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.director-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.director-info {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.director-name {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-sky);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.director-position {
    font-size: 1.25rem;
    color: var(--dark-soft);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.bio-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.bio-item {
    margin-bottom: 2rem;
}

.bio-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.bio-item p {
    color: var(--dark-soft);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.bio-item ul {
    list-style: none;
    padding-left: 0;
}

.bio-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-soft);
}

.bio-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sky);
    font-weight: bold;
}

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

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        border-top: 1px solid var(--light);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light);
        margin-top: 0.5rem;
        margin-left: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats-floating {
        position: static;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .about-page-section {
        grid-template-columns: 1fr;
    }
    
    .about-page-section.reverse {
        direction: ltr;
    }
    
    .director-content {
        grid-template-columns: 1fr;
    }
    
    .director-image-wrapper {
        position: static;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .direction-section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
