/*
Theme Name: FAA Lightweight Pro
Version: 1.0.1 (Update Performa & Tampilan)
*/

/* --- GLOBAL STYLES & RESET --- */
:root {
    --primary-color: #003366; /* Biru Navy Profesional */
    --accent-color: #e6b800;  /* Emas Mewah */
    --accent-color-hover: #d1a800;
    --text-dark: #222222;
    --text-light: #666666;
    --bg-light: #f4f7f9;
    --white: #ffffff;
    --box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-top: 0;
    line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }

/* Container Standard */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
.section { padding: 80px 0; }
.section-light { background-color: var(--bg-light); }

/* Buttons & CTA */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 184, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 184, 0, 0.5);
}

/* --- HEADER REFINEMENT --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.site-title a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Mengatur Lebar Maksimal Logo */
.site-branding img {
    max-width: 165px; /* Sesuaikan angka ini (misal: 200px - 300px) */
    height: auto;     /* Menjaga rasio agar tidak gepeng */
    display: block;
    transition: all 0.3s ease;
}

/* Penyesuaian Logo untuk Layar HP (Mobile) */
@media (max-width: 768px) {
    .site-branding img {
        max-width: 180px; /* Lebih kecil di HP agar menu tidak turun */
    }
}

/* Menu Navigasi Horizontal */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 20px;
}

.main-navigation li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-navigation li a:hover {
    color: var(--primary-color);
}

/* Tombol Daftar Kecil di Navigasi */
.btn-nav-regis {
    background-color: var(--accent-color);
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 15px;
    transition: background 0.3s;
}

.btn-nav-regis:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* Responsive Mobile */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .btn-nav-regis {
        margin: 10px 0 0 0;
        display: block;
    }
}

/* --- HERO SECTION STYLING --- */
.hero-home {
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
    background-size: cover;
    color: var(--white);
    padding: 120px 0 100px;
}
/* Tambahkan efek aksen cahaya di pojok agar tidak flat */
.hero-home::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(102, 166, 255, 0.1);
    filter: blur(80px);
    border-radius: 50%;
}
.hero-home .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content { flex: 1; min-width: 300px; }
.hero-image { flex: 1; min-width: 300px; text-align: center; }

/* Fix untuk Gambar Hero agar Bulat Sempurna (Khusus bagian depan) */
.hero-image img {
    border-radius: 50% !important; /* Membuat bulat */
    width: 400px;
    height: 400px;
    object-fit: cover; /* Menjaga foto tidak gepeng */
    border: 10px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* --- SERVICE CARD STYLING --- */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: -60px; /* Membuat card menumpuk di atas hero */
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-card h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}

.service-card p {
    text-align: left;
}

/* --- SINGLE POST & PAGE STYLING --- */

/* Membatasi lebar konten agar mudah dibaca (Readability) */
.single .site-main, .page .site-main {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 20px;
}

/* Judul Artikel */
.entry-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Meta Data (Tanggal/Kategori) */
.entry-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* Isi Konten (Tipografi Utama) */
.entry-content {
    padding: 20px;
}
.entry-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.entry-content h2 { margin-top: 40px; color: var(--primary-color); }
.entry-content h3 { margin-top: 30px; }

/* Styling Gambar di dalam Artikel */
.entry-content img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 20px 0;
}

/* Featured Image di atas artikel */
.single-post-thumbnail {
    margin-bottom: 40px;
    padding: 20px;
}
.single-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Blockquote (Kutipan) */
blockquote {
    border-left: 5px solid var(--accent-color);
    padding: 20px;
    background: var(--bg-light);
    font-style: italic;
    margin: 30px 0;
}

/* --- FOOTER STYLING --- */
.site-footer {
    background: #001a33;
    color: #eee;
    padding: 60px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #eee; text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-color); }

.site-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Styling List Berita / Archive */
.archive-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.type-post {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

.type-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.entry-header { padding: 20px; }
.entry-title a { text-decoration: none; color: var(--primary-color); }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .hero-home { padding: 100px 0 80px; text-align: center; }
    .hero-home .container { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-image img {
        width: 250px;
        height: 250px;
    }
}

/* --- PROGRAM STUDI SECTION --- */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    align-items: stretch;
}

/* Kolom Pertama (Judul) */
.program-intro {
    background: linear-gradient(135deg, #66a6ff 0%, #89f7fe 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 166, 255, 0.3);
    margin-top: -60px;
}

.program-intro .sub-title { font-weight: bold; letter-spacing: 2px; margin-bottom: 10px; opacity: 0.9; }
.program-intro .main-title { color: white; font-size: 2.2rem; margin: 0; }

/* Styling Card */
.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-top: -60px;
}

.program-card:hover { transform: translateY(-10px); }

/* Bagian Gambar & Shape */
.card-image {
    position: relative;
    padding: 30px 20px 0;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    position: relative;
    z-index: 2;
    max-height: 100%;
    width: auto;
}

/* Background Bulat Warna-warni */
.shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -20px;
    z-index: 1;
}
.shape-red { background: rgba(255, 71, 87, 0.15); }
.shape-orange { background: rgba(255, 165, 2, 0.15); }
.shape-blue { background: rgba(30, 144, 255, 0.15); }

/* Bagian Teks Card */
.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- ADMIN PENDAFTARAN SECTION --- */
.admin-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 0;
}

.admin-image, .admin-info {
    flex: 1;
    min-width: 300px;
}

/* Styling Gambar & Background Pattern */
.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    border-radius: 30px; /* Opsional: sesuaikan dengan gambar Anda */
}

.dot-pattern {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#d1d1d1 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
}

/* Typography Admin */
.admin-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.admin-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.admin-title .highlight {
    color: #66a6ff; /* Biru muda sesuai gambar */
}

.admin-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.text-blue { color: #66a6ff; font-weight: 600; }

.admin-phone {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Tombol WA dengan Gradasi */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(to right, #128C7E, #25D366);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.btn-wa:hover {
    transform: translateY(-5px);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-flex { text-align: center; gap: 40px; }
    .admin-title { font-size: 2.2rem; }
    .dot-pattern { display: none; }
}

/* --- CARA PEMBAYARAN SECTION --- */
.payment-header {
    margin-bottom: 40px;
}

.payment-header .sub-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-header .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.text-cyan { color: #00bcd4; font-weight: 600; }

/* Styling Box Rekening */
.payment-box {
    background-color: #f0faff; /* Biru sangat muda sesuai gambar */
    border-radius: 10px;
    padding: 40px;
    border-left: 5px solid #66a6ff;
}

.payment-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bank-visual {
    flex: 1;
    min-width: 300px;
}

.bank-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.bank-instruction {
    flex: 2;
    min-width: 300px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.bank-instruction strong {
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-header { text-align: center; }
    .payment-flex { text-align: center; gap: 20px; }
    .payment-box { padding: 25px; }
}

/* --- SYARAT & FASILITAS --- */
.section-padding { padding: 80px 0; }

.section-header-alt { margin-bottom: 50px; }
.title-line { width: 50px; height: 3px; background: #eee; margin: 20px 0; border: none; }

.flex-row { display: flex; gap: 50px; flex-wrap: wrap; }
.col-syarat, .col-fasilitas { flex: 1; min-width: 320px; }

/* Checklist Styling */
.check-list { list-style: none; padding: 0; margin-top: 20px; }
.check-list li { 
    position: relative; 
    padding-left: 30px; 
    margin-bottom: 12px; 
    font-size: 0.95rem; 
}
.check-list li::before { 
    content: "✔"; 
    position: absolute; 
    left: 0; 
    color: #2ecc71; 
    font-weight: bold; 
}

/* Tabel PSPP Modern */
.table-responsive { overflow-x: auto; margin-top: 30px; }
.table-pspp { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table-pspp th { 
    background: #003366; 
    color: #fff; 
    padding: 15px; 
    text-align: left; 
    border: 1px solid #ddd;
}
.table-pspp td { padding: 12px; border: 1px solid #eee; }
.table-pspp tr:nth-child(even) { background: #f9f9f9; }

/* Status Warna Tabel */
.table-pspp td.yes { color: #2ecc71; font-weight: bold; text-align: center; }
.table-pspp td.no { color: #e74c3c; font-weight: bold; text-align: center; }

/* --- FAQ STYLING --- */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item summary {
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Hilangkan tanda panah bawaan browser */
    position: relative;
    padding-left: 30px;
    color: #333;
}

/* Custom Ikon + dan - */
.faq-item summary::before {
    content: "+";
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: #444;
}

.faq-item[open] summary::before {
    content: "−";
}

.faq-item summary:hover {
    color: var(--primary-color);
}

.faq-content {
    padding: 0 0 20px 30px;
    line-height: 1.7;
    color: #666;
    font-size: 1rem;
    animation: fadeIn 0.4s ease;
}

/* Animasi halus saat teks muncul */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Warna Cyan sesuai gambar */
.text-cyan {
    color: #00bcd4;
}

/* --- BIAYA PENDIDIKAN STYLING --- */
.biaya-pendidikan {
    background-color: #f2f8ff; /* Biru sangat muda */
    background-image: radial-gradient(#e1efff 1px, transparent 1px);
    background-size: 30px 30px; /* Efek titik-titik halus di background */
    padding: 100px 0;
}
.biaya-group {
    margin-bottom: 60px;
}

.group-title {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
    font-weight: 700;
}

.biaya-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Mengatur agar grid internasional rapi di tengah jika hanya ada 2 item */
.grid-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Card Styling dengan Efek Glassmorphism */
.biaya-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.biaya-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 166, 255, 0.2);
}

/* Variasi Warna Card Reguler */
.card-reguler {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

/* Variasi Warna Card Internasional */
.card-intl {
    background: linear-gradient(135deg, #f5f0ff 0%, #ffffff 100%);
    border-top: 4px solid #66a6ff; /* Aksen warna pembeda */
}

.biaya-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.label-biaya {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.biaya-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4d8dfb; /* Biru cerah sesuai screenshot */
    letter-spacing: -0.5px;
}

/* Penyesuaian Mobile */
@media (max-width: 768px) {
    .biaya-card { padding: 30px 20px; }
    .biaya-card .price { font-size: 1.5rem; }
}

/* --- FOOTER & CTA STYLING --- */

/* CTA Banner Gabung Sekarang */
.cta-banner {
    padding: 60px 0;
    margin-top: 50px;
}

.cta-box {
    background: linear-gradient(135deg, #66a6ff 0%, #89f7fe 100%);
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.btn-daftar-footer {
    display: inline-block;
    padding: 15px 50px;
    background: #ffcc00;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.btn-daftar-footer:hover {
    transform: scale(1.05);
    background: #ffd633;
}

/* Main Footer */
.site-footer {
    background: #cce2ff;
    padding: 80px 0 0;
    border-top: 1px solid #f0f0f0;
    color: #666;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.about-col {
    flex: 1.5;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-line {
    width: 30px;
    height: 2px;
    background: #66a6ff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #66a6ff;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid #f9f9f9;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }
    .footer-line {
        margin: 0 auto 20px;
    }
    .cta-box h2 {
        font-size: 1.8rem;
    }
}