/* Sekolah Papua Harapan - Complete Stylesheet */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a8a;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 20px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
    display: none !important;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.3s;
}

.lang-btn.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* ============================================
   DONATE BUTTON
   ============================================ */
.donate-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.donate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.donate-btn span:first-child {
    font-size: 20px;
    animation: heartbeat 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(239, 68, 68, 0.6);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.2);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* ============================================
   DONATE MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--dark);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.modal-content > p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--gray);
}

.donate-options {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.donate-method {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.donate-method h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.donate-method p {
    margin: 8px 0;
    color: var(--dark);
}

.donate-method strong {
    color: var(--primary);
    font-size: 18px;
}

.donate-method a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.donate-method a:hover {
    text-decoration: underline;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text h1 {
    font-size: 20px;
    color: var(--primary);
}

.logo-text p {
    font-size: 12px;
    color: var(--gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
    cursor: pointer;
}

.nav-menu a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.4s backwards;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}


/* === HERO SLIDESHOW === */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.6s ease-in-out;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* adjustable transparency */
    transition: background 0.5s ease;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    color: white;
    border: none;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 3;
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary);
}

.hero-btn.prev { left: 20px; }
.hero-btn.next { right: 20px; }

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-btn {
        font-size: 28px;
        padding: 5px 12px;
    }
}



/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--light);
    padding: 60px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--gray);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-title {
    text-align: center;
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   VISION MISSION
   ============================================ */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
}

.vm-card h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   VALUES
   ============================================ */
.values {
    background: var(--primary);
    color: white;
    padding: 80px 20px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.value-card:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   TEACHING PRINCIPLES
   ============================================ */
.teaching-principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.principle-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    align-items: start;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.principle-icon {
    font-size: 56px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
}

.principle-content {
    flex: 1;
}

.principle-content h3 {
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 800;
}

.principle-content p {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.principle-verse {
    background: var(--light);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    border-left: 3px solid var(--secondary);
    margin-top: 15px;
}

/* Responsive for Teaching Principles */
@media (max-width: 768px) {
    .principle-card {
        flex-direction: column;
        padding: 30px 25px;
        gap: 20px;
    }
    
    .principle-icon {
        font-size: 48px;
        width: 70px;
        height: 70px;
    }
    
    .principle-content h3 {
        font-size: 22px;
    }
    
    .principle-content p {
        font-size: 15px;
    }
}

/* ============================================
   GLOBAL BEST PRACTICE
   ============================================ */
.global-best-intro {
    max-width: 1100px;
    margin: 0 auto 30px;
    background: white;
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--secondary);
}

.global-best-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark);
    text-align: justify;
}

.global-best-impact {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 35px 40px;
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
}

.global-best-impact p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark);
    text-align: justify;
    margin: 0;
}

@media (max-width: 768px) {
    .global-best-intro,
    .global-best-impact {
        padding: 25px 20px;
    }
    
    .global-best-intro p,
    .global-best-impact p {
        font-size: 16px;
        text-align: left;
    }
}

/* ============================================
   LEAD FRAMEWORK
   ============================================ */
.lead-framework {
    background: var(--light);
    padding: 80px 20px;
}

.lead-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.lead-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.lead-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.lead-item strong span {
    display: inline;
}

/* ============================================
   PROGRAMS/ACADEMICS
   ============================================ */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.program-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.program-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.program-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.program-header p {
    font-size: 14px;
    opacity: 0.9;
}

.program-content {
    padding: 30px;
}

.program-content ul {
    list-style: none;
    padding: 0;
}

.program-content li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-content li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.program-content p {
    line-height: 1.8;
}

/* ============================================
   CAMPUSES
   ============================================ */
.campus-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.campus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.campus-img {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
}

.campus-content {
    padding: 30px;
}

.campus-content h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.campus-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.badge.coming-soon {
    background: var(--secondary);
}

/* ============================================
   ADMISSIONS
   ============================================ */
.admission-process {
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    gap: 30px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 25px;
    align-items: start;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.requirements-list {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.requirements-list h4 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.requirements-list ul {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.requirements-list li:before {
    content: "📄";
    position: absolute;
    left: 0;
}

/* ============================================
   HISTORY GALLERY
   ============================================ */
.history-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.history-gallery img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.history-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   CURRICULUM FRAMEWORK - PROFESSIONAL DESIGN
   ============================================ */

/* Framework Image Container - Centered */
.framework-image-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--primary);
}

.framework-image-container img {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.framework-image-container:hover img {
    transform: scale(1.03);
}

/* Framework Full Explanation Container */
.framework-full-explanation {
    max-width: 1100px;
    margin: 0 auto;
}

/* Introduction Section - Featured Box - SOFT PURPLE WITH DARK GRAY TEXT */
.framework-intro {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    color: #4b5563;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.15);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.framework-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
    pointer-events: none;
}

.framework-intro h3 {
    color: #374151;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.framework-intro p {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 25px;
    text-align: justify;
    position: relative;
    color: #4b5563;
}

.framework-intro strong {
    color: #1f2937;
    font-weight: 800;
}

/* LEAD Stands For Title */
.lead-stands-title {
    color: #374151;
    font-size: 24px;
    font-weight: 800;
    margin: 35px 0 25px 0;
    text-align: center;
    position: relative;
}

/* LEAD Grid Inside Introduction */
.lead-grid-intro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    position: relative;
}

.lead-item-intro {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #9333ea;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.12);
    transition: all 0.3s ease;
    position: relative;
}

.lead-item-intro:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
}

.lead-item-intro strong {
    color: #374151;
    display: block;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.lead-item-intro strong span {
    display: inline;
}

/* Styling untuk huruf pertama L-E-A-D */
.lead-item-intro strong .lead-letter {
    font-size: 32px;
    font-weight: 900;
    color: #9333ea;
    margin-right: 2px;
}

.lead-item-intro p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Journey Section - SOFT MINT GREEN */
.framework-section {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    border-left: 6px solid #10b981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
    position: relative;
}

.framework-section::before {
    content: '🎯';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    opacity: 0.15;
}

.framework-section h3 {
    color: #065f46;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 800;
}

.framework-section p {
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
    color: #064e3b;
}

.framework-section strong {
    color: #047857;
    font-weight: 800;
}

/* Framework Layers - 4 Circles with Different Colors */
.framework-layer {
    margin: 50px 0;
    padding: 45px;
    border-radius: 20px;
    border: 3px solid;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

/* Layer 1 - Inner Circle (Purple/Blue) */
.framework-layer:nth-of-type(4) {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-color: #7c3aed;
}

.framework-layer:nth-of-type(4)::before {
    content: '🎯';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    opacity: 0.2;
}

.framework-layer:nth-of-type(4) h4 {
    color: #5b21b6;
}

.framework-layer:nth-of-type(4) strong {
    color: #7c3aed;
}

/* Layer 2 - Middle Circle (Blue) */
.framework-layer:nth-of-type(5) {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #2563eb;
}

.framework-layer:nth-of-type(5)::before {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    opacity: 0.2;
}

.framework-layer:nth-of-type(5) h4 {
    color: #1e40af;
}

.framework-layer:nth-of-type(5) strong {
    color: #2563eb;
}

/* Layer 3 - Outer Circle (Green) */
.framework-layer:nth-of-type(6) {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
}

.framework-layer:nth-of-type(6)::before {
    content: '🌟';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    opacity: 0.2;
}

.framework-layer:nth-of-type(6) h4 {
    color: #065f46;
}

.framework-layer:nth-of-type(6) strong {
    color: #059669;
}

/* Layer 4 - Roof (Orange) */
.framework-layer:nth-of-type(7) {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-color: #f97316;
}

.framework-layer:nth-of-type(7)::before {
    content: '🏆';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    opacity: 0.2;
}

.framework-layer:nth-of-type(7) h4 {
    color: #9a3412;
}

.framework-layer:nth-of-type(7) strong {
    color: #ea580c;
}

/* Common Layer Styles */
.framework-layer h4 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.framework-layer p {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

.framework-layer em {
    color: var(--secondary);
    font-style: italic;
    font-weight: 600;
}

/* Framework Lists - Enhanced Bullets */
.framework-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.framework-list li {
    padding: 18px 20px 18px 60px;
    position: relative;
    font-size: 17px;
    line-height: 1.8;
    margin: 15px 0;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.framework-list li:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.framework-list li:before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.framework-list li strong {
    color: var(--primary);
    font-weight: 800;
}

.framework-list li em {
    display: block;
    margin-top: 5px;
    color: var(--secondary);
    font-style: italic;
    font-weight: 600;
}

.framework-list ul {
    list-style: disc;
    margin-left: 30px;
    margin-top: 15px;
}

.framework-list ul li {
    background: none;
    border: none;
    padding: 8px 0;
    margin: 8px 0;
}

.framework-list ul li:before {
    content: none;
}

.framework-list ul li:hover {
    transform: none;
    box-shadow: none;
}

/* Values & Dispositions - Card Grid */
.values-dispositions {
    margin: 35px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.disposition-group {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.disposition-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Different colors for each value */
.disposition-group:nth-child(1) {
    border-top-color: #7c3aed;
}

.disposition-group:nth-child(1) h5 {
    color: #7c3aed;
}

.disposition-group:nth-child(2) {
    border-top-color: #2563eb;
}

.disposition-group:nth-child(2) h5 {
    color: #2563eb;
}

.disposition-group:nth-child(3) {
    border-top-color: #10b981;
}

.disposition-group:nth-child(3) h5 {
    color: #10b981;
}

.disposition-group:nth-child(4) {
    border-top-color: #f59e0b;
}

.disposition-group:nth-child(4) h5 {
    color: #f59e0b;
}

.disposition-group h5 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disposition-group ol {
    margin: 0;
    padding-left: 25px;
    counter-reset: item;
    list-style: none;
}

.disposition-group ol li {
    font-size: 16px;
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 10px;
    position: relative;
    counter-increment: item;
}

.disposition-group ol li:before {
    content: counter(item) ".";
    position: absolute;
    left: -25px;
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
}

/* Framework Conclusion - Grand Finale */
.framework-conclusion {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    border-radius: 25px;
    color: white;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.framework-conclusion::before {
    content: '🎓';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 200px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.framework-conclusion p {
    font-size: 18px;
    line-height: 2.1;
    text-align: justify;
    margin: 0;
    position: relative;
    z-index: 1;
}

.framework-conclusion strong {
    font-weight: 800;
    color: #fbbf24;
    text-decoration: underline;
    text-decoration-color: rgba(251, 191, 36, 0.4);
    text-underline-offset: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 20px 20px;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    /* Language Switcher - Mobile optimized */
    .lang-switcher {
        top: 10px;
        right: 70px;
        padding: 6px 12px;
        border-radius: 20px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 14px;
    }

    /* Navigation adjustments */
    .nav-container {
        min-height: 70px;
        padding: 0 15px;
    }

    /* Logo adjustments */
    .logo {
        gap: 10px;
        max-width: calc(100% - 140px);
    }

    .logo-img {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .logo-text {
        overflow: hidden;
    }

    .logo-text h1 {
        font-size: 14px;
        line-height: 1.2;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-text p {
        font-size: 10px;
        line-height: 1.2;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 1001;
        padding: 5px;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary);
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Animate menu toggle */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease-in-out;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 8px;
        transition: background 0.3s;
    }

    .nav-menu a:hover {
        background: var(--light);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Donate button */
    .donate-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .donate-btn span:first-child {
        font-size: 18px;
    }

    /* Hero Section */
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    /* Step cards */
    .step-card {
        flex-direction: column;
    }

    /* History Gallery */
    .history-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Framework responsive */
    .framework-image-container {
        padding: 25px;
        margin: 30px auto;
    }
    
    .framework-intro,
    .framework-section,
    .framework-layer,
    .framework-conclusion {
        padding: 30px 25px;
    }
    
    .framework-intro h3,
    .framework-section h3,
    .framework-layer h4 {
        font-size: 22px;
    }
    
    .framework-intro p,
    .framework-section p,
    .framework-layer p,
    .framework-conclusion p {
        font-size: 16px;
        text-align: left;
    }
    
    .values-dispositions {
        grid-template-columns: 1fr;
    }
    
    .framework-list li {
        padding: 15px 15px 15px 55px;
        font-size: 16px;
    }
    
    /* LEAD Grid - 2 kolom untuk tablet */
    .lead-grid-intro {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    .lang-switcher {
        right: 60px;
        padding: 5px 10px;
    }

    .lang-btn {
        padding: 3px 6px;
        font-size: 12px;
    }

    .logo-text h1 {
        font-size: 12px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .nav-container {
        min-height: 60px;
    }

    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    /* History Gallery */
    .history-gallery {
        grid-template-columns: 1fr;
    }

    /* Framework very small screens */
    .framework-image-container {
        padding: 20px;
        margin: 20px auto;
    }
    
    .framework-intro,
    .framework-section,
    .framework-layer,
    .framework-conclusion {
        padding: 25px 20px;
    }
    
    .disposition-group {
        padding: 20px;
    }
    
    .framework-intro h3,
    .framework-section h3 {
        font-size: 20px;
    }
    
    .framework-layer h4 {
        font-size: 19px;
    }
    
    /* LEAD Grid - 1 kolom untuk mobile kecil */
    .lead-grid-intro {
        grid-template-columns: 1fr;
    }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu {
        max-height: calc(100vh - 60px);
        padding: 10px;
    }

    .nav-menu li {
        margin: 5px 0;
    }

    .nav-menu a {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* ============================================
   ABOUT PAGE - SUBMENU & CONTENT SECTIONS
   Add this to the end of style.css
   ============================================ */

/* Submenu Navigation */
.submenu-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: -20px;
}

.submenu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.submenu-container::-webkit-scrollbar {
    display: none;
}

.submenu-item {
    padding: 20px 35px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    text-align: center;
    flex: 1 1 auto;
    min-width: fit-content;
}

.submenu-item:hover {
    color: var(--primary);
    background: var(--light);
}

.submenu-item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--light);
}

/* Content Sections */
.content-section {
    display: none;
    padding: 80px 20px;
    animation: fadeIn 0.5s;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video History Container */
.history-video-container {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.history-video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    object-fit: cover;
    object-position: center center;
}

/* Timeline for History Section */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0.3;
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

/* Timeline Image - NEW */
.timeline-item:nth-child(odd) .timeline-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: auto;
}

.timeline-item:nth-child(even) .timeline-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: auto;
}

.timeline-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--light);
    z-index: 1;
}

.timeline-content {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.timeline-content p {
    line-height: 1.8;
    color: var(--dark);
}

/* Team Grid - 3 columns for desktop, 1 for mobile */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.team-role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
}

/* Responsive - About Page Submenu */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px;
    }

    .submenu-container {
        justify-content: flex-start;
    }

    .submenu-item {
        padding: 15px 20px;
        font-size: 14px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .history-video-container {
        margin-bottom: 30px;
    }

    /* Timeline mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }

    /* Timeline Image Mobile */
    .timeline-item:nth-child(odd) .timeline-image,
    .timeline-item:nth-child(even) .timeline-image {
        position: relative;
        width: 100%;
        margin-bottom: 15px;
        left: 0;
        right: 0;
    }

    .timeline-image img {
        height: 200px;
    }

    /* Team grid - 1 column on mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* Logo & Mars Section */
.logo-section {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.logo-container {
    text-align: center;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 400px;
}

.logo-container .sph-logo {
    max-width: 150px !important;
    width: 150px !important;
    height: auto !important;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.logo-explanation {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo-explanation p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark);
    text-align: justify;
}

.mars-section {
    max-width: 1000px;
    margin: 0 auto;
}

.mars-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.mars-lyrics {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark);
}

.mars-lyrics p {
    margin-bottom: 20px;
}

.mars-section-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.mars-section-title:first-child {
    margin-top: 0;
}

.mars-lyrics strong {
    color: var(--primary);
    font-weight: 800;
}

/* Responsive - Logo & Mars */
@media (max-width: 768px) {
    .logo-container {
        padding: 30px 20px;
        max-width: 300px;
    }

    .logo-container .sph-logo {
        max-width: 120px !important;
        width: 120px !important;
    }

    .logo-explanation {
        padding: 30px 25px;
    }

    .logo-explanation p {
        font-size: 16px;
        text-align: left;
    }

    .mars-content {
        padding: 30px 25px;
    }

    .mars-lyrics {
        font-size: 15px;
    }
}


/* ============================================
   JOIN US PAGE - CAREER SECTION
   Add this to the end of style.css
   ============================================ */

/* Career Intro */
.career-intro {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.career-intro h3 {
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.career-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark);
    text-align: justify;
}

/* Career Notice */
.career-notice {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 30px 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.career-notice p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin: 0;
}

/* Career Apply Steps */
.career-apply {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.apply-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 25px;
    align-items: start;
}

.apply-number {
    background: var(--secondary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.apply-content h4 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.apply-content p {
    line-height: 1.8;
    color: var(--dark);
}

.apply-content ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.apply-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.apply-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Career Contact */
.career-contact {
    max-width: 1000px;
    margin: 60px auto 0;
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.career-contact h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.career-contact p {
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive - Career Section */
@media (max-width: 768px) {
    .career-intro,
    .career-notice {
        padding: 25px 20px;
    }

    .career-intro h3 {
        font-size: 22px;
    }

    .career-intro p,
    .career-notice p {
        font-size: 15px;
        text-align: left;
    }

    .apply-step {
        flex-direction: column;
        padding: 25px 20px;
    }

    .apply-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .apply-content h4 {
        font-size: 18px;
    }

    .career-contact {
        padding: 30px 20px;
    }

    .career-contact h3 {
        font-size: 22px;
    }

    .career-contact p {
        font-size: 16px;
    }
}

/* Career Flyer Image */
.career-flyer {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: var(--light);
}

.career-flyer img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive - Career Flyer */
@media (max-width: 768px) {
    .career-flyer {
        border-radius: 15px;
        margin: 0 auto;
    }

    .career-flyer img {
        border-radius: 0;
    }
}


/* ============================
   Curriculum Section
   ============================ */
.curriculum-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.curriculum-text {
    flex: 1 1 60%;
}

.curriculum-text h3 {
    margin-bottom: 20px;
}

.curriculum-text p {
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text);
    text-align: justify; /* Sama seperti section lain */
}

.curriculum-image {
    flex: 1 1 30%;
    text-align: center;
}

.curriculum-image img {
    width: 80%;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

/* Pastikan tombol sama dengan event section */
.curriculum-button {
    margin-top: 25px;
}

.curriculum-button .btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.curriculum-button .btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .curriculum-box {
        flex-direction: column;
        text-align: center;
    }

    .curriculum-text {
        flex: 1 1 100%;
    }

    .curriculum-image {
        flex: 1 1 100%;
        margin-top: 20px;
    }

    .curriculum-image img {
        width: 70%;
        max-width: 200px;
    }

    .curriculum-text p {
        text-align: center; /* rapi di mobile */
    }
}


/* ============================
   History Section (Home Preview)
   ============================ */
.history-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.history-text {
    flex: 1 1 60%;
}

.history-text h3 {
    margin-bottom: 20px;
}

.history-text p {
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text);
    text-align: justify;
}

.history-image {
    flex: 1 1 30%;
    text-align: center;
}

.history-image img {
    width: 80%;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.history-button {
    margin-top: 25px;
}

.history-button .btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.history-button .btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .history-box {
        flex-direction: column;
        text-align: center;
    }

    .history-text {
        flex: 1 1 100%;
    }

    .history-image {
        flex: 1 1 100%;
        margin-top: 20px;
    }

    .history-image img {
        width: 70%;
        max-width: 200px;
    }

    .history-text p {
        text-align: center;
    }
}


/* ============================================
   TESTIMONIALS SECTION
   Tambahkan CSS ini ke bagian akhir file style.css
   ============================================ */

.testimonial-section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-quote {
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light);
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.author-role {
    color: var(--gray);
    font-size: 14px;
}

/* Responsive - Testimonials */
@media (max-width: 768px) {
    .testimonial-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 60px;
        top: 10px;
        left: 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-photo {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .author-name {
        font-size: 16px;
    }
}



/* ============================================
   INDEX ENHANCED STYLES
   Tambahkan CSS ini ke bagian akhir file style.css
   ============================================ */

/* Enhanced Stats Section */
.stats-enhanced {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.stats-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-container-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card-enhanced {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.stat-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-card-enhanced .stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card-enhanced .stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 600;
}

.stat-sublabel {
    font-size: 13px;
    color: var(--gray);
    margin-top: 5px;
    opacity: 0.8;
}

/* Section Header Enhanced */
.section-header-enhanced {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.section-title-enhanced {
    font-size: 42px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Vision Mission Enhanced */
.vm-section-enhanced {
    padding: 80px 20px;
    background: white;
}

.vm-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card-enhanced {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 50px 40px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-left: 6px solid var(--primary);
}

.vm-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.vm-card-enhanced::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    border-radius: 50%;
}

.vm-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.vm-card-enhanced h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
}

.vm-card-enhanced p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark);
    position: relative;
}

/* Values Enhanced */
.values-enhanced {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.values-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.values-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card-enhanced {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.value-card-enhanced:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.value-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.value-card-enhanced h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card-enhanced p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Events Section Enhanced */
.events-section-enhanced {
    padding: 80px 20px;
    background: var(--light);
}

.featured-events-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card-home {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.event-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.event-image-home {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.event-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card-home:hover .event-image-home img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.date-day {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.date-month {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 3px;
}

.event-content-home {
    padding: 30px;
}

.event-content-home h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.event-content-home p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.event-card-home:hover .read-more {
    transform: translateX(5px);
}

/* Curriculum Section Enhanced */
.curriculum-section-enhanced {
    padding: 80px 20px;
    background: white;
}

.curriculum-box-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.curriculum-image-enhanced {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.curriculum-image-enhanced img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.curriculum-image-enhanced:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.overlay-badge {
    background: rgba(30, 58, 138, 0.95);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.curriculum-text-enhanced {
    padding: 20px 0;
}

.lead-acronym {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary);
}

.lead-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.lead-letter {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.lead-word {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.curriculum-text-enhanced p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 30px;
}

/* History Section Enhanced */
.history-section-enhanced {
    padding: 80px 20px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.history-box-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.history-image-enhanced {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.history-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.history-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.badge-icon {
    font-size: 40px;
}

.badge-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.badge-subtitle {
    font-size: 14px;
    color: var(--gray);
}

.history-text-enhanced {
    padding: 20px 0;
}

.timeline-dot-large {
    font-size: 48px;
    margin-bottom: 20px;
}

.history-text-enhanced h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.history-text-enhanced p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 30px;
}

.history-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.history-stat-item {
    flex: 1;
    text-align: center;
}

.stat-year {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: var(--gray);
}

/* Testimonials Section Enhanced */
.testimonials-section-enhanced {
    padding: 80px 20px;
    background: white;
}

.testimonials-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-home {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.testimonial-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.testimonial-type {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.alumni-badge {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.parent-badge {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
}

.testimonial-quote-mark {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-text-home {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark);
    margin: 20px 0 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author-home {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.author-name-home {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-info-home {
    font-size: 13px;
    color: var(--gray);
}

/* Enhanced Buttons */
.btn-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-enhanced-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-enhanced-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-enhanced:hover .btn-arrow,
.btn-enhanced-outline:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title-enhanced {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .vm-grid-enhanced,
    .curriculum-box-enhanced,
    .history-box-enhanced {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-image-enhanced img {
        min-height: 350px;
    }

    .history-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-card-enhanced .stat-number {
        font-size: 48px;
    }

    .vm-card-enhanced,
    .curriculum-text-enhanced,
    .history-text-enhanced {
        padding: 30px 25px;
    }

    .lead-acronym {
        padding: 20px;
    }

    .lead-letter {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .lead-word {
        font-size: 16px;
    }

    .testimonials-grid-home {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   TESTIMONIALS SECTION
   Tambahkan CSS ini ke bagian akhir file style.css
   ============================================ */

.testimonial-section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-quote {
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light);
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    overflow: hidden;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.author-role {
    color: var(--gray);
    font-size: 14px;
}

/* Responsive - Testimonials */
@media (max-width: 768px) {
    .testimonial-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 60px;
        top: 10px;
        left: 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-photo {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .author-name {
        font-size: 16px;
    }
}


/* ============================================
   INDEX ENHANCED STYLES
   Tambahkan CSS ini ke bagian akhir file style.css
   ============================================ */

/* Enhanced Stats Section */
.stats-enhanced {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.stats-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-container-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card-enhanced {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.stat-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-card-enhanced .stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card-enhanced .stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 600;
}

.stat-sublabel {
    font-size: 13px;
    color: var(--gray);
    margin-top: 5px;
    opacity: 0.8;
}

/* Section Header Enhanced */
.section-header-enhanced {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.section-title-enhanced {
    font-size: 42px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Vision Mission Enhanced */
.vm-section-enhanced {
    padding: 80px 20px;
    background: white;
}

.vm-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card-enhanced {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 50px 40px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-left: 6px solid var(--primary);
}

.vm-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.vm-card-enhanced::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    border-radius: 50%;
}

.vm-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.vm-card-enhanced h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
}

.vm-card-enhanced p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark);
    position: relative;
}

/* Values Enhanced */
.values-enhanced {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.values-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.values-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card-enhanced {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.value-card-enhanced:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.value-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.value-card-enhanced h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card-enhanced p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Events Section Enhanced */
.events-section-enhanced {
    padding: 80px 20px;
    background: var(--light);
}

.featured-events-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card-home {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.event-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.event-image-home {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.event-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card-home:hover .event-image-home img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.date-day {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.date-month {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 3px;
}

.event-content-home {
    padding: 30px;
}

.event-content-home h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.event-content-home p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.event-card-home:hover .read-more {
    transform: translateX(5px);
}

/* Curriculum Section Enhanced */
.curriculum-section-enhanced {
    padding: 80px 20px;
    background: white;
}

.curriculum-box-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.curriculum-image-enhanced {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.curriculum-image-enhanced img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.curriculum-image-enhanced:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.overlay-badge {
    background: rgba(30, 58, 138, 0.95);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.curriculum-text-enhanced {
    padding: 20px 0;
}

.lead-acronym {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary);
}

.lead-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.lead-letter {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.lead-word {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.curriculum-text-enhanced p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 30px;
}

/* History Section Enhanced */
.history-section-enhanced {
    padding: 80px 20px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.history-box-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.history-image-enhanced {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.history-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.history-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.badge-icon {
    font-size: 40px;
}

.badge-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.badge-subtitle {
    font-size: 14px;
    color: var(--gray);
}

.history-text-enhanced {
    padding: 20px 0;
}

.timeline-dot-large {
    font-size: 48px;
    margin-bottom: 20px;
}

.history-text-enhanced h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.history-text-enhanced p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 30px;
}

.history-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.history-stat-item {
    flex: 1;
    text-align: center;
}

.stat-year {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: var(--gray);
}

/* Testimonials Section Enhanced */
.testimonials-section-enhanced {
    padding: 80px 20px;
    background: white;
}

.testimonials-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-home {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.testimonial-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.testimonial-type {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.alumni-badge {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.parent-badge {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
}

.testimonial-quote-mark {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-text-home {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark);
    margin: 20px 0 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author-home {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name-home {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-info-home {
    font-size: 13px;
    color: var(--gray);
}

/* Enhanced Buttons */
.btn-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-enhanced-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-enhanced-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-enhanced:hover .btn-arrow,
.btn-enhanced-outline:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title-enhanced {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .vm-grid-enhanced,
    .curriculum-box-enhanced,
    .history-box-enhanced {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-image-enhanced img {
        min-height: 350px;
    }

    .history-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-card-enhanced .stat-number {
        font-size: 48px;
    }

    .vm-card-enhanced,
    .curriculum-text-enhanced,
    .history-text-enhanced {
        padding: 30px 25px;
    }

    .lead-acronym {
        padding: 20px;
    }

    .lead-letter {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .lead-word {
        font-size: 16px;
    }

    .testimonials-grid-home {
        grid-template-columns: 1fr;
    }
}