/* =========================================
   MAIN VARIABLES — White Clean Theme
   ========================================= */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent-color: #2563eb;
    --yellow-300: #fde047;
    --yellow-400: #facc15;
    --accent-light: #3b82f6;
    --text-dark: #0f172a;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-section: #ffffff;
    --border-light: #e2e8f0;
    --border-lighter: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

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

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

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

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
header {
    background: #1e3a8a;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

header.scrolled {
    background: #1e3a8a;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.logo img {
    height: 44px;
    border-radius: 8px;
}

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

.nav-links a:not(.nav-login-btn) {
    padding: 8px 18px;
    font-weight: 500;
    font-size: 0.92rem;
    color: white !important;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-links a:not(.nav-login-btn):hover {
    color: #1e3a8a !important;
    background: #facc15 !important;
}

.nav-links a:not(.nav-login-btn).active {
    color: #1e3a8a !important;
    font-weight: 600;
    background: #facc15 !important;
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--bg-white) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-left: 8px;
}

.nav-login-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.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(5px, -5px);
}

/* =========================================
   HERO SECTION (Home)
   ========================================= */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-white);
}

.hero-modern-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-modern-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(37, 99, 235, 0.5) 100%);
}

.hero-modern-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--bg-white);
}

.hero-modern-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-modern-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-modern-title .highlight {
    color: rgba(255, 255, 255, 0.9);
}

.hero-modern-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

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

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   SECTION COMMON (White Theme)
   ========================================= */
.section-white {
    background: var(--bg-white);
    padding: 100px 0;
}

.section-light {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.section-header-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================================
   STATS / KEY VALUES
   ========================================= */
.stats-modern {
    background: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-lighter);
}

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

.stat-modern-item {
    text-align: center;
    padding: 32px 16px;
}

.stat-modern-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.stat-modern-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-modern-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =========================================
   PROGRAM CARDS
   ========================================= */
.programs-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.program-modern-card {
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

.program-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.program-modern-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.program-modern-card:hover .program-modern-icon {
    background: var(--primary-color);
    color: var(--bg-white);
}

.program-modern-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* =========================================
   FACILITIES
   ========================================= */
.facilities-modern-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.facility-modern-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.facility-modern-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.04);
    transform: translateY(-2px);
}

.facility-modern-tag i {
    color: var(--primary-color);
    font-size: 1rem;
}

.facilities-modern-note {
    text-align: center;
    margin-top: 32px;
    font-size: 1rem;
    color: var(--text-light);
}

/* =========================================
   ACTIVITIES GALLERY
   ========================================= */
.activities-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.activity-modern-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    display: block;
}

.activity-modern-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-modern-card:hover img {
    transform: scale(1.08);
}

.activity-modern-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.9), transparent);
    color: var(--bg-white);
    padding: 60px 24px 24px;
    transform: translateY(30%);
    transition: transform var(--transition);
}

.activity-modern-card:hover .activity-modern-overlay {
    transform: translateY(0);
}

.activity-modern-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.empty-modern {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 40px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-modern {
    background: var(--bg-light);
    padding: 100px 0;
}

.cta-modern-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.cta-modern-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-modern-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-modern-title .cta-highlight {
    color: var(--primary-color);
}

.cta-modern-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-modern-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================
   NEWS CARDS (Home)
   ========================================= */
.news-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.news-modern-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.news-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.news-modern-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-modern-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-modern-card:hover .news-modern-img img {
    transform: scale(1.08);
}

.news-modern-date {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.news-modern-body {
    padding: 24px;
}

.news-modern-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-modern-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.news-modern-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
}

.news-modern-link:hover {
    gap: 14px;
}

/* =========================================
   PAGE HERO (Sub pages)
   ========================================= */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(37, 99, 235, 0.7) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-history {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-image-wrap {
    position: relative;
}

.about-image-box {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-float-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-float-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-float-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
    opacity: 0.9;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-heading-accent {
    color: var(--primary-color);
}

.about-text-body {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-text-body p {
    margin-bottom: 16px;
}

/* Vision & Mission */
.about-vision {
    padding: 100px 0;
    background: var(--bg-light);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.vision-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.vision-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.vision-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
}

.mission-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mission-number {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.mission-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* =========================================
   ACADEMIC PAGE
   ========================================= */
.academic-level {
    padding: 100px 0;
    background: var(--bg-white);
}

.academic-level-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.academic-level-reverse {
    direction: rtl;
}

.academic-level-reverse > * {
    direction: ltr;
}

.academic-level-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.academic-level-img img {
    width: 100%;
    display: block;
}

.academic-level-text .academic-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.academic-level-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.academic-level-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
}

.academic-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.academic-feature {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-lighter);
    transition: var(--transition);
}

.academic-feature:hover {
    border-color: var(--primary-color);
}

.academic-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.academic-feature h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.academic-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Core Strip */
.academic-core-strip {
    background: var(--bg-white);
    padding: 60px 0;
    border-top: 1px solid var(--border-lighter);
}

.core-strip-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.core-strip-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.core-strip-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.core-strip-item h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.core-strip-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =========================================
   PPDB (ADMISSIONS) PAGE
   ========================================= */
.ppdb-main {
    padding: 80px 0;
    background: var(--bg-white);
}

.ppdb-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 60px;
}

.ppdb-info-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.ppdb-info-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.ppdb-special-offer {
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 18px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}

.ppdb-offer-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ppdb-offer-text strong {
    color: #ef4444;
}

.ppdb-requirements {
    list-style: none;
    padding: 0;
}

.ppdb-requirements li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.ppdb-req-icon {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.ppdb-req-label {
    font-weight: 600;
    color: var(--text-dark);
}

.ppdb-cost-card {
    background: var(--bg-white);
    border: 1px solid var(--primary-color);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.ppdb-cost-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.ppdb-cost-subtitle {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.ppdb-cost-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.ppdb-cost-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ppdb-cost-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.04);
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-light);
}

.ppdb-cost-note i {
    color: var(--primary-color);
}

/* PPDB Form */
.ppdb-form-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.ppdb-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.ppdb-form-header {
    background: var(--bg-light);
    padding: 36px;
    text-align: center;
    border-bottom: 1px solid var(--border-lighter);
}

.ppdb-form-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.ppdb-form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.ppdb-form {
    padding: 40px;
}

.ppdb-form-section {
    margin-bottom: 40px;
}

.ppdb-section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ppdb-section-num {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.ppdb-field {
    margin-bottom: 20px;
}

.ppdb-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.ppdb-field input,
.ppdb-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.ppdb-field input:focus,
.ppdb-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.ppdb-field textarea {
    resize: none;
}

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

.ppdb-radio-group {
    display: flex;
    gap: 16px;
}

.ppdb-radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: var(--bg-light);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.ppdb-radio-card:hover,
.ppdb-radio-card:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.04);
}

.ppdb-radio-card input {
    accent-color: var(--primary-color);
}

.ppdb-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
}

.ppdb-upload-item label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ppdb-upload-item input[type="file"] {
    width: 100%;
    font-size: 0.85rem;
}

.ppdb-upload-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
}

.ppdb-error-box {
    background: #fef2f2;
    color: #991b1b;
    padding: 18px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    border-left: 4px solid #ef4444;
}

.ppdb-error-box strong {
    display: block;
    margin-bottom: 8px;
}

.ppdb-error-box ul {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
}

.ppdb-error-box li {
    margin-bottom: 4px;
}

.ppdb-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 18px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.ppdb-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* =========================================
   NEWS LIST PAGE
   ========================================= */
.news-list-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.news-list-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-list-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.news-list-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-list-card:hover .news-list-img img {
    transform: scale(1.08);
}

.news-list-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.news-list-placeholder i {
    font-size: 3rem;
    opacity: 0.3;
}

.news-list-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.news-list-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-list-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.news-list-meta i {
    margin-right: 4px;
}

.news-list-body h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-list-body p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 0.92rem;
}

.news-list-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap var(--transition);
}

.news-list-link:hover {
    gap: 14px;
}

.news-pagination {
    margin-top: 50px;
    text-align: center;
}

/* =========================================
   NEWS DETAIL PAGE
   ========================================= */
.breadcrumb {
    background: var(--bg-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-lighter);
    font-size: 0.88rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 10px;
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-muted);
}

.news-detail-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.news-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.2), rgba(30, 58, 138, 0.85));
}

.news-detail-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
}

.news-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    color: var(--bg-white);
    font-weight: 700;
    max-width: 800px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    gap: 20px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.news-detail-meta i {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 6px;
}

.news-detail-main {
    padding: 60px 0;
}

.news-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.news-detail-article .news-detail-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.news-detail-body p {
    margin-bottom: 16px;
}

.news-detail-share {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.news-detail-share h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.news-detail-share-links {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-fb { background: #3b5998; }
.share-wa { background: #25d366; }
.share-tw { background: #1da1f2; }

/* Sidebar */
.news-detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-lighter);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
}

.sidebar-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-item-text h4 {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
    transition: color var(--transition);
}

.sidebar-item:hover .sidebar-item-text h4 {
    color: var(--primary-color);
}

.sidebar-item-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.sidebar-view-all {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 10px;
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.sidebar-view-all:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sidebar-ppdb-banner {
    margin-top: 28px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    color: var(--bg-white);
    text-align: center;
}

.sidebar-ppdb-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-ppdb-banner p {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-bottom: 20px;
}

.sidebar-ppdb-banner .btn {
    font-size: 0.85rem;
    padding: 10px 24px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-main {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-info-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.contact-highlight {
    color: var(--primary-color);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.92rem;
}

.contact-social-section {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-lighter);
}

.contact-social-section p {
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.contact-form-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.contact-form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.contact-success-box {
    background: #f0fdf4;
    color: #166534;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border-left: 4px solid #22c55e;
    font-size: 0.95rem;
}

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

.contact-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* =========================================
   ACTIVITY DETAIL PAGE
   ========================================= */
.activity-detail-breadcrumb {
    background: var(--bg-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-lighter);
    font-size: 0.88rem;
}

.activity-detail-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.activity-detail-breadcrumb a:hover {
    text-decoration: underline;
}

.activity-detail-breadcrumb .sep {
    margin: 0 10px;
    color: var(--text-muted);
}

.activity-detail-breadcrumb .current {
    color: var(--text-muted);
}

.activity-detail-hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.activity-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.activity-detail-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.activity-detail-hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.activity-detail-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.activity-detail-hero .date {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.activity-detail-hero .date i {
    color: rgba(255, 255, 255, 0.6);
}

.activity-detail-content {
    padding: 80px 0;
}

.activity-detail-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

.activity-detail-body {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-lighter);
}

.activity-detail-body h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.activity-detail-body .activity-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.activity-detail-sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.activity-detail-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-lighter);
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-detail-sidebar-card h3 i {
    color: var(--primary-color);
}

.activity-sidebar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-lighter);
    transition: var(--transition);
}

.activity-sidebar-item:last-child {
    border-bottom: none;
}

.activity-sidebar-item:hover h4 {
    color: var(--primary-color);
}

.activity-sidebar-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.activity-sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.activity-sidebar-item:hover .activity-sidebar-img img {
    transform: scale(1.08);
}

.activity-sidebar-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color var(--transition);
}

.activity-sidebar-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.activity-cta-card {
    margin-top: 28px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.activity-cta-card i {
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.5;
    display: block;
}

.activity-cta-card h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-cta-card p {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-bottom: 18px;
}

.activity-cta-card a {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
}

.activity-cta-card a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.activity-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 48px;
}

.activity-back-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* =========================================
   PPDB SUCCESS PAGE
   ========================================= */
.success-section {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.success-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 56px 44px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.success-card h1 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-card > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.success-code-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    border: 1px solid var(--border-lighter);
}

.success-code-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.success-code-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.success-note {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #1e3a8a;
    color: var(--bg-white);
    padding: 60px 0 0;
}

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

.footer-col h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: var(--transition);
}

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

.footer-col ul li i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.social-links-footer {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links-footer a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links-footer a:hover {
    background: var(--bg-white);
    color: #1e3a8a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .activity-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo span {
        font-size: 0.95rem !important;
        white-space: normal;
        max-width: 180px;
        line-height: 1.2;
    }

    .logo {
        gap: 8px !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition);
        z-index: 1000;
        gap: 4px;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.nav-login-btn) {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-login-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 16px;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Hero */
    .hero-modern {
        min-height: 75vh;
    }

    .hero-modern-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    /* Page Hero */
    .page-hero {
        height: auto;
        min-height: auto;
        padding: 56px 0;
    }

    /* Stats */
    .stats-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* About */
    .about-history-grid,
    .vision-mission-grid,
    .contact-grid,
    .ppdb-info-grid,
    .academic-level-card,
    .news-detail-grid {
        grid-template-columns: 1fr;
    }

    footer {
        text-align: center;
    }

    .social-links-footer {
        justify-content: center;
    }

    .academic-level-reverse {
        direction: ltr;
    }

    .ppdb-field-row,
    .ppdb-upload-grid,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        display: none;
    }

    /* Academic */
    .academic-level-card {
        margin-bottom: 60px;
    }

    .academic-level-img {
        order: -1;
    }

    /* PPDB */
    .ppdb-form-card {
        border-radius: var(--radius-lg);
    }

    .ppdb-form {
        padding: 24px;
    }

    .ppdb-info-card,
    .ppdb-cost-card,
    .contact-info-card,
    .contact-form-card {
        padding: 28px;
    }

    /* Activity Detail */
    .activity-detail-hero {
        height: 350px;
    }

    .activity-detail-hero h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .activity-detail-content {
        padding: 40px 0;
    }

    .activity-detail-grid {
        grid-template-columns: 1fr;
    }

    aside.activity-detail-sidebar {
        display: none;
    }

    .activity-detail-body {
        padding: 24px;
    }

    /* Sections */
    .section-white,
    .section-light {
        padding: 60px 0;
    }

    .about-history,
    .about-vision,
    .academic-level,
    .ppdb-main,
    .news-list-section {
        padding: 60px 0;
    }

    .contact-main {
        padding: 60px 0;
    }

    .cta-modern {
        padding: 60px 0;
    }

    .cta-modern-card {
        padding: 40px 28px;
    }
}

@media (max-width: 480px) {
    .hero-modern-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-modern-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-modern-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ppdb-radio-group {
        flex-direction: column;
    }

    .success-card {
        padding: 40px 24px;
    }
}

/* =========================================
   AUTH PAGES (Login & Register)
   ============================================================ */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    position: relative;
    overflow-x: hidden;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
}

.auth-deco-layer {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.auth-deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.auth-blob-1 {
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
}

.auth-blob-2 {
    top: -100px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
}

.auth-header {
    position: relative;
    z-index: 2;
    padding: 24px;
    text-align: center;
}

.auth-header a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.auth-header img {
    height: 52px;
    border-radius: 12px;
    background: #fff;
    padding: 4px;
}

.auth-header span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.auth-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 60px;
}

.auth-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 960px;
    display: grid;
    grid-template-columns: 1fr;
}

.auth-illustration {
    display: none;
    position: relative;
    overflow: hidden;
}

.auth-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-form-panel {
    padding: 44px 40px;
}

.auth-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.auth-field {
    position: relative;
    margin-bottom: 18px;
}

.auth-field-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.auth-field-icon {
    position: absolute;
    left: 18px;
    top: 44px;
    font-size: 1rem;
    color: var(--primary-color);
    z-index: 2;
}

.auth-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all var(--transition);
    outline: none;
}

.auth-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.auth-error {
    color: #dc2626;
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 6px;
    display: block;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 24px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.auth-remember input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.auth-forgot {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.auth-forgot:hover {
    text-decoration: underline;
}

.auth-buttons {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.auth-btn {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.auth-btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.auth-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.auth-btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.auth-btn-secondary:hover {
    background: var(--bg-light);
}

.auth-session-status {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (min-width: 900px) {
    .auth-card {
        grid-template-columns: 1fr 1fr;
    }

    .auth-illustration {
        display: block;
    }

    .auth-form-panel {
        padding: 56px 52px;
    }

    .auth-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .auth-form-panel {
        padding: 32px 22px;
    }

    .auth-title {
        font-size: 1.6rem;
    }

    .auth-buttons {
        flex-direction: column;
    }

    .auth-header img {
        height: 44px;
    }

    .auth-header span {
        font-size: 1.2rem;
    }
}

/* =========================================
   ACADEMIC PILLARS STYLE
   ========================================= */
.academic-pillars {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.pillar-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: left;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.pillar-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}
