/* ============================================
   MINIMALISTIC MODERN DESIGN - LMMS Scholarship
   Clean, Professional, Elegant
   ============================================ */

/* @font-face {
    font-family: 'BBH Sans Bartle';
    src: url('BBH_Bartle/BBHBartle-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

:root {
    /* Modern Blue Color Palette */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --secondary-light: #34d399;
    
    /* Enhanced Neutrals */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --bg-gradient-2: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Text */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    
    /* Borders */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Modern Typography System */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Navigation - Clean & Minimal
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 20px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-bottom: none;
    box-shadow: none;
    margin-top: 0;
    border-radius: 16px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: none;
    box-shadow: none;
    border-radius: 16px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .navbar {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 0.25rem 0;
        margin-top: 0;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 12px;
    }
    
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        width: auto;
        left: 10px;
        right: 10px;
        margin-top: 20px;
        border-radius: 12px;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        font-size: 1rem;
        margin: 0;
        flex: 1;
        text-align: center;
    }
    
    .hamburger {
        margin: 0;
        position: relative;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(224, 242, 254, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: top 0.3s ease;
        padding: 0;
        margin: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        top: 0;
    }
    
    .nav-menu a {
        color: var(--text-primary);
        font-size: 1.1rem;
        padding: 1rem 2rem;
        text-align: center;
    }
    
    .nav-cta {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
        color: white !important;
        padding: 1rem 2rem !important;
        border-radius: 12px !important;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .hamburger span {
        background: var(--text-primary);
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar.scrolled .nav-logo {
    color: var(--text-primary);
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
    height: 60px;
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.25rem;
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .navbar.scrolled .nav-logo-img {
        height: 60px;
    }
}

.nav-logo {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-primary);
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

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

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
    color: white !important;
    border: none !important;
    padding: 0.625rem 1.5rem !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
}

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

.nav-cta:hover::before {
    left: 100% !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   Hero Section - Clean & Elegant
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #e0f2fe 100%);
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.hero-text-section {
  text-align: left;
  min-width: 0;
  max-width: 60%;
  flex: 1;
  z-index: 4;
  position: relative;
}

.hero-badge {
    font-family: var(--font-primary);
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow: hidden;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
}

.hero-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.hero-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-primary);
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-bounce);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary:hover {
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

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

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    font-family: var(--font-primary);
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.lead {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.01em;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ============================================
   Story Section
   ============================================ */

.story {
    background: var(--bg-secondary);
}

.story-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
}

.story-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 400px;
}

.story-image-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image {
    width: 100%;
    height: auto;
    max-width: 220px;
    border-radius: 50%;
    object-fit: contain;
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-lg);
}

.story-image:hover {
    transform: scale(1.02);
}

.story-image-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    z-index: -1;
}

.story-image-quote {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-left: 4px solid var(--primary);
}

.story-image-quote p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.story-image-quote cite {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 700;
    font-style: normal;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: var(--spacing-md);
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-lg);
}

.timeline-marker {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-color: var(--primary);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Details Section
   ============================================ */

.details {
    background: var(--bg-primary);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.detail-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.detail-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.detail-card:hover .card-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.detail-card .card-icon i {
    font-size: inherit;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* ============================================
   Unified Card System
   ============================================ */

.card-base {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.card-base:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Icon Container - Unified */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.card-base:hover .icon-container {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.icon-container i {
    font-size: inherit;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Card Typography - Unified */
.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    font-family: var(--font-primary);
    flex-grow: 1;
}

/* ============================================
   Icon Styling - Legacy (for reference)
   ============================================ */

.check-icon {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon i {
    color: inherit;
    font-size: inherit;
}

.detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.check-icon {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.details-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.summary-card {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.summary-number {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.summary-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.summary-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   Eligibility Section
   ============================================ */

.eligibility {
    background: var(--bg-secondary);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.eligibility-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.eligibility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.eligibility-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0.5rem;
    opacity: 0.2;
    letter-spacing: 0.05em;
}

.eligibility-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.eligibility-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.eligibility-note {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-top: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.eligibility-note p {
    color: var(--text-secondary);
    margin: 0;
}

.eligibility-note strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   Selection Section
   ============================================ */

.selection {
    background: var(--bg-primary);
}

.selection-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    align-items: stretch;
    margin-bottom: var(--spacing-md);
}

.step-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-number {
    font-family: var(--font-display);
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
    font-family: var(--font-primary);
}

.step-arrow {
    display: none; /* Hidden in grid layout */
}

.selection-note {
    text-align: center;
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: 12px;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

/* ============================================
   Coordinator Section
   ============================================ */

.coordinator {
    background: var(--bg-secondary);
}

.coordinator-card {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.coordinator-card:hover {
    box-shadow: var(--shadow-lg);
}

.coordinator-content {
    padding: var(--spacing-md);
}

.coordinator-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin: var(--spacing-md) 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.coordinator-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.coordinator-note {
    color: var(--text-primary);
    font-weight: 500;
    font-style: italic;
}

.coordinator-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coordinator-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coordinator-image {
    width: 100%;
    height: auto;
    max-width: 220px;
    border-radius: 50%;
    object-fit: contain;
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-lg);
}

.coordinator-image:hover {
    transform: scale(1.02);
}

.coordinator-image-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    z-index: -1;
}

/* ============================================
   Enhanced Testimonials Section
   ============================================ */

.testimonials {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.testimonial-content {
    padding: var(--spacing-lg);
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    font-family: var(--font-display);
    line-height: 1;
    opacity: 0.1;
    margin-bottom: var(--spacing-md);
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-card blockquote {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    font-weight: 500;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.author-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   Scholarship Application Form
   ============================================ */

.application-form {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.form-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.scholarship-form {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-md);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-light);
}

.form-section {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.form-section-title i {
    color: var(--primary);
    font-size: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-group input:invalid:not(:focus),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus) {
    border-color: var(--accent);
}

.form-group small {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    min-width: 200px;
    justify-content: center;
}

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

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    min-width: 150px;
    justify-content: center;
}

.btn-secondary:hover {
    background: var(--bg-primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Form validation styles */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: var(--secondary);
}

.form-group input:required:invalid:not(:placeholder-shown),
.form-group select:required:invalid:not(:placeholder-shown),
.form-group textarea:required:invalid:not(:placeholder-shown) {
    border-color: var(--accent);
}

/* Loading and success states */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form success and error states */
.form-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border: 2px solid var(--secondary);
    padding: var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    margin: 0;
    min-height: auto;
    animation: fadeIn 0.5s ease-in;
}

.form-success h3 {
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.form-success p {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.form-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 2px solid var(--accent);
    padding: var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    margin: 0;
    min-height: auto;
    animation: fadeIn 0.5s ease-in;
}

.form-error h3 {
    color: var(--accent);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-display);
    font-size: 1.5rem;
}

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

/* ============================================
   Leadership Team Section
   ============================================ */

.leadership-team {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.leadership-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

.team-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.intro-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.intro-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

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

.legacy-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    min-height: 150px;
    min-width: 300px;
}

.legacy-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('fam.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
}

.legacy-badge i,
.legacy-badge span {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.legacy-badge i {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.legacy-badge span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .legacy-badge {
        min-height: 250px;
        min-width: 320px;
        padding: var(--spacing-lg) var(--spacing-xl);
        flex-direction: column;
        text-align: center;
    }
    
    .legacy-badge i {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .legacy-badge span {
        font-size: 1.1rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .legacy-badge {
        min-height: 200px;
        min-width: 280px;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .legacy-badge i {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .legacy-badge span {
        font-size: 1rem;
        line-height: 1.2;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.team-member {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    position: relative;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.member-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.member-image-wrapper.hero {
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 153, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(19, 136, 8, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.scholarship-objects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.rocket {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 153, 0, 0.3);
  animation: rocketFly 15s linear infinite;
}

.rocket1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.rocket2 {
  top: 60%;
  right: 20%;
  animation-delay: 5s;
}

.rocket3 {
  bottom: 30%;
  left: 25%;
  animation-delay: 10s;
}

.book {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(19, 136, 8, 0.2);
  animation: bookFloat 12s ease-in-out infinite;
}

.book1 {
  top: 15%;
  right: 15%;
  animation-delay: 2s;
}

.book2 {
  top: 70%;
  left: 20%;
  animation-delay: 7s;
}


.hero-portrait {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-portrait-image {
  width: 280px;
  height: 350px;
  object-fit: cover;
  filter: none;
  transition: all 0.5s ease;
  border-radius: 10px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: auto;
}

.hero-portrait:hover .hero-portrait-image {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

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

@keyframes rocketFly {
  0% {
    transform: translateX(-100px) translateY(0px) rotate(-45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100vw) translateY(-50px) rotate(-45deg);
    opacity: 0;
  }
}

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

@keyframes diplomaSpin {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  25% {
    transform: rotate(90deg) translateY(-10px);
  }
  50% {
    transform: rotate(180deg) translateY(0px);
  }
  75% {
    transform: rotate(270deg) translateY(-10px);
  }
  100% {
    transform: rotate(360deg) translateY(0px);
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.member-image:hover {
    transform: scale(1.05);
}

.member-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.member-image-placeholder:hover {
    transform: scale(1.05);
}

.member-role-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.475rem;
    box-shadow: var(--shadow-md);
}

.member-content {
    padding: var(--spacing-md);
}

.member-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.member-title {
    color: var(--primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.member-responsibilities h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.member-responsibilities ul {
    list-style: none;
    padding: 0;
}

.member-responsibilities li {
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: var(--spacing-md);
    font-size: 0.875rem;
}

.member-responsibilities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.team-values {
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-values h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.value-item {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-content h3 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .member-content h3 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .member-content h3 {
        font-size: 1.25rem;
    }
    
    .member-title {
        font-size: 1rem;
    }
    
    .member-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .legacy-badge {
        padding: var(--spacing-md);
    }
    
    .legacy-badge i {
        font-size: 2rem;
    }
    
    .legacy-badge span {
        font-size: 1rem;
    }
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding: var(--spacing-lg);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

.contact-text a:hover {
    color: var(--primary-dark);
}

.contact-form {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.apply {
    background: var(--primary);
    color: white;
    text-align: center;
}

.apply .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.apply .section-title {
    color: white;
}

.apply-content {
    max-width: 700px;
    margin: 0 auto;
}

.apply-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.apply-note {
    margin-top: var(--spacing-md);
    font-size: 1rem;
    opacity: 0.9;
}

.apply-note a {
    color: white;
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: var(--text-light);
    line-height: 1.6;
    max-width: 400px;
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 90px;
    }
    
    .footer-logo h3 {
        font-size: 1.25rem;
    }
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: white;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
}

.footer-quote {
    font-style: italic;
    line-height: 1.8;
    opacity: 0.8;
    color: var(--gray-400);
}

.contact-info p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.contact-info a {
    color: var(--gray-300);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-info a:hover {
    color: white;
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */

@media (max-width: 768px) {
  .hero-layout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .hero-portrait {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem auto;
  }
  
  .hero-portrait-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
  }
  
  .hero-text-section {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    z-index: 2;
    position: relative;
    text-align: center;
  }
  
  .hero-content {
    z-index: 3;
    position: relative;
    width: 100%;
  }
  
  .hero-background-overlay {
    position: relative;
  }
  
  .hero-text {
    display: none;
  }
  
  .form-group {
    margin-bottom: 0.5rem;
  }
  
  .form-group label {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
  
  .form-grid {
    gap: 0.5rem;
  }
  
  .form-section {
    padding: 1rem 0.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-portrait {
    width: 120px;
    height: 120px;
  }
  
  .hero-portrait-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
  }
}

@media (max-width: 360px) {
  .hero-portrait {
    width: 100px;
    height: 100px;
  }
  
  .hero-portrait-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .form-group {
    margin-bottom: 0.25rem;
  }
  
  .form-group label {
    margin-bottom: 0.125rem;
    font-size: 0.8rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.375rem;
    font-size: 0.8rem;
  }
  
  .form-grid {
    gap: 0.25rem;
  }
  
  .form-section {
    padding: 0.75rem 0.25rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .container {
    padding: 0 0.5rem;
  }
  
  .hero-layout {
    padding: 0 0.5rem;
  }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding: 6rem 1rem 2rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .hero-text {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-label {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
    
    /* Story Section */
    .story-timeline {
        text-align: center;
    }
    
    .timeline-item {
        text-align: center;
    }
    
    /* Details Section */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .detail-card {
        text-align: center;
    }
    
    .benefits-list {
        text-align: left;
    }
    
    /* Values Section */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }
    
    .value-card {
        text-align: center;
    }
    
    /* Selection Process */
    .selection-steps {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
    
    /* Leadership Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .team-member {
        text-align: center;
    }
    
    .member-content {
        text-align: center;
    }
    
    /* Application Form */
    .form-description {
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .form-group {
        text-align: left;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .submit-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
        width: 100%;
        min-width: 0;
    }
    
    .hero-text-section {
        text-align: center;
        max-width: 100%;
        padding: 0 var(--spacing-sm);
        box-sizing: border-box;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .coordinator-card {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -110%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-light);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: var(--spacing-sm) 0;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: var(--spacing-sm);
        text-align: center;
        font-size: 1.125rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5.5vw, 2.5rem);
        line-height: 1.3;
        letter-spacing: 0.08em;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.375rem);
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .hero-image {
        max-width: 240px;
    }
    
    .hero-image-frame {
        width: 270px;
        height: 270px;
    }
    
    .selection-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .step-card {
        min-height: 220px;
        padding: var(--spacing-md);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-card h3 {
        font-size: 1.125rem;
    }
    
    .step-card p {
        font-size: 0.875rem;
    }
    
    .details-grid,
    .eligibility-grid,
    .values-grid,
    .impact-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive card sizing for tablets */
    .card-base,
    .detail-card,
    .eligibility-card,
    .value-card,
    .achievement-card,
    .testimonial-card {
        min-height: 240px;
        padding: var(--spacing-md);
    }
    
    .icon-container,
    .detail-card .card-icon,
    .value-icon,
    .achievement-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .card-title,
    .detail-card h3,
    .value-card h3,
    .achievement-card h3 {
        font-size: 1.25rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .contact-item {
        padding: var(--spacing-sm);
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .achievement-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-content {
        padding: var(--spacing-md);
    }
    
    .achievement-icon {
        font-size: 2.5rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 6vw, 2rem);
        line-height: 1.3;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.25rem);
    }
    
    .hero-text {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        line-height: 1.3;
    }
    
    .section-label {
        font-size: 0.625rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-image-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .hero-image {
        max-width: 200px;
    }
    
    .hero-image-frame {
        width: 210px;
        height: 210px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    p, li, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Mobile card responsiveness */
    .card-base,
    .detail-card,
    .eligibility-card,
    .value-card,
    .achievement-card,
    .testimonial-card {
        min-height: 220px;
        padding: var(--spacing-sm);
    }
    
    .icon-container,
    .detail-card .card-icon,
    .value-icon,
    .achievement-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    /* Mobile selection process responsiveness */
    .step-card {
        min-height: 200px;
        padding: var(--spacing-sm);
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .step-card h3 {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .step-card p {
        font-size: 0.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .achievement-icon {
        font-size: 2rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-card h3 {
        font-size: 1.25rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1.125rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Form Section Styling
   ============================================ */

.form-section {
    background: var(--bg-primary);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-bounce);
    margin-bottom: var(--spacing-md);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.achievement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.05);
    color: var(--primary-dark);
}

.achievement-icon i {
    font-size: inherit;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.achievement-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.achievement-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.achievement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.values {
    background: var(--bg-primary);
}

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

.value-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.value-card:hover .value-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.value-icon i {
    font-size: inherit;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

/* ============================================
   Impact Section
   ============================================ */

.impact {
    background: var(--bg-secondary);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.impact-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.impact-number {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.impact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.impact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
    background: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.faq-question {
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-base);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 300;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Utility Animations
   ============================================ */

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

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

html {
    scroll-padding-top: 100px;
}

::selection {
    background: rgba(37, 99, 235, 0.2);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(37, 99, 235, 0.2);
    color: var(--text-primary);
}
