/* =========================================
   ADHYAYAN ACADEMY - PREMIUM LANDING PAGE CSS
   Version: 1.0.0
   Author: Adhyayan Academy Team
   ========================================= */

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Colors - Refined palette */
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --primary-gradient: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    
    /* Accent Colors - More sophisticated */
    --accent-orange: #F97316;
    --accent-yellow: #EAB308;
    --accent-green: #10B981;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-teal: #14B8A6;
    
    /* Neutral Colors - Better contrast */
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray-dark: #334155;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-muted: #CBD5E1;
    --light: #F8FAFC;
    --white: #FFFFFF;
    
    /* Gradients - More refined */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --gradient-orange: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #2563EB 100%);
    --gradient-light: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    --gradient-subtle: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    
    /* Shadows - More natural */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Typography - Better scale */
    --font-primary: 'Inter', 'Poppins', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Font sizes - Fluid typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 0.95rem);
    --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.8rem + 2vw, 3.5rem);
    --text-5xl: clamp(3rem, 2.2rem + 3vw, 4.5rem);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-section: clamp(4rem, 8vw, 8rem);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== CELEBRATION OVERLAY ========== */
.celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(45, 45, 68, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: overlayFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    padding: 20px;
}

.celebration-overlay.fade-out {
    animation: overlayFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes overlayFadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.95); visibility: hidden; }
}

/* Floating Particles */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear forwards;
}

.particle.sparkle {
    width: 6px;
    height: 6px;
    background: #FFD700;
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
}

.particle.circle {
    border: 2px solid;
    background: transparent;
}

.particle.dot {
    width: 4px;
    height: 4px;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(80vh) rotate(36deg) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(10vh) rotate(324deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(360deg) scale(0.5);
    }
}

/* Award Modal */
.award-modal {
    position: relative;
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    overflow: hidden;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.award-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #666;
}

.award-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.award-ribbon {
    background: linear-gradient(135deg, #4361EE 0%, #7209B7 100%);
    color: #fff;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.award-ribbon span {
    display: inline-block;
    animation: ribbonShine 3s ease-in-out infinite;
}

@keyframes ribbonShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.award-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 32px auto 24px;
}

.award-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(67, 97, 238, 0.2);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

.award-icon-ring-2 {
    width: 140%;
    height: 140%;
    border-color: rgba(114, 9, 183, 0.15);
    animation-delay: 0.5s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

.award-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #FFD700 0%, #F5A623 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.award-icon i {
    font-size: 36px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.award-body {
    padding: 0 32px 32px;
}

.award-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.award-school-name {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 16px;
    font-family: var(--font-display);
    line-height: 1.2;
}

.award-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.award-divider span {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.award-divider i {
    color: #FFD700;
    font-size: 12px;
}

.award-achievement {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.award-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: #f5f5f8;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.award-rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.award-rating i {
    font-size: 18px;
    color: #FFD700;
    animation: starAppear 0.3s ease-out forwards;
    opacity: 0;
    transform: scale(0);
}

.award-rating i:nth-child(1) { animation-delay: 0.8s; }
.award-rating i:nth-child(2) { animation-delay: 0.9s; }
.award-rating i:nth-child(3) { animation-delay: 1.0s; }
.award-rating i:nth-child(4) { animation-delay: 1.1s; }
.award-rating i:nth-child(5) { animation-delay: 1.2s; }

@keyframes starAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.award-tagline {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .award-modal {
        max-width: 340px;
        border-radius: 20px;
    }
    
    .award-ribbon {
        padding: 10px 20px;
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .award-icon-wrapper {
        width: 100px;
        height: 100px;
        margin: 24px auto 20px;
    }
    
    .award-icon {
        width: 65px;
        height: 65px;
    }
    
    .award-icon i {
        font-size: 28px;
    }
    
    .award-body {
        padding: 0 24px 28px;
    }
    
    .award-school-name {
        font-size: 22px;
    }
    
    .award-achievement {
        font-size: 16px;
    }
    
    .award-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== UTILITY CLASSES ========== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 16px 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .brand-text {
    color: var(--dark);
}

.brand-text .accent {
    color: var(--accent-orange);
}

.navbar-nav .nav-link {
    padding: 8px 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--gray-dark);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

.navbar-nav .nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.btn-login {
    background: var(--white);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .btn-login {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.navbar.scrolled .btn-login:hover {
    color: var(--white);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
}

.navbar.scrolled .navbar-toggler {
    background: var(--light);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(165deg, #0F172A 0%, #1E293B 35%, #1E3A5F 70%, #2563EB 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Hero Animated Shapes */
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--white);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-yellow);
    top: 50%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 20%;
    right: 40%;
    animation-delay: -15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--accent-pink);
    bottom: 20%;
    right: 20%;
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 50px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 0) rotate(270deg);
    }
}

/* Floating Icons */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 { top: 15%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 60%; left: 8%; animation-delay: -1s; }
.icon-3 { top: 80%; left: 25%; animation-delay: -2s; }
.icon-4 { top: 25%; right: 8%; animation-delay: -3s; }
.icon-5 { top: 70%; right: 5%; animation-delay: -4s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: var(--text-xs);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
}

.hero-badge i {
    color: var(--accent-yellow);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.btn-primary-custom {
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #EA580C;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.hero-image-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

.hero-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
}

.hero-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 5s ease-in-out infinite;
}

.hero-card i {
    font-size: 24px;
}

.hero-card span {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.card-1 { top: 10%; right: 10%; animation-delay: 0s; }
.card-2 { bottom: 25%; left: 0; animation-delay: -1.5s; }
.card-3 { bottom: 5%; right: 20%; animation-delay: -3s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-indicator a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ========== SECTION STYLES ========== */
.section-header {
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 0;
    font-weight: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    position: relative;
}

.section-badge::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin-right: 10px;
    vertical-align: middle;
}

.section-badge.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-badge.light::before {
    background: rgba(255, 255, 255, 0.5);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: var(--text-base);
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: var(--space-section) 0;
    background: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-muted), transparent);
}

.about-card {
    background: var(--white);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: none;
    border: 1px solid var(--gray-muted);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(37, 99, 235, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.about-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto var(--space-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover .about-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.about-icon.orange {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
}

.about-card:hover .about-icon.orange {
    background: var(--gradient-orange);
}

.about-icon.yellow {
    background: rgba(255, 184, 0, 0.1);
    color: var(--accent-yellow);
}

.about-card:hover .about-icon.yellow {
    background: linear-gradient(135deg, #FFB800, #FF9500);
}

.about-icon.green {
    background: rgba(0, 200, 150, 0.1);
    color: var(--accent-green);
}

.about-card:hover .about-icon.green {
    background: linear-gradient(135deg, #00C896, #00A67E);
}

.about-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.about-card p {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
}

/* About Image */
.about-image-wrapper {
    position: relative;
    padding: 30px 20px 20px;
}

.about-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

/* Director Image */
.director-image {
    width: 100%;
    height: 480px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf8 100%);
}

.about-image-wrapper:hover .director-image {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.about-image-main:hover {
    box-shadow: 0 25px 70px rgba(67, 97, 238, 0.3);
    transition: box-shadow 0.3s ease;
}

/* Years Badge - Top Right */
.about-image-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-orange);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.about-image-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.about-image-badge .text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Director Name Badge - Bottom */
.director-name-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.95), rgba(58, 12, 163, 0.95));
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.director-name-badge i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-orange);
}

.director-info {
    flex: 1;
}

.director-info span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.director-info small {
    font-size: 13px;
    opacity: 0.85;
    font-weight: 400;
}

/* About Content */
.about-content {
    padding-left: var(--space-2xl);
}

.about-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--dark);
    line-height: 1.2;
}

.about-content .lead {
    font-size: var(--text-base);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--gray);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) var(--space-lg);
}

.about-list li {
    padding: var(--space-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--gray-dark);
}

.about-list li i {
    color: var(--accent-green);
    font-size: 14px;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: var(--space-section) 0;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 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.03'%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");
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
    background: rgba(37, 99, 235, 0.3);
}

.feature-icon.orange { background: rgba(249, 115, 22, 0.2); }
.feature-icon.yellow { background: rgba(234, 179, 8, 0.2); }
.feature-icon.green { background: rgba(16, 185, 129, 0.2); }
.feature-icon.purple { background: rgba(139, 92, 246, 0.2); }
.feature-icon.pink { background: rgba(236, 72, 153, 0.2); }

.feature-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 500;
    font-size: 14px;
}

.feature-link i {
    transition: var(--transition);
}

.feature-card:hover .feature-link i {
    transform: translateX(5px);
}

/* ========== STATISTICS SECTION ========== */
.stats-section {
    padding: var(--space-3xl) 0 var(--space-section);
    background: var(--light);
}

.stats-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    box-shadow: var(--shadow-lg);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, var(--gray-muted), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto var(--space-md);
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: var(--accent-orange);
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--accent-green);
}

.stat-item:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.05) 100%);
    color: var(--accent-yellow);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray);
    font-weight: 500;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: var(--space-section) 0;
    background: var(--white);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--light);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 72px;
    font-family: Georgia, serif;
    color: var(--gray-muted);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    border: none;
}

.testimonial-card.featured::before {
    color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    margin-bottom: var(--space-md);
    display: flex;
    gap: 2px;
}

.testimonial-stars i {
    color: var(--accent-yellow);
    font-size: 14px;
}

.testimonial-card.featured .testimonial-stars i {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-card.featured .author-avatar {
    background: var(--white);
    color: var(--primary);
}

.author-avatar.orange { background: var(--gradient-orange); }
.author-avatar.green { background: linear-gradient(135deg, #00C896, #00A67E); }

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.testimonial-card.featured .author-info h5 {
    color: var(--white);
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-card.featured .author-info span {
    color: rgba(255, 255, 255, 0.7);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: var(--space-section) 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.gallery-item.large .gallery-placeholder {
    font-size: 100px;
}

.gallery-placeholder.orange { background: var(--gradient-orange); }
.gallery-placeholder.yellow { background: linear-gradient(135deg, #FFB800, #FF9500); }
.gallery-placeholder.green { background: linear-gradient(135deg, #00C896, #00A67E); }
.gallery-placeholder.purple { background: linear-gradient(135deg, #7209B7, #560BAD); }
.gallery-placeholder.pink { background: linear-gradient(135deg, #F72585, #B5179E); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: var(--space-section) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    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 viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.cta-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    font-size: var(--text-sm);
}

.btn-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: var(--text-sm);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: var(--space-section) 0;
    background: var(--white);
}

.contact-info {
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: var(--accent-orange);
}

.contact-icon.yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.05) 100%);
    color: var(--accent-yellow);
}

.contact-icon.green {
    background: rgba(0, 200, 150, 0.1);
    color: var(--accent-green);
}

.contact-details h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-details p {
    color: var(--gray);
    margin: 0;
    font-size: 15px;
}

.social-links {
    margin-top: 40px;
}

.social-links h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--gray-muted);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: var(--text-sm);
    transition: all 0.2s ease;
    background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.contact-form .form-floating > label {
    padding: 14px 16px;
    color: var(--gray);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--white);
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
    color: var(--white);
}

.footer .container {
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-brand .brand-logo {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: var(--space-md);
}

.footer-brand h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--gray-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h5,
.footer-contact h5 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-light);
    font-size: var(--text-sm);
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--gray-light);
    font-size: var(--text-sm);
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 3px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-lg) 0;
}

.footer-bottom p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--gray);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-5px);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-link {
        color: var(--dark);
        padding: 12px 16px;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--primary);
    }
    
    .btn-login {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-image-wrapper {
        padding: 20px 10px 10px;
        margin-bottom: 30px;
    }
    
    .about-image-badge {
        top: 0;
        right: 0;
        padding: 12px 16px;
    }
    
    .about-image-badge .years {
        font-size: 28px;
    }
    
    .about-image-badge .text {
        font-size: 10px;
    }
    
    .director-image {
        height: 320px;
    }
    
    .director-name-badge {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .director-name-badge i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .director-info span {
        font-size: 15px;
    }
    
    .director-info small {
        font-size: 11px;
    }
    
    .stats-wrapper {
        padding: 40px 20px;
        margin-top: -60px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .footer .container {
        padding: 40px 0 20px;
    }
}

@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-elements {
        display: none;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========== PREFERS REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
