/* ===== RED DOMINANT COLOR SYSTEM ===== */
:root {
    /* Red Scale */
    --red-deep: #8B0000;
    --red-primary: #C0392B;
    --red-vivid: #E74C3C;
    --red-soft: #FADBD8;
    
    /* Neutrals */
    --charcoal: #1A1A2E;
    --warm-gray: #F5F0EE;
    --white: #FFFFFF;
    --gold-accent: #C9A96E;
    
    /* Functional */
    --text-body: #2D2D2D;
    --text-muted: #5A5A5A;
    --border-light: #E8E4E1;
    
    /* Shadows - subtle, one direction */
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.12);
    
    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-margin-top: 80px;
}

/* Accessibility: Focus styles */
:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--charcoal);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Playfair Display for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    line-height: 1.7;
    color: var(--text-body);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

/* ===== Focus States - Branded ===== */
*:focus-visible {
    outline: 2px solid var(--red-primary);
    outline-offset: 2px;
}

/* ===== Navbar ===== */
.navbar {
    background: var(--red-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--red-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.logo-icon-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-upload-btn {
    position: absolute;
    bottom: -6px;
    right: -6px;
    padding: 2px 6px;
    font-size: 9px;
    background: var(--red-primary);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.logo-upload-btn:hover {
    background: var(--red-deep);
}

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

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

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

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

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

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    min-height: 44px;
}

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

.btn-primary:hover {
    background: var(--red-deep);
}

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

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

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

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

.btn-outline-red {
    background: transparent;
    border: 2px solid var(--red-primary);
    color: var(--red-primary);
}

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

.btn-nav {
    background: var(--white);
    color: var(--red-primary);
    padding: 10px 24px;
    font-size: 13px;
}

.btn-nav:hover {
    background: var(--red-soft);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* ===== Hero Section - Asymmetric Layout ===== */
.hero {
    background: var(--charcoal);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--red-primary);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero .container {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 520px;
    color: var(--white);
    position: relative;
    z-index: 5;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 24px;
    position: relative;
    padding-left: 50px;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold-accent);
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 28px;
    max-width: 580px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
    background: var(--red-primary);
}

.hero-visual .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

.hero-visual.has-image {
    background: transparent;
}

.hero:has(.hero-visual.has-image)::before {
    display: none;
}

.japan-symbol {
    font-size: 180px;
    color: var(--white);
    opacity: 0.15;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    z-index: 1;
}

.hero-upload-btn {
    position: absolute;
    bottom: 80px;
    right: 40px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    z-index: 10;
}

.hero-upload-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--red-primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Section Styles ===== */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-lg { padding: 160px 0; }
.bg-warm { background: var(--warm-gray); }
.bg-charcoal { background: var(--charcoal); }
.bg-red { background: var(--red-primary); }

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-primary);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-title span {
    color: var(--red-primary);
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ===== About Section - Asymmetric Layout ===== */
.about-section {
    padding: 140px 0;
    background: var(--warm-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: start;
}

.about-left .section-header {
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border-light);
}

.about-stat .stat-number {
    font-size: 2.5rem;
}

.about-stat .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.vision-mission-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--red-primary);
}

.vm-card h3 {
    color: var(--charcoal);
    margin-bottom: 16px;
}

.vm-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.vm-card ul {
    margin-top: 16px;
}

.vm-card ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-body);
}

.vm-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    background: var(--white);
    padding: 35px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.feature-item h4 {
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== Programs Section ===== */
.programs-section {
    padding: 140px 0;
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--warm-gray);
    padding: 50px 35px;
    border-radius: 4px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.program-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.program-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.program-card h3 {
    margin-bottom: 14px;
}

.program-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA Section - Full Bleed Red ===== */
.cta-section {
    background: var(--red-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '日本';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 300px;
    color: rgba(255,255,255,0.05);
    font-weight: 700;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 500px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 140px 0;
    background: var(--warm-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.contact-item h4 {
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 15px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.25s ease;
    background: var(--white);
}

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

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

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-icon {
    background: var(--red-primary);
    color: var(--white);
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.25s ease;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 12px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin: 0;
}

/* ===== Page Header ===== */
.page-header {
    background: var(--charcoal);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: var(--red-primary);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 600px;
}

/* ===== Achievements Section ===== */
.achievements-section {
    padding: 120px 0;
    background: var(--white);
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 60px;
    bottom: -50px;
    width: 1px;
    background: var(--border-light);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    background: var(--red-primary);
    color: var(--white);
    padding: 12px 0;
    border-radius: 4px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    height: fit-content;
}

.timeline-content {
    background: var(--warm-gray);
    padding: 35px;
    border-radius: 4px;
}

.timeline-content h3 {
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== Reports Section ===== */
.reports-section {
    padding: 120px 0;
    background: var(--warm-gray);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.report-card {
    background: var(--white);
    border-radius: 4px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.report-card:hover {
    border-color: var(--red-primary);
    box-shadow: var(--shadow-md);
}

.report-year {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.report-stat .stat-number {
    font-size: 4rem;
    color: var(--red-primary);
}

.report-stat .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.report-destination {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Certification Section ===== */
.certification-section {
    padding: 120px 0;
    background: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    background: var(--warm-gray);
    padding: 50px 35px;
    border-radius: 4px;
    text-align: center;
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.cert-card h3 {
    margin-bottom: 14px;
}

.cert-card p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== Student Stats Section ===== */
.student-stats-section {
    padding: 60px 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.student-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.student-stat-card {
    background: var(--white);
    border-radius: 4px;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.stat-icon.green { background: #D4EDDA; }
.stat-icon.blue { background: #D1ECF1; }
.stat-icon.orange { background: #FFF3CD; }
.stat-icon.purple { background: #E2D9F3; }

.stat-info .stat-number {
    font-size: 2rem;
}

.stat-info .stat-label {
    font-size: 13px;
    margin-top: 4px;
}

/* ===== Available Students Section ===== */
.available-students-section {
    padding: 100px 0;
    background: var(--warm-gray);
}

.students-table-wrapper {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.students-table {
    width: 100%;
    border-collapse: collapse;
}

.students-table th,
.students-table td {
    padding: 20px 28px;
    text-align: left;
}

.students-table th {
    background: var(--red-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.students-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.students-table tbody tr:hover {
    background: var(--warm-gray);
}

.students-table tbody tr:last-child {
    border-bottom: none;
}

.program-name {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
}

.status-available {
    display: inline-block;
    background: #D4EDDA;
    color: #155724;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* ===== Partnership CTA ===== */
.partnership-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    background: var(--charcoal);
    border-radius: 4px;
    padding: 70px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--red-primary);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

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

.cta-box h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
}

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

/* ===== Requirements Section ===== */
.requirements-section {
    padding: 120px 0;
    background: var(--warm-gray);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.requirement-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.req-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.requirement-card p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== Gallery Page ===== */
.gallery-page-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--red-primary);
    color: var(--white);
    border-color: var(--red-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
}

.gallery-image {
    height: 240px;
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--border-light) 100%);
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.gallery-category-tag {
    display: inline-block;
    background: var(--red-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-caption {
    padding: 28px;
}

.gallery-caption h3 {
    margin-bottom: 10px;
}

.gallery-caption p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.gallery-date {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Video Section ===== */
.video-section {
    padding: 120px 0;
    background: var(--warm-gray);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.video-thumbnail {
    height: 200px;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-icon {
    width: 70px;
    height: 70px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.25s ease;
}

.play-icon:hover {
    transform: scale(1.1);
}

.video-card h3 {
    padding: 24px 24px 12px;
}

.video-card p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        max-width: 100%;
        text-align: left;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero::before {
        width: 100%;
        clip-path: none;
        opacity: 0.1;
    }
    
    .hero-visual { display: none; }
    
    .stats-grid,
    .student-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item { border-bottom: 1px solid var(--border-light); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .programs-grid,
    .gallery-grid,
    .video-grid,
    .reports-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 50px 40px;
    }
    
    .cta-box::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
    }
    
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header::before {
        width: 100%;
        clip-path: none;
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--red-primary);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 16px 24px;
        width: 100%;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .btn-nav {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 100px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-grid,
    .student-stats-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .programs-grid,
    .gallery-grid,
    .video-grid,
    .reports-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .section { padding: 80px 0; }
    .section-lg { padding: 100px 0; }
    
    .page-header {
        padding: 140px 0 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-year {
        width: fit-content;
        padding: 10px 20px;
    }
    
    .students-table-wrapper {
        overflow-x: auto;
    }
    
    .students-table {
        min-width: 600px;
    }
}
