/* ===== CSS Variables ===== */
:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #3b82f6;
    --secondary-blue: #dbeafe;
    --accent-blue: #eff6ff;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== Custom Font Classes (from font.txt) ===== */
.header-1 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 30px;
    text-transform: none;
}

.header-2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 24px;
    text-transform: none;
}

.header-3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 90px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 85px;
    text-transform: none;
    color: #19171C;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gray-900);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    color: var(--gray-600);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-header p:not(.animated-subtitle) {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* Animated Subtitle Styles */
.animated-subtitle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.subtitle-text {
    font-size: 1.125rem;
    font-weight: 500;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        #a855f7,
        #ec4899,
        #f97316,
        var(--primary-blue)
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.subtitle-line {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        #a855f7,
        #ec4899
    );
    background-size: 200% 100%;
    border-radius: 3px;
    animation: lineExpand 2s ease-out forwards, gradientShift 3s ease infinite;
}

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

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--gray-700);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--accent-blue) 100%);
    overflow: hidden;
    position: relative;
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-decoration-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, transparent 70%);
    opacity: 0.6;
}

.hero-decoration-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, transparent 70%);
    opacity: 0.5;
}

/* Floating Service Logos */
.floating-logos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.floating-logo {
    position: absolute;
    opacity: 0.12;
    filter: grayscale(30%);
    animation: float 6s ease-in-out infinite;
}

.floating-logo.logo-1 {
    width: 100px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-logo.logo-2 {
    width: 80px;
    top: 60%;
    left: 5%;
    animation-delay: 1.5s;
}

.floating-logo.logo-3 {
    width: 90px;
    top: 25%;
    right: 8%;
    animation-delay: 3s;
}

.floating-logo.logo-4 {
    width: 85px;
    bottom: 20%;
    right: 12%;
    animation-delay: 4.5s;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 580px;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background-color: var(--accent-blue);
    border: 1px solid var(--secondary-blue);
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
}

.hero-content h1 {
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.75rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--gray-900);
}

.hero-content .highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 36px;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

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

.btn-outline:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--gray-200);
}

/* Hero visual area */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 680px;
}

.main-card {
    width: 100%;
    max-width: 620px;
    height: 680px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: floatHero 4s ease-in-out infinite;
}

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

.hero-student-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

/* Accent cards */
.accent-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background-color: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    animation: floatSubtle 6s ease-in-out infinite;
}

.accent-card-1 {
    top: 5%;
    left: -10%;
    animation-delay: 0s;
}

.accent-card-2 {
    bottom: 25%;
    left: -15%;
    animation-delay: -2s;
}

.accent-card-3 {
    top: 15%;
    right: -5%;
    animation-delay: -4s;
}

.accent-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-blue);
    border-radius: 12px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.accent-icon svg {
    width: 22px;
    height: 22px;
}

.accent-icon.gold {
    background-color: #fef3c7;
    color: #f59e0b;
}

.accent-icon.green {
    background-color: #d1fae5;
    color: #10b981;
}

.accent-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accent-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

.accent-subtitle {
    font-size: 0.8rem;
    color: var(--gray-500);
}

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

/* ===== About Section ===== */
.about {
    padding: 60px 0;
    background-color: var(--white);
}

/* About Header */
.about-header {
    margin-bottom: 48px;
    text-align: center;
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--gray-900);
    margin: 0 0 8px 0;
}

.about-header .animated-subtitle {
    justify-content: center;
}

/* About Main Layout */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--gray-900);
    font-weight: 800;
    letter-spacing: -1.5px;
}

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

.about-lead {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition);
}

.about-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.about-link:hover {
    color: var(--primary-blue-dark);
}

.about-link:hover svg {
    transform: translateX(6px);
}

/* About Stats - Floating Buttons */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-stat.floating-btn {
    padding: 28px 24px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    animation: floatStats 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

/* Glossy shine overlay */
.about-stat.floating-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.7s ease;
    pointer-events: none;
}

.about-stat.floating-btn:hover::before {
    left: 100%;
}

/* Background glow effect */
.about-stat.floating-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-stat.floating-btn:hover {
    transform: translateY(-12px) scale(1.03);
}

/* Stat icon wrapper */
.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.about-stat.floating-btn:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Decorative circle */
.stat-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Blue variant */
.floating-btn-blue {
    background: linear-gradient(135deg, #4f8fff 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: 
        0 10px 40px -10px rgba(37, 99, 235, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation-delay: 0s;
}

.floating-btn-blue:hover {
    box-shadow: 
        0 20px 50px -10px rgba(37, 99, 235, 0.6),
        0 0 60px -10px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.floating-btn-blue .about-stat-number,
.floating-btn-blue .about-stat-label {
    color: var(--white);
}

/* Purple variant */
.floating-btn-purple {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #7c3aed 100%);
    box-shadow: 
        0 10px 40px -10px rgba(168, 85, 247, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation-delay: -1.5s;
}

.floating-btn-purple:hover {
    box-shadow: 
        0 20px 50px -10px rgba(168, 85, 247, 0.6),
        0 0 60px -10px rgba(168, 85, 247, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.floating-btn-purple .about-stat-number,
.floating-btn-purple .about-stat-label {
    color: var(--white);
}

/* Green variant */
.floating-btn-green {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    box-shadow: 
        0 10px 40px -10px rgba(34, 197, 94, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation-delay: -3s;
}

.floating-btn-green:hover {
    box-shadow: 
        0 20px 50px -10px rgba(34, 197, 94, 0.6),
        0 0 60px -10px rgba(34, 197, 94, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.floating-btn-green .about-stat-number,
.floating-btn-green .about-stat-label {
    color: var(--white);
}

/* Orange variant */
.floating-btn-orange {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    box-shadow: 
        0 10px 40px -10px rgba(249, 115, 22, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation-delay: -4.5s;
}

.floating-btn-orange:hover {
    box-shadow: 
        0 20px 50px -10px rgba(249, 115, 22, 0.6),
        0 0 60px -10px rgba(249, 115, 22, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.floating-btn-orange .about-stat-number,
.floating-btn-orange .about-stat-label {
    color: var(--white);
}

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

.about-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* About Features - Clean Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-100);
}

.about-feature {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.about-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--gray-900);
    font-weight: 600;
}

.about-feature p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ===== Services Section ===== */
.services {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--gray-50) 50%, var(--gray-100) 100%);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.services-grid .service-card {
    flex: 0 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
}

.service-card {
    position: relative;
    padding: 40px 28px;
    background-color: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 16px;
    background-color: #fbbf24;
    color: var(--gray-900);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    padding: 14px;
    background-color: var(--accent-blue);
    border-radius: 12px;
    color: var(--primary-blue);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.service-features li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 700;
}

.service-card.featured .service-features li::before {
    color: var(--white);
}

/* Class Formats */
.class-formats {
    text-align: center;
}

.class-formats h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    font-size: 1.75rem;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.format-item {
    padding: 32px 24px;
    background-color: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.format-item:hover {
    box-shadow: var(--shadow-lg);
}

.format-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--primary-blue);
}

.format-icon svg {
    width: 100%;
    height: 100%;
}

.format-item h4 {
    margin-bottom: 8px;
    color: var(--gray-800);
}

.format-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-blue) 50%, var(--white) 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 48px;
    background-color: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.testimonial-rating {
    margin-bottom: 24px;
}

.testimonial-rating span {
    font-size: 1.5rem;
    color: #fbbf24;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: var(--gray-800);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    background-color: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.nav-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dots .dot.active {
    background-color: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-blue) 50%, var(--white) 100%);
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact-card p a {
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card p a:hover {
    color: var(--primary-blue);
}

.contact-card-detail {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 8px;
}

/* Contact Bottom - Social Section */
.contact-bottom {
    max-width: 700px;
    margin: 0 auto;
}

.contact-social-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-social-box h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.contact-social-box > p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.social-links-horizontal {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gray-100);
    border-radius: 12px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-link-btn.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-link-btn.instagram:hover {
    background: #E4405F;
    color: var(--white);
}

.social-link-btn.tiktok:hover {
    background: #000000;
    color: var(--white);
}

/* Legacy social links (kept for footer) */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--gray-600);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand .logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-column a {
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column li {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #10b981;
}

.modal-icon svg {
    width: 100%;
    height: 100%;
}

.modal-content h3 {
    margin-bottom: 16px;
}

.modal-content p {
    margin-bottom: 32px;
    color: var(--gray-600);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid .service-card {
        flex: 0 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    
    .hero-container {
        gap: 50px;
    }
    
    .main-card {
        max-width: 450px;
        height: 520px;
    }
    
    .accent-card-1 {
        left: -5%;
    }
    
    .accent-card-2 {
        left: -8%;
    }
    
    .accent-card-3 {
        right: 0;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .about {
        padding: 80px 0;
    }
    
    .about-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        max-width: 100%;
        text-align: center;
    }
    
    .about-link {
        justify-content: center;
    }
    
    .about-stats {
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-stat {
        align-items: center;
    }
    
    .about-stat.floating-btn {
        padding: 24px 20px;
        text-align: center;
    }
    
    .about-stat.floating-btn:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .stat-icon-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-decoration {
        bottom: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 50px;
        text-align: center;
    }
    
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-social-box {
        padding: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-description {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 420px;
    }
    
    .main-card {
        max-width: 400px;
        height: 480px;
    }
    
    .accent-card {
        padding: 12px 16px;
    }
    
    .accent-card-1 {
        top: 0;
        left: 0;
    }
    
    .accent-card-2 {
        bottom: 20%;
        left: 0;
    }
    
    .accent-card-3 {
        top: 10%;
        right: 0;
    }
    
    .accent-icon {
        width: 38px;
        height: 38px;
    }
    
    .accent-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .accent-title {
        font-size: 0.85rem;
    }
    
    .accent-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-decoration-1 {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -150px;
    }
    
    .hero-decoration-2 {
        width: 300px;
        height: 300px;
        bottom: -100px;
        left: -100px;
    }
    
    .floating-logo {
        opacity: 0.08;
    }
    
    .floating-logo.logo-1 {
        width: 70px;
    }
    
    .floating-logo.logo-2 {
        width: 60px;
    }
    
    .floating-logo.logo-3 {
        width: 65px;
    }
    
    .floating-logo.logo-4 {
        width: 60px;
    }
    
    .services-grid .service-card {
        flex: 0 1 100%;
        max-width: 500px;
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .about-stat-number {
        font-size: 2.25rem;
    }
    
    .about-stat.floating-btn {
        padding: 22px 18px;
        border-radius: 20px;
    }
    
    .stat-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .stat-icon-wrapper svg {
        width: 22px;
        height: 22px;
    }
    
    .about-features {
        gap: 40px;
        padding-top: 60px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 24px 20px;
    }
    
    .contact-social-box {
        padding: 28px 20px;
    }
    
    .social-links-horizontal {
        flex-direction: column;
    }
    
    .social-link-btn {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px 6px 8px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .hero-visual {
        min-height: 350px;
    }
    
    .main-card {
        max-width: 320px;
        height: 400px;
    }
    
    .accent-card {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .accent-card-2 {
        display: none;
    }
    
    .accent-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .accent-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .accent-title {
        font-size: 0.8rem;
    }
    
    .accent-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-decoration-1,
    .hero-decoration-2,
    .floating-logos {
        display: none;
    }
    
    .about,
    .services,
    .testimonials,
    .contact {
        padding: 50px 0;
    }
    
    .contact-social-box h3 {
        font-size: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .about {
        padding: 40px 0;
    }
    
    .about-header {
        margin-bottom: 32px;
    }
    
    .about-main {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-lead {
        font-size: 1rem;
    }
    
    .about-stats {
        gap: 32px 24px;
    }
    
    .about-stat-number {
        font-size: 1.75rem;
        letter-spacing: -1px;
    }
    
    .about-stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .about-stat.floating-btn {
        padding: 18px 14px;
        border-radius: 18px;
    }
    
    .about-stats {
        gap: 12px;
    }
    
    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        margin-bottom: 8px;
    }
    
    .stat-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-decoration {
        width: 80px;
        height: 80px;
        bottom: -25px;
        right: -25px;
    }
    
    .about-features {
        gap: 36px;
        padding-top: 50px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 18px;
    }
    
    .about-feature h3 {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .about-feature p {
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===== UK Placement CTA Section ===== */
.uk-placement-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.uk-placement-cta::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.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");
    opacity: 0.5;
}

.uk-placement-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.uk-cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.uk-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.uk-cta-badge svg {
    width: 16px;
    height: 16px;
}

.uk-cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.uk-cta-text h2 .highlight {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.uk-cta-text > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.uk-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.uk-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.uk-feature svg {
    width: 20px;
    height: 20px;
    color: #4ade80;
    flex-shrink: 0;
}

.uk-cta-text .btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.uk-cta-text .btn-lg:hover {
    transform: translateY(-3px);
    background: var(--accent-blue);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.uk-cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.uk-cta-image {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.uk-student-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: transparent;
}

/* UK Placement Card Special Styling */
.uk-placement-card {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%) !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
}

.uk-placement-card h3,
.uk-placement-card p,
.uk-placement-card li {
    color: white !important;
}

.uk-placement-card li::before {
    color: #4ade80 !important;
}

.uk-placement-card .service-icon {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
}

.uk-placement-card .featured-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

/* Responsive UK Placement */
@media (max-width: 1024px) {
    .uk-cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .uk-cta-text h2 {
        font-size: 2.2rem;
    }
    
    .uk-cta-image {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .uk-placement-cta {
        padding: 70px 0;
    }
    
    .uk-cta-text h2 {
        font-size: 1.8rem;
    }
    
    .uk-features {
        grid-template-columns: 1fr;
    }
    
    .uk-cta-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .uk-cta-text h2 {
        font-size: 1.5rem;
    }
    
    .uk-cta-image {
        max-width: 260px;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
