/* ============================================= */
/* STYLE 2 - YAYASAN PENDIDIKAN AVIASI SUMATERA  */
/* Versi Update - Dengan Perbaikan Icon & Video  */
/* ============================================= */

:root {
    --primary-navy: #0a1f44;
    --primary-dark-navy: #05122b;
    --primary-light-navy: #1e3a6b;
    
    --accent-gold: #c9a227;
    --accent-light-gold: #e0b845;
    --accent-dark-gold: #a87f1f;
    
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #edf2f7;
    --medium-gray: #cbd5e0;
    --dark-gray: #2d3748;
    --text-dark: #1a202c;
    --text-muted: #4a5568;
    --text-light: #f7fafc;
    
    --success: #2f855a;
    --warning: #dd6b20;
    --danger: #c53030;
    --info: #3182ce;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 999px;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
}

.container {
    max-width: 1280px;
    padding: 0 24px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 8px;
    background: rgba(201, 162, 39, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-header.text-left .section-title:after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-gold { color: var(--accent-gold); }
.text-white { color: var(--white); }
.bg-light { background-color: var(--light-gray); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.btn-outline-primary:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ===== LOADING INDICATOR ===== */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-indicator.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NOTIFICATION MINI ===== */
.notification-mini {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--white);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--success);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification-mini.show {
    transform: translateX(0);
}

.notification-mini i {
    font-size: 1.2rem;
}

.notification-mini.notification-success { border-left-color: var(--success); }
.notification-mini.notification-success i { color: var(--success); }

.notification-mini.notification-error { border-left-color: var(--danger); }
.notification-mini.notification-error i { color: var(--danger); }

.notification-mini.notification-warning { border-left-color: var(--warning); }
.notification-mini.notification-warning i { color: var(--warning); }

.notification-mini.notification-info { border-left-color: var(--info); }
.notification-mini.notification-info i { color: var(--info); }

/* ===== CUSTOM LOGO - PERBAIKAN ===== */
.logo-iconpenso {
    width: 45px;
    height: 45px;
    background: var(--primary-navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.logo-iconpenso img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

/* ===== HEADER - PERBAIKAN ICON ===== */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, background 0.3s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-toggle {
    width: 40px;
    height: 40px;
    background: var(--primary-navy);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.header-toggle i {
    color: var(--white);
    font-size: 1.1rem;
}

.header-toggle:hover {
    background: var(--accent-gold);
}

.header-toggle:hover i {
    color: var(--primary-navy);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.brand-text h1 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

.brand-text p {
    font-size: 0.7rem;
    margin: 0;
    color: var(--text-muted);
}

/* Perbaikan header actions */
.header-actions {
    display: flex;
    gap: 8px;
}

.btn-search {
    width: 40px;
    height: 40px;
    background: var(--primary-navy);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.btn-search i {
    color: var(--white);
    font-size: 1.1rem;
}

.btn-search:hover {
    background: var(--accent-gold);
}

.btn-search:hover i {
    color: var(--primary-navy);
}

.btn-partner-header {
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-partner-header i,
.btn-partner-header span {
    color: var(--primary-navy);
}

.btn-partner-header:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-partner-header:hover i,
.btn-partner-header:hover span {
    color: var(--white);
}

/* ===== HERO VIDEO BACKGROUND - PERBAIKAN ===== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

#youtube-player {
    position: absolute;
    pointer-events: none;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,31,68,0.85) 0%, rgba(5,18,43,0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--white);
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-bottom: 20px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero {
    padding: 14px 30px;
    font-size: 1rem;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--primary-navy);
}

.btn-hero-primary:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 700px;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}

.scroll-down {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
}

.scroll-down:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(3px);
}

.min-vh-90 { min-height: 90vh; }

/* Tombol video - perbaikan */
.video-control-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(10,31,68,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.video-control-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    transform: scale(1.1);
}

/* Fallback slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* ===== SIDEBAR ===== */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
    z-index: 1099;
    display: none;
}

.sidebar-overlay.active { display: block; }

.sidebar {
    position: fixed;
    left: -320px;
    top: 0;
    bottom: 0;
    width: 300px;
    background: var(--white);
    z-index: 1100;
    box-shadow: var(--shadow-xl);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--light-gray);
}

.sidebar.active { left: 0; }

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--off-white);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-navy);
}

.sidebar-logo h3 { font-size: 1.2rem; margin: 0; }

.sidebar-close {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.sidebar-profile {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.profile-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-navy);
    overflow: hidden;
}

.profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h4 { font-size: 1rem; margin-bottom: 4px; }
.profile-info p { font-size: 0.75rem; color: var(--text-muted); }

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: 0.2s;
    font-size: 0.9rem;
}

.sidebar-link:hover {
    background: var(--light-gray);
    color: var(--primary-navy);
}

.sidebar-link.active {
    background: var(--primary-navy);
    color: var(--white);
}

.has-submenu .submenu-icon {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.has-submenu.active .submenu-icon {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding-left: 45px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submenu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.submenu-link:hover {
    background: var(--light-gray);
    color: var(--primary-navy);
    padding-left: 20px;
}

.submenu-link i { width: 18px; color: var(--accent-gold); }

.sidebar-footer {
    padding: 15px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
    background: var(--off-white);
}

.footer-social-mini {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-social-mini a {
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    transition: 0.2s;
}

.footer-social-mini a:hover {
    background: var(--accent-gold);
    color: var(--white);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,31,68,0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 70px 20px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: var(--shadow-xl);
}

.search-close {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
}

.search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-navy);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: 0.2s;
}

.search-submit:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

/* ===== SEJARAH SECTION ===== */
.sejarah-content .lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.5;
}

.legal-badge .legal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.legal-item i { color: var(--accent-gold); }

.sejarah-image {
    position: relative;
}

.sejarah-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.image-caption {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* ===== VISI MISI ===== */
.visi-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark-navy));
    color: var(--white);
}

.visi-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 40px;
}

.visi-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.visi-text {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
}

.misi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.misi-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 25px;
    position: relative;
    transition: 0.3s;
}

.misi-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.misi-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
}

.misi-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.misi-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== PROGRAM HIGHLIGHT (BOOTCAMP, SEMINAR, KURSUS) ===== */
.program-highlight {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-light-navy));
    color: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.program-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10,31,68,0.3);
}

.program-highlight i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.program-highlight h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.program-highlight p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.program-highlight .program-date {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ===== PROGRAM CARDS ===== */
.program-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.program-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.program-icon-large {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.program-card-modern h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.partner {
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.program-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.program-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* ===== PENDIDIKAN INFORMAL CARDS ===== */
.informal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: 0.3s;
    height: 100%;
}

.informal-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.informal-card i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.informal-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.informal-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.informal-card .card-footer {
    background: var(--light-gray);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 500;
}

/* ===== MITRA PENSO CARD ===== */
.mitra-penso-card {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-light-navy));
    color: white;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mitra-penso-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.mitra-penso-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.mitra-penso-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mitra-penso-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.mitra-penso-card p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.mitra-penso-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.mitra-logo-item {
    text-align: center;
}

.mitra-logo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--accent-gold);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.mitra-logo-item:hover .mitra-logo-icon {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.2);
}

.mitra-logo-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.mitra-logo-item span {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

/* ===== DOKUMENTASI PENSO ===== */
.dokumentasi-penso {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(201,162,39,0.1);
}

.penso-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.penso-stat-item {
    text-align: center;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    min-width: 80px;
}

.penso-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.penso-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ===== TIM PREMIUM ===== */
.tim-elegant-section {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.team-card-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.team-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 40px rgba(10,31,68,0.2);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.team-image {
    width: 100%;
    height: 100%;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-card-premium:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(to top, rgba(10,31,68,0.9), transparent);
    transition: bottom 0.4s ease;
}

.team-card-premium:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 1rem;
    transition: 0.3s;
}

.team-social a:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
}

.team-position {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.badge-team-large {
    display: inline-block;
    background: rgba(201,162,39,0.1);
    color: var(--primary-navy);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(201,162,39,0.3);
}

/* ===== GALLERY STYLES ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10,31,68,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.gallery-info p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.8rem;
}

/* Swiper Gallery */
.swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.swiper-caption h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.swiper-caption p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-gold);
    width: 25px;
    border-radius: 5px;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent-gold);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem;
}

/* ===== NEWS CARDS ===== */
.news-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.news-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px rgba(10,31,68,0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-modern:hover .news-image img {
    transform: scale(1.05);
}

.news-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10,31,68,0.9);
    color: white;
    padding: 10px 12px;
    border-radius: 12px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.news-date-badge .day {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.news-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.news-content {
    padding: 20px;
}

.news-category {
    display: inline-block;
    background: rgba(201,162,39,0.1);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
}

.news-title a {
    color: var(--primary-navy);
    text-decoration: none;
}

.news-title a:hover {
    color: var(--accent-gold);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.news-read-more {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-read-more:hover {
    color: var(--accent-gold);
    gap: 8px;
}

.news-views {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* ===== KEGIATAN CARDS ===== */
.kegiatan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    display: flex;
    height: 100%;
    transition: 0.3s;
}

.kegiatan-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.kegiatan-date {
    background: var(--primary-navy);
    color: var(--white);
    padding: 15px 10px;
    text-align: center;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kegiatan-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.kegiatan-date .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.kegiatan-content {
    padding: 15px;
    flex: 1;
}

.kegiatan-content h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.kegiatan-loc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.kegiatan-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.kegiatan-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kegiatan-meta span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.status-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.status-badge.selesai {
    background: #e6f7e6;
    color: var(--success);
}

.status-badge.upcoming {
    background: #fff3e0;
    color: var(--warning);
}

/* ===== KONTAK MODERN ===== */
.kontak-modern {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.kontak-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.kontak-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(201,162,39,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.kontak-info-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
}

.kontak-info-text p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.kontak-info-text a {
    color: var(--primary-navy);
    text-decoration: none;
}

.kontak-info-text a:hover {
    color: var(--accent-gold);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-coord {
    background: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    border: 1px solid var(--light-gray);
}

/* ===== CONTACT FORM ===== */
.contact-form-simple {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark-navy);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 20px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-light-gold));
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-links h5 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 3px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.2s;
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.75rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.75rem;
}

.footer-links-bottom a:hover {
    color: var(--accent-gold);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-navy);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 99;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .misi-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-partner-header span {
        display: none;
    }
    
    .btn-partner-header {
        padding: 8px;
        width: 40px;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .swiper {
        height: 400px;
    }
    
    .mitra-penso-card {
        padding: 30px 20px;
    }
    
    .mitra-penso-logos {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .swiper {
        height: 350px;
    }
    
    .dokumentasi-image img {
        height: 300px;
    }
    
    .dokumentasi-caption h3 {
        font-size: 1.4rem;
    }
    
    .dokumentasi-item {
        margin-bottom: 40px !important;
    }
    
    .mitra-penso-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .kontak-modern {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 100%;
        left: -100%;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .brand-text h1 {
        font-size: 0.9rem;
    }
    
    .brand-text p {
        font-size: 0.6rem;
    }
}