url(main3.css)/**
 * Main Stylesheet - UPA TIK UNTAD
 * Final Optimized & Complete Version
 */

/* 1. CSS VARIABLES & RESET */
:root {
    --primary: #004a99;
    --primary-color: #004a99;
    --primary-dark: #001a33;
    --secondary-color: #ffd700;
    --accent-color: #f39c12;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #f1f5f9;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
li { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

/* ======================================================
    2. HERO SLIDER SYSTEM (Updated Version)
   ====================================================== */
.hero-slider-wrapper {
    position: relative;
    height: 600px; /* Sesuaikan tinggi slider */
    width: 100%;
    overflow: hidden;
    background: #001a38;
    /* margin-top: -125px; */ /* Aktifkan ini HANYA jika ingin slider masuk ke bawah header */
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Overlay & Background Image Logic */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Layer gelap agar teks terbaca jelas */
.hero-slide .hero-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 26, 56, 0.6); /* Gelap 60% */
    z-index: 1;
}

/* Content Animation */
.hero-content {
    max-width: 800px;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
    position: relative;
    z-index: 10;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons inside Hero */
.btn-hero-outline {
    padding: 15px 35px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: 20px;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* Navigasi Panah Slider (Kiri & Kanan) */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 70; 
    backdrop-filter: blur(5px);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

/* 3. NAVIGATION & HEADER (Desktop) */
.site-header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-menu { display: flex; gap: 30px; }
.nav-menu a { font-weight: 600; color: var(--primary-dark); font-size: 15px; }
.nav-menu a:hover { color: var(--accent-color); }

/* Sub-Menu Styling */
.nav-menu li { position: relative; }
.nav-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--accent-color);
}

.nav-menu li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu ul li a { padding: 12px 20px; display: block; border-bottom: 1px solid var(--border-color); }

/* 4. SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active { opacity: 1; visibility: visible; }
.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
}

/* 5. SEARCH RESULTS & CARDS - OPTIMIZED & FINAL FIX */
.search-page-wrapper { 
    padding: 80px 0; 
    background: var(--bg-light); 
    min-height: 70vh; 
}

/* Header Hasil Pencarian */
.search-header {
    margin-bottom: 50px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.search-header .query-text { 
    color: var(--primary-color); 
    font-weight: 800; 
    font-size: 2.2rem;
    font-style: italic;
}

/* Grid System - FIX: Memastikan Grid Terlihat */
.search-results-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex; /* Fallback jika grid bermasalah */
    flex-wrap: wrap;
    display: grid; 
}

/* Card Style */
.search-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex !important; /* Memastikan kartu tampil */
    flex-direction: column;
    transition: var(--transition);
    height: 100%; /* Agar tinggi kartu sama rata */
}

/* Hover Effect */
.search-item:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); 
    border-color: var(--primary-color);
}

/* Thumbnail Styling */
.search-post-thumbnail {
    overflow: hidden;
    height: 220px;
    background-color: #f0f0f0; /* Warna dasar jika gambar loading */
}

.search-post-thumbnail img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.search-item:hover .search-post-thumbnail img {
    transform: scale(1.1); 
}

/* Content Area */
.search-post-content { 
    padding: 25px; 
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.search-post-title { 
    font-size: 1.25rem; 
    font-weight: 700; 
    margin-bottom: 12px; 
    color: var(--primary-dark);
    line-height: 1.4;
}

.search-post-title a {
    color: inherit;
    text-decoration: none;
}

.search-post-title a:hover {
    color: var(--primary-color);
}

/* Meta & Excerpt */
.entry-meta {
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-summary {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Read More Link */
.read-more-link {
    margin-top: auto; 
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.search-item:hover .read-more-link {
    gap: 10px;
}

/* 6. BUTTONS & PAGINATION */
.btn { padding: 14px 28px; border-radius: 8px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: none; }
.btn-primary { background: var(--accent-color); color: var(--white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3); }

.pagination .page-numbers {
    width: 45px; height: 45px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--white); border: 1px solid var(--border-color); border-radius: 8px;
    margin: 0 4px; font-weight: 700;
}
.pagination .page-numbers.current { background: var(--primary-color); color: var(--white); }

/* 7. SEARCH FORM PREMIUM (FIX WARNA TEKS & VISUAL) */
.search-form-premium {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex; 
    align-items: center; 
    background: #ffffff !important; /* Memastikan background tetap putih */
    border: none !important; /* Menghapus border default */
    border-radius: 50px;
    padding: 8px 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

/* Menghilangkan garis bawah kuning saat diklik */
.search-field-modern:focus,
.search-field-modern:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.search-field-modern { 
    flex-grow: 1; 
    border: none !important; 
    padding: 12px 15px !important; 
    font-size: 18px; 
    background: transparent !important; 
    /* SOLUSI UTAMA: Warna teks dibuat gelap agar kontras dengan putih */
    color: #001a33 !important; 
    width: 100%;
}

/* Mengatur warna teks saat sedang mengetik */
.search-field-modern::placeholder {
    color: #94a3b8 !important; /* Warna abu-abu lembut untuk placeholder */
}

.search-button-modern { 
    background: var(--primary-color); 
    color: #ffffff !important; 
    border: none; 
    padding: 12px 25px; 
    border-radius: 50px; 
    font-weight: 700; 
    cursor: pointer;
    transition: var(--transition);
}

.search-button-modern:hover {
    background: var(--accent-color);
}

/* ======================================================
    9. INTERACTIVE CONTACT PAGE (NEW)
   ====================================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #002a54 100%);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.contact-content {
    position: relative;
    z-index: 5;
    margin-top: -60px; /* Overlap effect */
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-15px);
    background: var(--primary-dark);
    color: var(--white) !important;
}

.contact-card .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 74, 153, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.1);
}

.contact-card .card-icon .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--secondary-color);
}

.card-link {
    margin-top: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Form & Info Section */
.contact-bottom-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.interactive-form .floating-group {
    margin-bottom: 20px;
}

.interactive-form input, 
.interactive-form textarea {
    width: 100%;
    padding: 15px;
    background: #f4f7fa;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
}

.interactive-form input:focus, 
.interactive-form textarea:focus {
    background: var(--white);
    border-color: var(--secondary-color);
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Service Hours */
.service-hours li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

/* ======================================================
    10. ANIMATIONS & TOOLS
   ====================================================== */
.reveal-init { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.is-revealed { opacity: 1 !important; transform: translateY(0) !important; }

.back-to-top {
    position: fixed; bottom: 30px; right: 30px; background: var(--primary-color);
    color: var(--white); width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }

/* --- NOTIFIKASI FORM TIKET & NEWSLETTER --- */

/* Container Utama Pesan */
#ticket-response, #newsletter-response {
    margin: 15px 0;
    transition: all 0.3s ease;
}

/* Style Umum untuk Box Notifikasi */
.upa-alert {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 5px solid transparent;
    animation: slideDown 0.4s ease-out;
}

/* Notifikasi Sukses (Hijau Emerald) */
.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border-color: #10b981;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.1);
}

/* Notifikasi Error (Merah Rose) */
.alert-error {
    background-color: #fff1f2;
    color: #9f1239;
    border-color: #f43f5e;
    box-shadow: 0 4px 6px -1px rgba(244, 63, 94, 0.1);
}

/* Notifikasi Loading (Kuning Amber) */
.alert-loading {
    background-color: #fffbeb;
    color: #92400e;
    border-color: #f59e0b;
}

/* Animasi Muncul */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Penyesuaian Tombol Saat Loading */
button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    filter: grayscale(0.5);
}

/* ==========================================================================
    11. FACULTIES SECTION STYLES
   ========================================================================== */
.faculty-item {
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.faculty-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    cursor: pointer;
}

/* Animasi icon saat card di-hover */
.faculty-item:hover .dashicons {
    color: var(--secondary-color) !important;
    transform: scale(1.1);
}

.fac-icon-wrapper span {
    transition: all 0.3s ease;
}

/* ==========================================================================
    12. FIX HEADER OVERLAP (UPA TIK UNTAD)
    Mencegah konten berita tertutup oleh header Fixed
   ========================================================================== */

/* Menambah jarak atas khusus untuk halaman arsip, blog, dan kategori */
body.archive #primary, 
body.blog #primary, 
body.category #primary,
body.search-results #primary {
    padding-top: 180px !important; /* Memberi ruang agar judul turun dari header */
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Penyesuaian untuk tampilan Mobile agar tidak terlalu jauh jaraknya */
@media (max-width: 768px) {
    body.archive #primary, 
    body.blog #primary, 
    body.category #primary {
        padding-top: 130px !important;
    }
}

/* Memastikan transisi smooth saat halaman dimuat */
.content-area {
    transition: padding-top 0.3s ease;
}

/* ==========================================================================
   13. COMPONENTS: FACULTIES GRID & CONTACT FORM (ADDITIONAL)
   ========================================================================== */

/* --- Icon Fakultas Dinamis --- */
.fac-icon-wrapper {
    width: 75px;
    height: 75px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--primary-color);
}

.faculty-link-wrapper:hover .fac-icon-wrapper {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.fac-icon-wrapper svg {
    width: 32px; 
    height: 32px;
}

/* --- Form Kontak Dinamis --- */
.contact-form-container {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 40px auto;
}

.form-row-custom { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

@media (max-width: 600px) { 
    .form-row-custom { grid-template-columns: 1fr; } 
}

.contact-alert-box { 
    margin-bottom: 15px; 
    padding: 12px; 
    border-radius: 8px; 
    display: none; 
}

.contact-alert-box.success { 
    background: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb; 
    display: block; 
}

.contact-alert-box.error { 
    background: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb; 
    display: block; 
}

/* ======================================================
   14. FOOTER WIDGET STYLING (POLISHED & ELEGANT)
   ====================================================== */

/* 1. Reset & Judul Widget */
.site-footer .footer-column .widget-title, 
.site-footer .footer-column .widgettitle,
.site-footer .footer-title,
.footer-unit-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.site-footer .footer-column .widget-title::after,
.site-footer .footer-column .widgettitle::after,
.site-footer .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #2ecc71; 
    border-radius: 2px;
}

/* 2. Styling Logo */
.site-footer .footer-column img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: none !important;
    opacity: 1;
    transition: all 0.3s ease;
    display: block;
}

.site-footer .footer-column img:hover {
    transform: scale(1.03);
}

/* 3. Teks & Deskripsi Elegan */
.site-footer .footer-column p,
.site-footer .footer-column .textwidget,
.footer-unit-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8 !important; /* Membuat teks bernapas dan elegan */
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* 4. Navigasi Link (Menu Widget) */
.site-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-column ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.site-footer .footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.site-footer .footer-column ul li a:hover {
    color: #2ecc71;
    transform: translateX(5px);
}

/* 5. Khusus Widget Map */
.footer-map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 0;
    margin-bottom: 15px;
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 160px;
    filter: grayscale(20%) contrast(105%); 
}

/* 6. Sosial Media Icons (Efek Melompat) */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials a .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.footer-socials a:hover {
    background: #2ecc71;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Memastikan dashicons terload */
.dashicons {
    font-family: 'dashicons';
}

/* ======================================================
   15. FORCE DISPLAY - PEMAKSAAN TAMPILAN (SEARCH & GRID)
   ====================================================== */

/* 1. Paksa Kontainer Utama Muncul */
#primary, 
#main, 
.site-main, 
.content-area {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important; /* Agar tidak tertutup overlay */
}

/* 2. Paksa Grid Artikel Muncul */
.news-grid, 
.search-results-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    gap: 30px !important;
    min-height: 200px !important;
}

/* 3. Paksa Kartu Artikel Muncul (Menghalau Animasi Gagal) */
.news-card, 
.search-item, 
article {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important; /* Mematikan efek geser/animasi yang macet */
}

/* 4. Pastikan Teks Terlihat (Warna Kontras) */
.page-title, 
.news-card h3 a, 
.search-post-title a {
    color: #004a99 !important; /* Warna biru utama Anda */
    text-decoration: none !important;
}

.excerpt, 
.entry-summary {
    color: #444 !important;
    display: block !important;
}

/* 5. Pastikan Overlay Search Tidak Menutup Konten */
body.search-results #menuOverlay,
body.search-results .search-overlay {
    display: none !important;
}

/* ======================================================
    16. DOWNLOAD PAGE STYLES - UPA TIK UNTAD
   ====================================================== */

.download-content {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.download-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid var(--primary); /* Diubah dari merah ke Biru Utama */
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.download-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 74, 153, 0.08); /* Diubah ke nuansa biru */
    color: var(--primary); /* Diubah ke biru */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.download-icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.download-info h3 {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
}

.download-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Memastikan tombol selalu di bawah walau teks pendek */
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #222;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--accent-color); /* Saat dihover berubah jadi Kuning/Oranye khas UNTAD */
    transform: scale(1.05);
}

.btn-download .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.no-data {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    grid-column: 1 / -1;
    color: #888;
}

/* Penyesuaian Responsif */
@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
    17. SECTION LAYANAN DIGITAL (DESKTOP)
   ====================================================== */
.section-layanan-digital {
    padding: 80px 0;
    background: #f8fafc; /* Warna background soft agar beda dengan section kontak */
    border-top: 1px solid #e2e8f0;
}

.digital-grid {
    display: grid;
    /* Menggunakan auto-fit agar 7 item terbagi rata secara otomatis */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.digital-card {
    display: flex;
    align-items: center;
    padding: 22px; /* Sedikit dirapatkan agar 7 item muat dengan elegan */
    background: #ffffff;
    border-radius: 15px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.digital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.1);
    border-color: #0056b3;
}

.digi-icon {
    font-size: 2.2rem;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.digi-info h3 {
    margin: 0;
    font-size: 1.05rem; /* Ukuran font disesuaikan untuk konsistensi */
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.digi-info p {
    margin: 3px 0 0 0;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.2;
}

/* Warna hover khusus teks */
.digital-card:hover h3 {
    color: #0056b3;
}