/* file: assets/css/index.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #2e7d32;
    --secondary-dark: #1b5e20;
    --secondary-light: #e8f5e9;
    --accent-color: #4caf50;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navbar */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--secondary-color);
    color: #fff !important;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: var(--transition);
}

.btn-nav:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-1px);
}

.btn-nav::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.95), rgba(27, 94, 32, 0.95)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 7rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-search {
    background-color: white;
    padding: 6px;
    border-radius: var(--radius-md);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    box-shadow: var(--shadow-lg);
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
}

.hero-search input:focus {
    outline: none;
}

.hero-search button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search button:hover {
    background-color: var(--secondary-dark);
}

/* Sections General */
section {
    padding: 5.5rem 0;
}

.section-bg-light {
    background-color: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
}

/* Sekilas Tentang Desa */
.about-summary {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
    height: 380px;
}

.about-img-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary-color);
    width: 100px;
    height: 100px;
    z-index: -1;
    border-radius: var(--radius-md);
}

.about-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
}

.info-text h5 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.info-text p {
    margin: 0;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(46, 125, 50, 0.2);
}

/* Sambutan Kades */
.kades-section {
    background-color: var(--secondary-light);
    border-radius: var(--radius-lg);
    padding: 4rem;
}

.kades-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: center;
}

.kades-photo-wrapper {
    position: relative;
    width: 250px;
    height: 320px;
    margin: 0 auto;
}

.kades-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.kades-photo-deco {
    position: absolute;
    top: -15px;
    left: -15px;
    border: 3px solid var(--secondary-color);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    z-index: -1;
}

.kades-quote {
    position: relative;
}

.kades-quote i {
    font-size: 3rem;
    color: rgba(46, 125, 50, 0.15);
    position: absolute;
    top: -20px;
    left: -10px;
}

.kades-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.kades-meta h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.kades-meta p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Layanan Desa Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-link {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-link:hover {
    color: var(--secondary-dark);
}

.center-btn-wrapper {
    text-align: center;
}

/* Berita & Pengumuman Grid (Home) */
.news-announcement-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.news-list-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.news-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.news-card-content {
    padding: 1.5rem;
}

.news-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.news-badge {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.news-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar Pengumuman */
.announcement-sidebar {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-light);
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcement-item-sidebar {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
}

.announcement-item-sidebar:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.announcement-date {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    display: block;
}

.announcement-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Gallery Home Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 220px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-title {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.gallery-item-tag {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.gallery-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover .gallery-video-icon {
    background-color: var(--secondary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    position: relative;
    text-align: center;
}

.lightbox-content img {
    max-height: 70vh;
    border-radius: var(--radius-sm);
    margin: 0 auto;
}

.lightbox-content iframe {
    width: 100%;
    aspect-ratio: 16/9;
    max-width: 800px;
    border-radius: var(--radius-sm);
    border: none;
}

.lightbox-title {
    color: white;
    margin-top: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    font-weight: bold;
}

/* Inner Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 4.5rem 0;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumbs a {
    color: white;
}

/* Page Layouts & Inner Content */
.page-grid {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr;
    gap: 3.5rem;
}

.main-content {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Profil Pages Style */
.profil-section {
    margin-bottom: 3.5rem;
}

.profil-section:last-child {
    margin-bottom: 0;
}

.profil-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 12px;
}

.profil-section p, .profil-section li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.profil-section ul, .profil-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.struktur-img {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-top: 1rem;
}

/* Detail Pages (Berita, Pengumuman, Layanan) */
.detail-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-img {
    border-radius: var(--radius-md);
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.detail-body {
    line-height: 1.8;
    color: var(--text-secondary);
}

.detail-body p {
    margin-bottom: 1.25rem;
}

.detail-body ul, .detail-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-body li {
    margin-bottom: 0.5rem;
}

.layanan-info-box {
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.layanan-info-item {
    margin-bottom: 0.75rem;
}

.layanan-info-item:last-child {
    margin-bottom: 0;
}

.layanan-info-label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.layanan-info-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Search Bar (Inner) */
.search-widget {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 0.6rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.search-form button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0 1.25rem;
    cursor: pointer;
    font-weight: bold;
}

.search-form button:hover {
    background-color: var(--secondary-dark);
}

/* Sidebar Widget Category */
.widget {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--secondary-light);
    padding-bottom: 0.5rem;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-weight: 600;
}

.category-list a:hover {
    color: var(--secondary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 3.5rem;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    font-weight: 600;
    transition: var(--transition);
}

.page-num:hover, .page-num.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Footer styling */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-weight: bold;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-contact-item span {
    color: var(--secondary-color);
    font-weight: bold;
}

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

/* Empty State / Not Found */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-icon {
    font-size: 3.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.empty-state-desc {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Media Queries */
@media (max-width: 1024px) {
    .about-summary {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .kades-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .kades-quote i {
        left: 50%;
        transform: translateX(-50%);
    }
    .news-announcement-grid {
        grid-template-columns: 1fr;
    }
    .page-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: stretch;
        padding: 2.5rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        transition: var(--transition);
        overflow-y: auto;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        text-align: center;
    }
    .nav-links a {
        display: block;
        font-size: 1.15rem;
        padding: 0.5rem 0;
    }
    .btn-nav {
        margin-top: 1rem;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-search {
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
        gap: 0.5rem;
    }
    .hero-search input {
        background-color: white;
        border-radius: var(--radius-sm);
    }
    .hero-search button {
        padding: 0.9rem;
    }
    .news-list-home {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .about-img {
        height: 280px;
    }
}
