/* =====================================================
   DINAS SOSIAL KOTA BATU - MAIN STYLESHEET
   ===================================================== */

/* CSS Variables */
:root {
    --primary-color: #1e3a5f;
    --primary-dark: #152a45;
    --primary-light: #2d5a8a;
    --secondary-color: #e74c3c;
    --secondary-dark: #c0392b;
    --secondary-light: #ec7063;
    --accent-color: #27ae60;
    --accent-dark: #1e8449;
    --accent-light: #2ecc71;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --font-primary: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
    background-color: var(--primary-dark);
    padding: 10px 0;
    font-size: 14px;
    color: var(--white);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--secondary-color);
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.top-bar-right a {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.top-bar-right a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.logo-text h1 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span,
.logo-text p {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 400;
}

/* Navigation */
.main-nav .nav-menu {
    display: flex;
    gap: 5px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
    background: var(--gray-100);
}

.nav-menu > li > a i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown li a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.hero-nav:hover {
    background: var(--secondary-color);
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/* =====================================================
   SECTION TITLE
   ===================================================== */
.section-title {
    margin-bottom: 40px;
}

.section-title.center {
    text-align: center;
}

.section-title.left {
    text-align: left;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title.center h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.section-title.light h2 {
    color: var(--white);
}

.section-title.light .subtitle {
    color: rgba(255,255,255,0.8);
}

/* =====================================================
   QUICK ACCESS
   ===================================================== */
.quick-access {
    padding: 60px 0;
    background: var(--gray-100);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.quick-access-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

.quick-access-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quick-access-item .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quick-access-item:nth-child(1) .icon { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); }
.quick-access-item:nth-child(2) .icon { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)); }
.quick-access-item:nth-child(3) .icon { background: linear-gradient(135deg, var(--accent-color), var(--accent-light)); }
.quick-access-item:nth-child(4) .icon { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.quick-access-item:nth-child(5) .icon { background: linear-gradient(135deg, #f39c12, #e67e22); }
.quick-access-item:nth-child(6) .icon { background: linear-gradient(135deg, #1abc9c, #16a085); }

.quick-access-item .icon i {
    font-size: 28px;
    color: var(--white);
}

.quick-access-item:hover .icon {
    transform: rotateY(180deg);
}

.quick-access-item h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.quick-access-item p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.about-badge .text {
    font-size: 14px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-list {
    margin: 25px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-700);
}

.about-list li i {
    color: var(--accent-color);
    font-size: 18px;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
}

.stat-icon i {
    font-size: 32px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    border-radius: 50%;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 20px;
}

/* =====================================================
   NEWS SECTION
   ===================================================== */
.news-section {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
}

.news-card.featured {
    display: flex;
    flex-direction: column;
}

.news-card.featured .news-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.news-card.featured .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card.featured:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.news-card .news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card.featured h3 {
    font-size: 22px;
    color: var(--gray-800);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card.featured p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* News Sidebar */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card.small {
    display: flex;
    gap: 15px;
    padding: 15px;
}

.news-card.small .news-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.news-card.small .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card.small .news-content {
    padding: 0;
    flex: 1;
}

.news-card.small .news-meta {
    margin-bottom: 8px;
}

.news-card.small h4 {
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card.small a {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
}

.news-card.small a:hover {
    color: var(--secondary-color);
}

/* =====================================================
   ANNOUNCEMENT BANNER
   ===================================================== */
.announcement-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 30px 0;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--white);
}

.announcement-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.announcement-icon i {
    font-size: 24px;
}

.announcement-text {
    flex: 1;
}

.announcement-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--white);
}

.announcement-text p {
    margin: 0;
    opacity: 0.95;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 28px;
}

.gallery-overlay span {
    font-size: 13px;
    text-align: center;
    padding: 0 10px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo .logo-text h3 {
    font-size: 16px;
    color: var(--white);
}

.footer-logo .logo-text span {
    font-size: 12px;
    color: var(--gray-500);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 10px;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--gray-400);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

.breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

/* =====================================================
   CONTENT SECTIONS
   ===================================================== */
.content-section {
    padding: 80px 0;
}

.content-section.gray-bg {
    background: var(--gray-100);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

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

.card-img {
    height: 200px;
    overflow: hidden;
}

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

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.card-text {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 15px;
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =====================================================
   TABLES
   ===================================================== */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.table tbody tr:hover {
    background: var(--gray-100);
}

/* =====================================================
   TABS
   ===================================================== */
.tabs {
    margin-bottom: 30px;
}

.tab-nav {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--gray-200);
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 25px;
    font-weight: 500;
    color: var(--gray-600);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-pane {
    display: none;
    padding: 30px 0;
}

.tab-pane.active {
    display: block;
}

/* =====================================================
   ACCORDION
   ===================================================== */
.accordion {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.accordion-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
    flex: 1;
}

.accordion-header h3 i {
    color: var(--primary-color);
    font-size: 18px;
}

.accordion-header:hover {
    background: var(--gray-50, #f8fafc);
}

.accordion-header > i {
    transition: var(--transition);
    color: var(--gray-500);
    font-size: 14px;
    flex-shrink: 0;
}

.accordion-item.active .accordion-header {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-item.active .accordion-header h3 {
    color: var(--white);
}

.accordion-item.active .accordion-header h3 i {
    color: var(--white);
}

.accordion-item.active .accordion-header > i {
    transform: rotate(180deg);
    color: var(--white);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-body {
    max-height: 2000px;
}

.accordion-content {
    padding: 25px;
    background: var(--gray-100);
}

.accordion-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 15px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Accordion header span for FAQ style */
.accordion-header span {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    flex: 1;
    text-align: left;
}

.accordion-item.active .accordion-header span {
    color: var(--white);
}

/* Numbered list inside accordion */
.accordion-content .numbered-list {
    margin: 0;
    max-width: 100%;
}

.accordion-content .numbered-list li {
    background: var(--white);
}

/* Alert inside accordion */
.accordion-content .alert {
    margin-top: 20px;
    margin-bottom: 0;
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

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

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* =====================================================
   BADGES
   ===================================================== */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.badge-primary {
    background: var(--primary-color);
    color: var(--white);
}

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

.badge-success {
    background: var(--success);
    color: var(--white);
}

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1199px) {
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        transition: var(--transition);
        z-index: 1001;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu > li > a {
        padding: 15px;
        border-bottom: 1px solid var(--gray-200);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        background: var(--gray-100);
        border-radius: 0;
    }

    .has-dropdown.active .dropdown {
        max-height: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .announcement-content {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .quick-access-grid {
        grid-template-columns: 1fr;
    }

    .quick-access-item {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 20px;
    }

    .quick-access-item .icon {
        margin: 0;
        width: 50px;
        height: 50px;
    }

    .quick-access-item .icon i {
        font-size: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* =====================================================
   ORGANIZATION CHART
   ===================================================== */
.org-chart {
    max-width: 900px;
    margin: 0 auto;
}

.org-level {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.org-level::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 2px;
    height: 15px;
    background: var(--gray-300);
}

.org-level:last-child::after {
    display: none;
}

.org-level-multi {
    gap: 20px;
    flex-wrap: wrap;
}

.org-level-multi::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gray-300);
}

.org-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 200px;
    max-width: 280px;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.org-card.primary {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.org-card.primary .position,
.org-card.primary .nip {
    color: rgba(255,255,255,0.8);
}

.org-card.secondary {
    border-color: var(--secondary-color);
}

.org-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--gray-200);
}

.org-card.primary .org-photo {
    border-color: rgba(255,255,255,0.3);
}

.org-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-info h3 {
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.org-card.primary .org-info h3 {
    color: var(--white);
}

.org-info .position {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.org-info .nip {
    font-size: 11px;
    color: var(--gray-500);
}

/* =====================================================
   STAFF GRID
   ===================================================== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.staff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.staff-photo {
    height: 250px;
    overflow: hidden;
}

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

.staff-card:hover .staff-photo img {
    transform: scale(1.05);
}

.staff-info {
    padding: 25px;
}

.staff-info h3 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.staff-info .position {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.staff-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.staff-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.staff-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* =====================================================
   TIMELINE
   ===================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-marker .year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 55%;
}

.timeline-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =====================================================
   ACHIEVEMENT GRID
   ===================================================== */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.achievement-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.achievement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 28px;
    color: var(--white);
}

.achievement-card h3 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.achievement-card .year {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.achievement-card .achievement-desc {
    font-size: 13px;
    color: var(--gray-600);
}

/* =====================================================
   INFO CARDS
   ===================================================== */
.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.info-card.highlight h2 {
    color: var(--white);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card:not(.highlight) .info-icon {
    background: var(--gray-100);
}

.info-icon i {
    font-size: 32px;
    color: var(--white);
}

.info-card:not(.highlight) .info-icon i {
    color: var(--primary-color);
}

.info-card h2 {
    font-size: 24px;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.numbered-list {
    padding-left: 20px;
    margin: 20px 0;
}

.numbered-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
    color: var(--gray-700);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* =====================================================
   TABS NAVIGATION
   ===================================================== */
.tabs-nav {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--gray-200);
    overflow-x: auto;
    margin-bottom: 30px;
}

.tabs-content {
    padding: 20px 0;
}

.tab-section {
    margin-bottom: 25px;
}

.tab-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tab-section h4 i {
    color: var(--secondary-color);
}

/* =====================================================
   PROGRAM GRID
   ===================================================== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.program-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.program-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.program-item:hover i {
    color: var(--white);
}

.program-item span {
    font-size: 13px;
    font-weight: 500;
}

/* =====================================================
   SASARAN GRID
   ===================================================== */
.sasaran-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.sasaran-item {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.sasaran-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sasaran-item h5 {
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.sasaran-item p {
    font-size: 12px;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   LEGAL GRID
   ===================================================== */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.legal-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.legal-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-icon i {
    font-size: 20px;
    color: var(--white);
}

.legal-content h4 {
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.legal-content p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   DOWNLOAD CARD
   ===================================================== */
.download-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.download-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon i {
    font-size: 28px;
    color: var(--white);
}

.download-info {
    flex: 1;
}

.download-info h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.download-info p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   SERVICES DETAIL
   ===================================================== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.service-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 24px;
}

.service-title h3 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
}

.service-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
}

.service-body {
    padding: 25px;
}

.service-body > p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.info-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: var(--gray-700);
}

.info-item ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 10px;
    color: var(--accent-color);
}

.info-item p {
    font-size: 13px;
    color: var(--gray-700);
    margin: 5px 0;
}

.service-uses h4 {
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gray-100);
    border-radius: 15px;
    font-size: 12px;
    color: var(--gray-700);
}

/* =====================================================
   HOURS GRID
   ===================================================== */
.hours-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hours-item {
    text-align: center;
}

.hours-item .day {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.hours-item .time {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

/* =====================================================
   QUOTE SECTION
   ===================================================== */
.cta-section blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin: 20px 0 30px;
    color: var(--white);
}

.quote-icon {
    font-size: 40px;
    opacity: 0.5;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quote-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
}

.author-info h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* =====================================================
   INTRO TEXT
   ===================================================== */
.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* =====================================================
   BG LIGHT
   ===================================================== */
.bg-light {
    background-color: var(--gray-100);
}

/* =====================================================
   RESPONSIVE FOR NEW COMPONENTS
   ===================================================== */
@media (max-width: 991px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }

    .org-level-multi {
        flex-direction: column;
        align-items: center;
    }

    .org-level-multi::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .program-grid,
    .sasaran-grid {
        grid-template-columns: 1fr;
    }

    .service-info-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        flex-direction: column;
        text-align: center;
    }

    .tabs-nav {
        flex-wrap: nowrap;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* =====================================================
   ADDITIONAL SECTIONS & COMPONENTS
   ===================================================== */

/* Section Base */
.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: var(--gray-100);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Grid Layouts */
.grid-news {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card Styles */
.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.card-content {
    padding: 20px;
}

.card-horizontal {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.card-horizontal .card-image {
    height: 100%;
    min-height: 220px;
}

.card-horizontal .card-image img {
    height: 100%;
}

/* News Main & Sidebar */
.news-main {
    flex: 1;
}

.news-list article {
    margin-bottom: 25px;
}

/* Sidebar Widget */
.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.sidebar-widget h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
}

/* Footer Info (alias for footer-about) */
.footer-info {
    grid-column: span 1;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-logo-text h3 {
    font-size: 16px;
    color: var(--white);
}

.footer-logo-text span {
    font-size: 12px;
    color: var(--gray-500);
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.contact-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Contact Form Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Statistic Cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary-color);
}

.stat-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.stat-card .number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-card .label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Chart Container */
.chart-container {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.chart-container h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.chart-wrapper {
    height: 300px;
    position: relative;
}

/* Data Table Styling */
.data-table-container {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.data-table-container h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Benefit Cards (Program Pages) */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.benefit-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card .icon i {
    font-size: 28px;
    color: var(--white);
}

.benefit-card h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -25px;
    top: 30px;
    color: var(--gray-400);
    font-size: 20px;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.process-step h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: var(--gray-600);
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

/* Social Links Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.social-card i {
    font-size: 32px;
    margin-bottom: 10px;
}

.social-card.facebook i { color: #1877f2; }
.social-card.instagram i { color: #e4405f; }
.social-card.twitter i { color: #1da1f2; }
.social-card.youtube i { color: #ff0000; }

.social-card h4 {
    font-size: 14px;
    color: var(--gray-800);
    margin: 0;
}

/* Responsive for new components */
@media (max-width: 1199px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .grid-news {
        grid-template-columns: 1fr;
    }

    .card-horizontal {
        grid-template-columns: 1fr;
    }

    .card-horizontal .card-image {
        height: 200px;
        min-height: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .stat-cards {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* =====================================================
   FEATURE CARDS (Contact Page)
   ===================================================== */
.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h4 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   BACKGROUND PRIMARY SECTION
   ===================================================== */
.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.section.bg-primary,
.content-section.bg-primary {
    color: var(--white);
}

.section.bg-primary h3,
.section.bg-primary h2,
.content-section.bg-primary h3,
.content-section.bg-primary h2 {
    color: var(--white);
}

.section.bg-primary p,
.content-section.bg-primary p {
    color: rgba(255,255,255,0.9);
}

.content-section.bg-primary .section-title h2 {
    color: var(--white);
}

.content-section.bg-primary .section-title .subtitle {
    color: rgba(255,255,255,0.8);
}

.content-section.bg-primary .section-title h2::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

/* =====================================================
   CARD BASE STYLES
   ===================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Card Icon */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 24px;
    color: var(--white);
}

.card h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.info-list li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--primary-color);
}

/* Stats Inline */
.stats-inline {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.stats-inline .stat-item {
    text-align: center;
    padding: 10px 15px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.stats-inline .stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.stats-inline .stat-label {
    font-size: 12px;
    color: var(--gray-600);
}

/* Alert Box */
.alert {
    padding: 20px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alert i {
    font-size: 20px;
    margin-top: 3px;
}

.alert p {
    margin: 0;
    font-size: 14px;
}

.alert-info {
    background: #e8f4fd;
    color: #1e5f8a;
    border-left: 4px solid #3498db;
}

.alert-warning {
    background: #fef6e7;
    color: #8a6d1b;
    border-left: 4px solid #f39c12;
}

.alert-success {
    background: #e8f8f0;
    color: #1a5f3a;
    border-left: 4px solid #27ae60;
}

/* Check List for Cards */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 13px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 12px;
}

/* Timeline Steps - Vertical Style (Default for non-dark sections) */
.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 30px 0 30px 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 25px;
}

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

.timeline-number {
    position: absolute;
    left: -70px;
    top: 5px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
    border: 4px solid var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.timeline-content h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.timeline-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--gray-700);
}

.timeline-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 12px;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for timeline */
@media (max-width: 767px) {
    .timeline {
        padding-left: 60px;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-number {
        left: -55px;
        width: 50px;
        height: 50px;
        font-size: 18px;
        border-width: 3px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content:hover {
        transform: none;
    }
}

/* =====================================================
   CONTENT SECTION
   ===================================================== */
.content-section {
    padding: 60px 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* =====================================================
   DOWNLOAD LIST
   ===================================================== */
.download-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.download-item:hover {
    box-shadow: var(--shadow-md);
}

.download-item .download-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-item .download-icon i {
    font-size: 24px;
    color: var(--white);
}

.download-item .download-icon.blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.download-item .download-icon.green {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

.download-item .download-icon.orange {
    background: linear-gradient(135deg, #f39c12, #d68910);
}

.download-item .download-info {
    flex: 1;
}

.download-item .download-info h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.download-item .download-info p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.download-meta {
    display: flex;
    gap: 15px;
}

.download-meta span {
    font-size: 12px;
    color: var(--gray-500);
}

.download-meta span i {
    margin-right: 5px;
}

/* =====================================================
   BADGE VARIANTS
   ===================================================== */
.badge-success {
    background: var(--accent-color);
    color: var(--white);
}

.badge-primary {
    background: var(--primary-color);
    color: var(--white);
}

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

.badge-info {
    background: #3498db;
    color: var(--white);
}

/* =====================================================
   MT-5 (Margin Top Utility)
   ===================================================== */
.mt-5 {
    margin-top: 40px;
}

/* =====================================================
   BUTTON VARIANTS
   ===================================================== */
.btn-white {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* =====================================================
   FOOTER BOTTOM CONTENT
   ===================================================== */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

@media (max-width: 767px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .download-item {
        flex-direction: column;
        text-align: center;
    }

    .download-item .btn {
        width: 100%;
    }
}

/* =====================================================
   SECTION TITLE VARIANTS
   ===================================================== */
.section-title.center {
    text-align: center;
    margin-bottom: 40px;
}

.section-title.center .subtitle,
.section-header .subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title.center h2 {
    font-size: 32px;
    color: var(--primary-color);
}

/* =====================================================
   HOTLINE STYLING
   ===================================================== */
.hotline {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* =====================================================
   RESPONSIVE GRID 2 & INFO ITEM
   ===================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 767px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   SERVICE INFO GRID & INFO ITEM
   ===================================================== */
.service-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-item h4 i {
    color: var(--secondary-color);
}

.info-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item ul li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--gray-700);
}

@media (max-width: 767px) {
    .service-info-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   SERVICES GRID & SERVICE CARD
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 11px;
}

/* =====================================================
   FEATURES GRID & FEATURE ITEM
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.feature-content h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   CONTENT GRID (Two Columns with Image)
   ===================================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text .section-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.content-text .section-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-text p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.content-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   ICON LIST
   ===================================================== */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.icon-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-list li i {
    color: var(--primary-color);
    width: 20px;
}

/* =====================================================
   STATS GRID (for bg-primary sections)
   ===================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* =====================================================
   BG PRIMARY SECTION STYLING
   ===================================================== */
.section.bg-primary .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.section.bg-primary .section-title {
    color: var(--white);
}

/* =====================================================
   RESPONSIVE FOR NEW COMPONENTS
   ===================================================== */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-grid .content-image {
        order: -1;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item .stat-number {
        font-size: 36px;
    }
}

/* =====================================================
   STATS INLINE (Small stats boxes in content)
   ===================================================== */
.stats-inline {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.stats-inline .stat-box {
    background: var(--gray-100);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stats-inline .stat-box .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats-inline .stat-box .label {
    font-size: 13px;
    color: var(--gray-600);
}

/* =====================================================
   AMOUNT & PERIOD (for benefit cards)
   ===================================================== */
.service-card .amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-card .period {
    font-size: 13px;
    color: var(--gray-500);
}

/* =====================================================
   REQUIREMENT LIST
   ===================================================== */
.requirement-list {
    margin-top: 20px;
}

.requirement-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

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

.req-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.req-icon i {
    font-size: 20px;
    color: var(--white);
}

.req-content h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.req-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   OBLIGATION CARD
   ===================================================== */
.obligation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.obligation-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.obligation-header i {
    font-size: 24px;
}

.obligation-header h3 {
    font-size: 18px;
    color: var(--white);
    margin: 0;
}

.obligation-body {
    padding: 25px;
}

.obligation-body .check-list li {
    padding: 10px 0;
    padding-left: 25px;
    border-bottom: 1px solid var(--gray-100);
}

.obligation-body .check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* =====================================================
   STAT PERIOD (for distribution cards)
   ===================================================== */
.stat-item .stat-period {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

/* =====================================================
   CONTACT BOX
   ===================================================== */
.contact-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-box h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-box > p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-info-item span {
    font-size: 14px;
    color: var(--gray-700);
}

/* =====================================================
   TEXT CENTER
   ===================================================== */
.text-center {
    text-align: center;
}

/* =====================================================
   BADGE VARIANTS
   ===================================================== */
.badge.badge-primary {
    background: var(--primary-color);
    color: var(--white);
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .stats-inline {
        flex-direction: column;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   VISION CARD (profil-visi-misi.html)
   ===================================================== */
.vision-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.vision-card h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.vision-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.3);
}

.vision-icon i {
    font-size: 42px;
    color: var(--white);
}

.vision-text {
    margin-bottom: 25px;
}

.vision-text .quote-text {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
}

.vision-explanation {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 25px;
}

.vision-explanation h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
}

.vision-explanation p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   MISSION GRID & CARD
   ===================================================== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mission-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-200);
    margin-bottom: 15px;
}

.mission-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   VALUES GRID & CARD
   ===================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 28px;
    color: var(--white);
}

.value-card h3 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   MOTTO SECTION (CTA Section variant)
   ===================================================== */
.motto-icon {
    font-size: 50px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.motto-text {
    font-size: 28px;
    font-style: italic;
    color: var(--white);
    margin-bottom: 15px;
}

/* =====================================================
   PROCEDURE FLOW
   ===================================================== */
.procedure-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.flow-step:not(:last-child)::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -15px;
    top: 25px;
    color: rgba(255,255,255,0.5);
    font-size: 18px;
}

.flow-step .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    border: 3px solid rgba(255,255,255,0.3);
}

.flow-step .step-content h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 8px;
}

.flow-step .step-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    margin: 0;
}

/* =====================================================
   TIMELINE ALTERNATE STYLE (for sejarah.html)
   ===================================================== */
.timeline-marker {
    position: absolute;
    left: -55px;
    top: 0;
    z-index: 10;
}

.timeline-marker .year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

/* =====================================================
   RESPONSIVE FOR NEW COMPONENTS
   ===================================================== */
@media (max-width: 1199px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .procedure-flow {
        flex-direction: column;
        align-items: center;
    }

    .flow-step {
        width: 100%;
        max-width: 300px;
    }

    .flow-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vision-card {
        padding: 30px 20px;
    }

    .vision-text .quote-text {
        font-size: 18px;
    }

    .motto-text {
        font-size: 22px;
    }
}

/* =====================================================
   HISTORY TIMELINE (year-based for sejarah page)
   ===================================================== */
.history-timeline {
    padding-left: 100px;
}

.history-timeline::before {
    left: 45px;
}

.history-timeline .timeline-number {
    width: 80px;
    height: 80px;
    font-size: 18px;
    left: -90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: 5px solid var(--white);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

.history-timeline .timeline-content {
    border-left-width: 5px;
}

.history-timeline .timeline-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.history-timeline .timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
}

@media (max-width: 767px) {
    .history-timeline {
        padding-left: 70px;
    }

    .history-timeline::before {
        left: 30px;
    }

    .history-timeline .timeline-number {
        width: 55px;
        height: 55px;
        font-size: 14px;
        left: -65px;
        border-width: 3px;
    }

    .history-timeline .timeline-content h4 {
        font-size: 17px;
    }
}

/* =====================================================
   TUPOKSI COMPONENTS
   ===================================================== */
.tupoksi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.tupoksi-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
}

.tupoksi-header .tupoksi-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tupoksi-header .tupoksi-icon i {
    font-size: 24px;
    color: var(--white);
}

.tupoksi-header h2 {
    font-size: 22px;
    color: var(--white);
    margin: 0;
}

.tupoksi-body {
    padding: 30px;
}

.tupoksi-body p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.tupoksi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tupoksi-list li {
    padding: 15px 20px;
    padding-left: 50px;
    position: relative;
    background: var(--gray-100);
    margin-bottom: 10px;
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.tupoksi-list li:last-child {
    margin-bottom: 0;
}

.tupoksi-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 14px;
}

/* Bidang Cards for Tupoksi */
.bidang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.bidang-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.bidang-card:hover {
    box-shadow: var(--shadow-lg);
}

.bidang-header {
    padding: 20px 25px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.bidang-header i {
    font-size: 24px;
}

.bidang-header h3 {
    font-size: 16px;
    color: var(--white);
    margin: 0;
}

.bidang-body {
    padding: 25px;
}

.bidang-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bidang-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bidang-body ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 13px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.bidang-body ul li:last-child {
    border-bottom: none;
}

.bidang-body ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 10px;
}

@media (max-width: 991px) {
    .bidang-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   STRUKTUR ORGANISASI COMPONENTS
   ===================================================== */
.org-chart-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.org-level::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: var(--gray-300);
}

.org-level:last-child::after {
    display: none;
}

.org-level.top::after {
    display: none;
}

.org-level.top + .org-level::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: var(--gray-300);
}

.org-card-leader {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 25px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
}

.org-card-leader img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    margin-bottom: 15px;
}

.org-card-leader h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.org-card-leader .position {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.org-card-leader .nip {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.org-card-staff {
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 220px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.org-card-staff:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.org-card-staff img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-200);
    margin-bottom: 12px;
}

.org-card-staff h4 {
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.org-card-staff .position {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 3px;
}

.org-card-staff .nip {
    font-size: 11px;
    color: var(--gray-500);
}

@media (max-width: 767px) {
    .org-chart-wrapper {
        padding: 20px;
    }

    .org-card-leader {
        min-width: 100%;
        padding: 20px;
    }

    .org-card-staff {
        min-width: 100%;
    }
}

/* =====================================================
   INTRO TEXT
   ===================================================== */
.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* =====================================================
   CARD IMAGE STYLING
   ===================================================== */
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-content .btn {
    margin-top: 15px;
}

/* =====================================================
   TIMELINE STYLE FOR bg-primary SECTIONS
   ===================================================== */
.bg-primary .timeline::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
}

.bg-primary .timeline-number {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    border: 3px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.bg-primary .timeline-content {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.bg-primary .timeline-content h4 {
    color: var(--white);
}

.bg-primary .timeline-content p {
    color: rgba(255,255,255,0.95);
}

/* Section Title colors in bg-primary */
.bg-primary .section-title h2,
.bg-primary .section-title.center h2 {
    color: var(--white);
}

.bg-primary .section-title .subtitle,
.bg-primary .section-title.center .subtitle {
    color: rgba(255,255,255,0.8);
}

.bg-primary .section-title h2::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

/* =====================================================
   FEATURE CARD FOR GRID-4
   ===================================================== */
.grid-4 .feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.grid-4 .feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-4 .feature-card .feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.grid-4 .feature-card h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.grid-4 .feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   CARD ICON STYLING
   ===================================================== */
.card-content .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-content .card-icon i {
    font-size: 24px;
    color: var(--white);
}

/* =====================================================
   INFO CARD (Tupoksi Page)
   ===================================================== */
.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.info-card .info-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card.highlight .info-icon {
    background: rgba(255,255,255,0.2);
    border: 3px solid rgba(255,255,255,0.3);
}

.info-card:not(.highlight) .info-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: 3px solid rgba(30, 58, 95, 0.1);
}

.info-card .info-icon i {
    font-size: 40px;
    color: var(--white);
}

.info-card h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.info-card.highlight h2 {
    color: var(--white);
}

.info-card:not(.highlight) h2 {
    color: var(--primary-color);
}

.info-card p {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-card.highlight p {
    color: rgba(255,255,255,0.95);
}

.info-card:not(.highlight) p {
    color: var(--gray-600);
}

/* =====================================================
   NUMBERED LIST
   ===================================================== */
.numbered-list {
    list-style: none;
    padding: 0;
    margin: 25px auto 0;
    max-width: 800px;
    counter-reset: item;
    text-align: left;
}

.numbered-list li {
    counter-increment: item;
    padding: 18px 20px 18px 65px;
    position: relative;
    background: var(--gray-100);
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    text-align: left;
}

.numbered-list li:last-child {
    margin-bottom: 0;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(30, 58, 95, 0.2);
}

/* =====================================================
   TABS COMPONENT
   ===================================================== */
.tabs {
    margin-top: 30px;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.tab-btn {
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--gray-100);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.tabs-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.tab-section {
    margin-bottom: 30px;
}

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

.tab-section h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-section h4 i {
    color: var(--secondary-color);
}

.tab-section p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =====================================================
   PROGRAM GRID (in Tabs)
   ===================================================== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.program-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.program-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.program-item:hover i {
    color: var(--white);
}

.program-item span {
    font-size: 13px;
    font-weight: 500;
}

/* =====================================================
   SASARAN GRID (in Tabs)
   ===================================================== */
.sasaran-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sasaran-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.sasaran-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sasaran-item h5 {
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.sasaran-item p {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   LEGAL GRID
   ===================================================== */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.legal-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.legal-item:hover {
    box-shadow: var(--shadow-md);
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-icon i {
    font-size: 24px;
    color: var(--white);
}

.legal-content h4 {
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   RESPONSIVE FOR TABS & GRIDS
   ===================================================== */
@media (max-width: 1199px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sasaran-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .tabs-content {
        padding: 25px;
    }

    .program-grid,
    .sasaran-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 30px 20px;
    }
}

/* =====================================================
   ORG CHART (profil-struktur.html)
   ===================================================== */
.org-chart {
    max-width: 1000px;
    margin: 0 auto;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.org-level::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: var(--gray-300);
}

.org-level:last-child::after {
    display: none;
}

.org-level-multi {
    flex-wrap: wrap;
}

.org-level-multi::after {
    display: none;
}

.org-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 25px;
    text-align: center;
    min-width: 250px;
    transition: var(--transition);
}

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

.org-card.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.org-card.secondary {
    background: linear-gradient(135deg, var(--secondary-color), #c9a227);
    color: var(--white);
}

.org-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
}

.org-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-card:not(.primary):not(.secondary) .org-photo {
    border-color: var(--gray-200);
}

.org-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.org-card.primary .org-info h3,
.org-card.secondary .org-info h3 {
    color: var(--white);
}

.org-card:not(.primary):not(.secondary) .org-info h3 {
    color: var(--gray-800);
}

.org-info .position {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.org-card.primary .org-info .position,
.org-card.secondary .org-info .position {
    color: rgba(255,255,255,0.9);
}

.org-card:not(.primary):not(.secondary) .org-info .position {
    color: var(--primary-color);
}

.org-info .nip {
    font-size: 12px;
}

.org-card.primary .org-info .nip,
.org-card.secondary .org-info .nip {
    color: rgba(255,255,255,0.7);
}

.org-card:not(.primary):not(.secondary) .org-info .nip {
    color: var(--gray-500);
}

/* =====================================================
   STAFF GRID (profil-struktur.html)
   ===================================================== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.staff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.staff-card:hover {
    box-shadow: var(--shadow-lg);
}

.staff-photo {
    height: 250px;
    overflow: hidden;
}

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

.staff-card:hover .staff-photo img {
    transform: scale(1.05);
}

.staff-info {
    padding: 25px;
    text-align: center;
}

.staff-info h3 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.staff-info .position {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.staff-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.staff-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.staff-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* =====================================================
   DOWNLOAD CARD (profil-struktur.html)
   ===================================================== */
.download-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.download-card .download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-card .download-icon i {
    font-size: 36px;
    color: var(--white);
}

.download-card .download-info {
    flex: 1;
}

.download-card .download-info h3 {
    font-size: 20px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.download-card .download-info p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   INFO CARD H3 FOR LAYANAN PROSEDUR
   ===================================================== */
.info-card.highlight h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.info-card.highlight h3 i {
    font-size: 26px;
    color: rgba(255,255,255,0.9);
}

.info-card:not(.highlight) h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.info-card:not(.highlight) h3 i {
    font-size: 26px;
    color: var(--primary-color);
}

/* =====================================================
   RESPONSIVE FOR ORG CHART & STAFF GRID
   ===================================================== */
@media (max-width: 991px) {
    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .org-level::after {
        display: none;
    }

    .org-card {
        min-width: 280px;
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
}

/* =====================================================
   ALERT COMPONENTS
   ===================================================== */
.alert {
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alert i {
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    border-left: 4px solid #17a2b8;
    color: #117a8b;
}

.alert-info i {
    color: #17a2b8;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    color: #856404;
}

.alert-warning i {
    color: #ffc107;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    color: #155724;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #721c24;
}

/* =====================================================
   CHECK LIST (icon-based list)
   ===================================================== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 15px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 14px;
}

/* =====================================================
   INFO LIST (for cards with icon-based data)
   ===================================================== */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px dashed var(--gray-200);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li strong {
    color: var(--gray-700);
}

/* =====================================================
   ABOUT GRID (Visi-Misi Goals Section)
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content .section-title.left {
    text-align: left;
}

.about-content .section-title.left h2::after {
    left: 0;
    transform: none;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.about-list li strong {
    display: block;
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.about-list li p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   RESPONSIVE FOR ABOUT GRID
   ===================================================== */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
        max-height: 400px;
    }
}
