:root {
    --primary-dark: #223579;
    --primary-blue: #0D6FA3;
    --primary-teal: #00B3B8;
    --teal-light: #38D6C4;
    --teal-lighter: #6EE7D2;
    --dark-navy: #0B3F91;
    --accent-orange: #FF5A1F;
    --light-bg: #F7FAFC;
    --light-gray: #f8f9fa;
    --border-gray: #e2e8f0;
    --text-dark: #072C5A;
    --text-gray: #4a5568;
    --text-light: #8b95a1;
    --shadow-sm: 0 2px 8px rgba(7, 44, 90, 0.08);
    --shadow-md: 0 4px 16px rgba(7, 44, 90, 0.12);
    --shadow-lg: 0 8px 24px rgba(7, 44, 90, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(13, 111, 163, 0.96);
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: rgba(13, 111, 163, 0.96);
    backdrop-filter: blur(0px);
    box-shadow: none;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Local video styles */
.video-section {
    padding: 60px 0;
    background: var(--light-bg);
}
.video-wrap {
    max-width: 960px;
    margin: 18px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.local-video {
    width: 100%;
    height: auto;
    display: block;
}
.video-caption {
    text-align: center;
    color: var(--text-gray);
    max-width: 960px;
    margin: 10px auto 0;
    font-size: 14px;
}


.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: var(--light-bg);
    transition: color 0.3s ease;
}

.brand-image {
    display: block;
    max-height: 38px;
    width: auto;
    object-fit: contain;
}

.brand-image-app {
    max-height: 44px;
}

.navbar.scrolled .navbar-brand {
    color: var(--light-bg);
}

.navbar.scrolled .nav-link {
    color: var(--light-bg);
}

.navbar.scrolled .hamburger span {
    background: var(--light-bg);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: inherit;
}

.brand-text {
    letter-spacing: 0.5px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar,
.navbar *,
.navbar-menu,
.navbar-menu *,
.navbar-menu a,
.navbar-menu span,
.navbar li,
.navbar-menu li {
    list-style: none !important;
}

.navbar::before,
.navbar::after,
.navbar-menu::before,
.navbar-menu::after,
.nav-link::before,
.nav-link::after,
.navbar li::marker,
.navbar-menu li::marker {
    content: none !important;
}

.nav-link {
    color: var(--light-bg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--light-bg);
}

.nav-link:hover {
    color: var(--teal-light);
    transform: translateY(-2px);
}

.nav-button {
    padding: 10px 24px;
    border-radius: 8px;
    background: var(--teal-light);
    color: var(--text-dark) !important;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(56, 214, 196, 0.3);
}

.nav-button:hover {
    background: var(--teal-lighter);
    box-shadow: 0 6px 16px rgba(56, 214, 196, 0.4);
    transform: translateY(-3px);
}

/* Language toggle */
.lang-toggle {
    background: transparent;
    color: var(--light-bg);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 12px;
}

/* Positions section */
.positions-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.positions-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero .hero-announcement,
.positions-section .hero-announcement {
    margin: 0 auto 24px;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    width: 100%;
    max-width: 720px;
}

.positions-section .section-title {
    margin-bottom: 12px;
}

.positions-section .positions-description {
    margin-bottom: 30px;
    max-width: 720px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.positions-section .positions {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.positions-section .positions li {
    background: white;
    padding: 28px 20px;
    border-radius: 16px;
    color: var(--text-dark);
    font-weight: 700;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.positions-section .positions li:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-light);
}

}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-bg);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

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

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

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 28px 0;
    background: rgba(13, 111, 163, 0.96);
    background-image: linear-gradient(rgba(13, 111, 163, 0.90), rgba(13, 111, 163, 0.90)), url('assets/images/background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(56, 214, 196, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    color: var(--light-bg);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--teal-lighter);
    display: block;
    font-size: 0.9em;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(247, 250, 252, 0.95);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--light-bg);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-description {
    font-size: 16px;
    color: rgba(247, 250, 252, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--teal-light);
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(56, 214, 196, 0.35);
}

.btn-primary:hover {
    background: var(--teal-lighter);
    box-shadow: 0 10px 30px rgba(56, 214, 196, 0.45);
    transform: translateY(-4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--light-bg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--teal-lighter);
    box-shadow: 0 8px 24px rgba(110, 231, 210, 0.2);
    transform: translateY(-4px);
}

.btn-light {
    background: var(--light-bg);
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
}

/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(247, 250, 252, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding: 8px 0;
    margin: 0 auto 12px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(247, 250, 252, 0.5);
    border-radius: 2px;
    animation: wheel-scroll 1.5s infinite;
}

.scroll-indicator p {
    color: rgba(247, 250, 252, 0.7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.title-bar {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--teal-light) 100%);
    border-radius: 2px;
    margin-bottom: 28px;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.about-section {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    animation: fadeIn 1s ease;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(13, 111, 163, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(13, 111, 163, 0.3);
}

.image-placeholder.large {
    aspect-ratio: 16/9;
}

.about-content {
    animation: fadeInUp 1s ease;
}

.about-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary-blue);
    min-width: 32px;
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   PROGRAM SECTION
   ============================================ */

.program-section {
    background: linear-gradient(135deg, rgba(34, 53, 121, 0.05) 0%, rgba(13, 111, 163, 0.03) 100%);
}

.program-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.program-text {
    animation: fadeInUp 1s ease;
}

.program-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp 1s ease 0.2s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--teal-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 20px;
    color: var(--teal-light);
    min-width: 24px;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

/* ============================================
   WHY APPLY SECTION
   ============================================ */

.why-apply-section {
    background: var(--light-gray);
}

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

.benefit-card {
    background: white;
    border-radius: 14px;
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-light);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    background: linear-gradient(135deg, rgba(34, 53, 121, 0.05) 0%, rgba(13, 111, 163, 0.03) 100%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: start;
    margin-top: 40px;
}

.timeline-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    font-size: 20px;
}

@media (min-width: 1024px) {
    .timeline {
        grid-template-columns: repeat(5, 1fr);
    }

    .timeline-arrow {
        display: flex;
        height: 40px;
    }
}

.timeline-item {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-gray);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.timeline-item:hover {
    border-color: var(--teal-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 12px;
}

.timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    background: white;
}

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

.value-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
    border-radius: 14px;
    padding: 36px 28px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-light);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotateY(10deg);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   DISCOVER SECTION
   ============================================ */

.discover-section {
    background: var(--light-gray);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discover-content {
    animation: fadeInUp 1s ease;
}

.discover-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.discover-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.discover-item:hover {
    border-left-color: var(--teal-light);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.discover-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discover-item h4 i {
    color: var(--primary-blue);
    font-size: 18px;
}

.discover-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--primary-teal) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(56, 214, 196, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.footer {
    background: rgba(13, 111, 163, 0.96);
    color: #F7FAFC;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #cbd5e0;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--teal-light);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(110, 231, 210, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 231, 210, 0.2);
}

.social-icons a:hover {
    background: var(--teal-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info p {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.contact-info i {
    color: var(--teal-light);
    width: 16px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #a0aec0;
    margin: 0;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes wheel-scroll {
    0% {
        opacity: 1;
        transform: translateY(-8px);
    }
    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .section-title {
        font-size: 28px;
    }

    .about-grid,
    .program-content,
    .discover-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 24px;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline-arrow {
        display: none !important;
    }

    .discover-items {
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .hero {
        padding: 70px 16px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 13px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-description {
        font-size: 14px;
    }

    .navbar-container {
        padding: 0 16px;
    }

    .about-text {
        font-size: 14px;
    }

    .program-text p {
        font-size: 14px;
    }

    .discover-item h4 {
        font-size: 15px;
    }

    .discover-item p {
        font-size: 13px;
    }
}
