/* ============================================
   DINAS PANGAN, PERTANIAN DAN PERIKANAN
   KOTA PONTIANAK - HOMEPAGE REDESIGN
   Government Style Design System
   ============================================ */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --gov-green: #40ae4e;
    --gov-green-dark: #2d8a3a;
    --gov-green-light: #5bc66a;
    --gov-green-pale: #e8f5ea;
    --gov-green-muted: #eff9f0;

    /* Accent Colors */
    --gov-orange: #f47729;
    --gov-orange-dark: #d65a10;
    --gov-orange-light: #ff9654;
    --gov-orange-pale: #fef3eb;

    /* Neutral Colors */
    --gov-dark: #1a1a2e;
    --gov-gray-900: #212529;
    --gov-gray-800: #343a40;
    --gov-gray-700: #495057;
    --gov-gray-600: #6c757d;
    --gov-gray-500: #adb5bd;
    --gov-gray-400: #ced4da;
    --gov-gray-300: #dee2e6;
    --gov-gray-200: #e9ecef;
    --gov-gray-100: #f8f9fa;
    --gov-white: #ffffff;

    /* Semantic Colors */
    --gov-success: #28a745;
    --gov-info: #17a2b8;
    --gov-warning: #ffc107;
    --gov-danger: #dc3545;

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 80px;
    --section-padding-sm: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   TOP INFO BAR
   ============================================ */
.gov-info-bar {
    background: var(--gov-dark);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: var(--transition-base);
}

.gov-info-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.gov-info-bar .info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-info-bar .info-left {
    display: flex;
    gap: 25px;
}

.gov-info-bar .info-left span,
.gov-info-bar .info-right span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.gov-info-bar .info-left i {
    color: var(--gov-orange);
    margin-right: 8px;
}

.gov-info-bar .date-display {
    text-transform: capitalize;
}

/* ============================================
   HERO SECTION
   ============================================ */
.gov-hero {
    position: relative;
    min-height: 750px;
    background-image: url('../images/bg-hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 160px 0 200px;
    overflow: visible;
}

.gov-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(45, 138, 58, 0.85) 100%);
    z-index: 1;
}

.gov-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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.03'%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");
    z-index: 2;
    opacity: 0.5;
}

.gov-hero .container {
    position: relative;
    z-index: 3;
}

.gov-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.gov-hero .hero-badge {
    margin-bottom: 25px;
}

.gov-hero .hero-logo {
    height: 100px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.gov-hero .hero-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gov-orange);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(244, 119, 41, 0.15);
    border-radius: 30px;
    border: 1px solid rgba(244, 119, 41, 0.3);
}

.gov-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gov-white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.gov-hero .hero-tagline {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Search Form */
.gov-search-form {
    max-width: 600px;
    margin: 0 auto;
}

.gov-search-form .search-wrapper {
    display: flex;
    background: var(--gov-white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255,255,255,0.2);
}

.gov-search-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    background: transparent;
}

.gov-search-form input:focus {
    outline: none;
}

.gov-search-form input::placeholder {
    color: var(--gov-gray-500);
}

.gov-search-form button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 30px;
    background: var(--gov-green);
    color: var(--gov-white);
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-base);
}

.gov-search-form button:hover {
    background: var(--gov-green-dark);
}

/* Hero Misi Section */
.hero-misi {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 15px;
}

.hero-misi .misi-header {
    text-align: center;
    margin-bottom: 20px;
}

.hero-misi .misi-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gov-white);
    padding: 10px 25px;
    background: var(--gov-orange);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.hero-misi .misi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.hero-misi .misi-item {
    background: var(--gov-white);
    padding: 20px 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-base);
    border-top: 4px solid var(--gov-green);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-misi .misi-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--gov-orange);
}

.hero-misi .misi-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gov-green) 0%, var(--gov-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gov-white);
    margin-bottom: 12px;
    flex-shrink: 0;
}

.hero-misi .misi-item:hover .misi-number {
    background: linear-gradient(135deg, var(--gov-orange) 0%, var(--gov-orange-dark) 100%);
}

.hero-misi .misi-content p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--gov-gray-700);
    margin: 0;
}

/* Misi Responsive */
@media (max-width: 1199px) {
    .hero-misi .misi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-misi .misi-item:nth-child(4),
    .hero-misi .misi-item:nth-child(5) {
        grid-column: span 1;
    }

    .hero-misi {
        bottom: -120px;
    }
}

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

    .hero-misi {
        bottom: -180px;
    }
}

@media (max-width: 575px) {
    .hero-misi .misi-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-misi {
        position: relative;
        bottom: auto;
        margin-top: -50px;
        padding: 0 15px 30px;
    }

    .hero-misi .misi-item {
        flex-direction: row;
        text-align: left;
        padding: 15px;
        gap: 15px;
    }

    .hero-misi .misi-number {
        margin-bottom: 0;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .hero-misi .misi-content p {
        font-size: 12px;
    }
}

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

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

.section-header.compact {
    margin-bottom: 30px;
}

.section-header.light .section-title,
.section-header.light .section-desc {
    color: var(--gov-white);
}

.section-header.light .section-link {
    color: var(--gov-orange-light);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gov-orange);
    padding: 6px 16px;
    background: var(--gov-orange-pale);
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gov-gray-900);
    margin-bottom: 12px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gov-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gov-green);
    text-decoration: none;
    transition: var(--transition-base);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.section-link:hover {
    color: var(--gov-green-dark);
    text-decoration: none;
    gap: 12px;
}

.section-header {
    position: relative;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.service-card {
    background: var(--gov-white);
    padding: 25px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid var(--gov-gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gov-green);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.service-card:hover {
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gov-green);
}

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

.service-card.highlight {
    background: linear-gradient(135deg, var(--gov-orange) 0%, var(--gov-orange-dark) 100%);
    border-color: var(--gov-orange);
}

.service-card.highlight .service-icon {
    background: rgba(255,255,255,0.2);
}

.service-card.highlight .service-icon i {
    color: var(--gov-white);
}

.service-card.highlight .service-title,
.service-card.highlight .service-desc {
    color: var(--gov-white);
}

.service-card.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 119, 41, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gov-green-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.service-icon i {
    font-size: 26px;
    color: var(--gov-green);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gov-green);
}

.service-card:hover .service-icon i {
    color: var(--gov-white);
}

.service-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gov-gray-900);
    margin-bottom: 5px;
}

.service-desc {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--gov-gray-600);
}

/* ============================================
   NEWS SECTION
   ============================================ */
.gov-news {
    padding: var(--section-padding) 0;
    background: var(--gov-white);
}

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

.news-featured {
    grid-column: 1;
    grid-row: 1 / 3;
    background: var(--gov-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gov-gray-200);
    transition: var(--transition-base);
}

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

.news-featured .news-image {
    display: block;
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.news-featured .news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

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

.news-featured .news-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.news-featured .news-title a {
    color: var(--gov-gray-900);
    text-decoration: none;
    transition: var(--transition-base);
}

.news-featured .news-title a:hover {
    color: var(--gov-green);
}

.news-featured .news-excerpt {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gov-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* News Card (Regular items) */
.news-card {
    background: var(--gov-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gov-gray-200);
    transition: var(--transition-base);
}

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

.news-card .news-image {
    display: block;
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.news-card .news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

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

.news-card .news-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.news-card .news-title a {
    color: var(--gov-gray-900);
    text-decoration: none;
    transition: var(--transition-base);
}

.news-card .news-title a:hover {
    color: var(--gov-green);
}

/* News Date Badge */
.news-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gov-orange);
    color: var(--gov-white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.news-date-badge .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.news-date-badge .month {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Meta */
.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.news-meta span {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--gov-gray-500);
}

.news-meta i {
    margin-right: 5px;
    color: var(--gov-orange);
}

/* News Readmore */
.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gov-green);
    text-decoration: none;
    transition: var(--transition-base);
}

.news-readmore:hover {
    color: var(--gov-green-dark);
    gap: 12px;
    text-decoration: none;
}

/* ============================================
   LEADERS SECTION
   ============================================ */
.gov-leaders {
    padding: var(--section-padding) 0;
    background: var(--gov-gray-100);
}

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

.leaders-card,
.socialization-card {
    background: var(--gov-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.card-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--gov-gray-200);
}

.card-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gov-green);
    padding: 4px 12px;
    background: var(--gov-green-pale);
    border-radius: 20px;
    margin-bottom: 10px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gov-gray-900);
    margin: 0;
}

.leaders-image {
    position: relative;
    overflow: hidden;
}

.leaders-image img {
    width: 100%;
    display: block;
}

.vision-quote {
    padding: 30px;
    background: linear-gradient(135deg, var(--gov-orange-pale) 0%, var(--gov-white) 100%);
    text-align: center;
}

.vision-quote blockquote {
    margin: 0 0 15px;
    padding: 0;
}

.vision-quote blockquote p {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gov-gray-800);
    line-height: 1.5;
    font-style: italic;
}

.vision-quote .quote-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gov-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--gov-green);
    color: var(--gov-white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.card-link:hover {
    background: var(--gov-green-dark);
    color: var(--gov-white);
    text-decoration: none;
    gap: 15px;
}

/* Socialization Card */
.socialization-card .slider-wrapper {
    padding: 30px;
}

.slider-sosialisasi.owl-carousel .item-slider {
    display: block;
    text-decoration: none;
}

.slider-sosialisasi.owl-carousel .frame-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.slider-sosialisasi.owl-carousel .frame-img img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.slider-sosialisasi.owl-carousel .item-slider:hover .frame-img img {
    transform: scale(1.05);
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.gov-commitment {
    padding: var(--section-padding) 0;
    background: var(--gov-white);
    position: relative;
    overflow: hidden;
}

.gov-commitment .commitment-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2340ae4e' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.commitment-card {
    background: var(--gov-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gov-gray-200);
    transition: var(--transition-base);
}

.commitment-card:hover {
    border-color: var(--gov-green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.commitment-card.accent {
    background: linear-gradient(135deg, var(--gov-green) 0%, var(--gov-green-dark) 100%);
    border-color: var(--gov-green);
}

.commitment-card.accent .commitment-icon {
    background: rgba(255,255,255,0.2);
}

.commitment-card.accent .commitment-icon i {
    color: var(--gov-white);
}

.commitment-card.accent h4,
.commitment-card.accent p {
    color: var(--gov-white);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gov-green-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon i {
    font-size: 32px;
    color: var(--gov-green);
}

.commitment-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gov-gray-900);
    margin-bottom: 15px;
}

.commitment-card p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gov-gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

.btn-skm-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--gov-orange);
    color: var(--gov-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-skm-form:hover {
    background: var(--gov-orange-dark);
    transform: translateY(-2px);
}

/* ============================================
   BANNERS SECTION
   ============================================ */
.gov-banners {
    padding: var(--section-padding) 0;
    background: var(--gov-gray-100);
}

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

.banner-item {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.banner-item img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

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

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-base);
}

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

.banner-overlay span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gov-white);
}

/* ============================================
   CHARTS SECTION
   ============================================ */
.gov-charts {
    padding: var(--section-padding) 0;
    background: var(--gov-white);
}

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

.chart-card {
    background: var(--gov-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gov-gray-200);
}

.chart-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gov-gray-900);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gov-green);
}

/* ============================================
   AGENDA SECTION
   ============================================ */
.gov-agenda {
    padding: var(--section-padding) 0;
    background-image: url('../images/bg-hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.gov-agenda .agenda-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(45, 138, 58, 0.88) 100%);
}

.gov-agenda .container {
    position: relative;
    z-index: 1;
}

.agenda-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.agenda-calendar-wrapper {
    background: var(--gov-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.agenda-calendar-wrapper .calendar-header {
    padding: 20px;
    background: var(--gov-green);
}

.agenda-calendar-wrapper .calendar-header .agenda-filter {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--gov-white);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
}

.agenda-calendar-wrapper .calendar-body {
    padding: 20px;
}

.agenda-list-wrapper {
    background: var(--gov-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.agenda-list-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gov-gray-900);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gov-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.agenda-list-title i {
    color: var(--gov-orange);
}

.agenda-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-items ul li {
    padding: 20px 0;
    border-bottom: 1px dashed var(--gov-gray-300);
    position: relative;
    padding-left: 20px;
}

.agenda-items ul li:last-child {
    border-bottom: none;
}

.agenda-items ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28px;
    width: 8px;
    height: 8px;
    background: var(--gov-orange);
    border-radius: 50%;
}

.agenda-items .title-agenda {
    display: block;
    text-decoration: none;
}

.agenda-items .title-agenda .main-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gov-gray-900);
    margin-bottom: 8px;
    transition: var(--transition-base);
}

.agenda-items .title-agenda:hover .main-heading {
    color: var(--gov-green);
}

.agenda-items ul li p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gov-gray-600);
    line-height: 1.6;
    margin-bottom: 10px;
}

.agenda-items .readmore {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--gov-orange);
    text-decoration: none;
    transition: var(--transition-base);
}

.agenda-items .readmore:hover {
    color: var(--gov-green);
}

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

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

    .gov-hero {
        padding: 100px 0 140px;
    }

    .hero-stats {
        bottom: -100px;
    }

    .gov-services {
        padding-top: 160px;
    }
}

@media (max-width: 991px) {
    .gov-info-bar .info-bar-content {
        flex-direction: column;
        gap: 5px;
    }

    .gov-hero .hero-title {
        font-size: 36px;
    }

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

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

    .news-featured {
        grid-column: 1;
        grid-row: auto;
    }

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

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

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

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

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

    .section-link {
        position: static;
        transform: none;
        display: block;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px;
    }

    .gov-hero .hero-title {
        font-size: 28px;
    }

    .gov-hero .hero-tagline {
        font-size: 15px;
    }

    .hero-stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-stats {
        bottom: -220px;
    }

    .gov-services {
        padding-top: 280px;
    }

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

    .service-card {
        padding: 20px 10px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

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

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .gov-hero .hero-title {
        font-size: 24px;
    }

    .gov-search-form .search-wrapper {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

    .gov-search-form button {
        width: 100%;
        justify-content: center;
    }

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

/* ============================================
   MODAL STYLES
   ============================================ */
#modalInfo .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

#modalInfo .modal-header {
    background: var(--gov-green);
    color: var(--gov-white);
    border: none;
    padding: 20px 25px;
}

#modalInfo .modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

#modalInfo .modal-header .close {
    color: var(--gov-white);
    opacity: 1;
    text-shadow: none;
}

#modalInfo .modal-body {
    padding: 0;
}

#modalInfo .modal-body iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gov-hero .hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.stat-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.service-card {
    animation: fadeInUp 0.5s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }
.service-card:nth-child(8) { animation-delay: 0.4s; }
.service-card:nth-child(9) { animation-delay: 0.45s; }
.service-card:nth-child(10) { animation-delay: 0.5s; }
.service-card:nth-child(11) { animation-delay: 0.55s; }
.service-card:nth-child(12) { animation-delay: 0.6s; }

/* ============================================
   HEADER STYLES
   ============================================ */
.gov-header {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    position: fixed;
    top: 36px; /* Height of info bar */
    left: 0;
    right: 0;
    z-index: 1001;
    transition: var(--transition-base);
}

.gov-header.scrolled {
    top: 0;
    padding: 10px 0;
    background: var(--gov-white);
    box-shadow: var(--shadow-md);
}

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

.gov-header .logo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-base);
}

.gov-header .logo-header:hover {
    text-decoration: none;
    transform: scale(0.98);
}

.gov-header .logo-header img {
    height: 60px;
    transition: var(--transition-base);
}

.gov-header.scrolled .logo-header img {
    height: 50px;
}

.gov-header .logo-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--gov-white);
    margin: 0 0 2px;
    line-height: 1.3;
    transition: var(--transition-base);
}

.gov-header.scrolled .logo-text h4 {
    color: var(--gov-gray-900);
    font-size: 14px;
}

.gov-header .logo-text span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    transition: var(--transition-base);
}

.gov-header.scrolled .logo-text span {
    color: var(--gov-gray-600);
    font-size: 12px;
}

.gov-header .btn-nav {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    z-index: 1002;
}

.gov-header .btn-nav span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--gov-white);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: left center;
}

.gov-header.scrolled .btn-nav span {
    background: var(--gov-gray-900);
}

body.sidebar-active .gov-header .btn-nav span:first-child {
    transform: rotate(45deg);
}

body.sidebar-active .gov-header .btn-nav span:nth-child(2) {
    opacity: 0;
    width: 0;
}

body.sidebar-active .gov-header .btn-nav span:last-child {
    transform: rotate(-45deg);
}

.gov-header nav {
    width: 280px;
    height: 100vh;
    background: var(--gov-white);
    position: fixed;
    top: 0;
    right: -280px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    z-index: 1000;
    overflow: hidden;
}

body.sidebar-active .gov-header nav {
    right: 0;
}

body.sidebar-active {
    overflow: hidden;
}

body.sidebar-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.gov-header nav ul {
    list-style: none;
    padding: 80px 25px 25px;
    margin: 0;
}

.gov-header nav ul li {
    margin-bottom: 5px;
}

.gov-header nav ul li a {
    display: block;
    padding: 12px 15px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gov-gray-800);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.gov-header nav ul li a:hover {
    background: var(--gov-green-muted);
    color: var(--gov-green);
}

.gov-header nav ul li.dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-header nav ul li.dropdown > a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    transition: var(--transition-base);
}

.gov-header nav ul li.dropdown.active > a::after {
    transform: rotate(180deg);
}

.gov-header nav ul li ul {
    display: none;
    padding: 5px 0 5px 20px;
}

.gov-header nav ul li.dropdown.active ul {
    display: block;
}

.gov-header nav ul li ul li a {
    font-size: 13px;
    font-weight: 500;
    padding: 10px 15px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.gov-footer {
    background: var(--gov-dark);
}

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

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

.gov-footer .footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.gov-footer .footer-logo img {
    height: 60px;
}

.gov-footer .footer-logo .logo-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--gov-white);
    margin: 0 0 5px;
    line-height: 1.3;
}

.gov-footer .footer-logo .logo-text span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.gov-footer .footer-contact p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gov-footer .footer-contact p i {
    color: var(--gov-orange);
    width: 16px;
    margin-top: 3px;
}

.gov-footer .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.gov-footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gov-white);
    font-size: 18px;
    transition: var(--transition-base);
}

.gov-footer .social-link:hover {
    background: var(--gov-green);
    transform: translateY(-3px);
}

.gov-footer .footer-links h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--gov-white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gov-green);
}

.gov-footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gov-footer .footer-links ul li {
    margin-bottom: 10px;
}

.gov-footer .footer-links ul li a,
.gov-footer .related-link li a {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
}

.gov-footer .footer-links ul li a:hover,
.gov-footer .related-link li a:hover {
    color: var(--gov-green);
    padding-left: 5px;
}

.gov-footer .related-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gov-footer .related-link li {
    margin-bottom: 10px;
    padding-left: 0;
}

.gov-footer .related-link li::before {
    display: none;
}

.gov-footer .footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}

.gov-footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-footer .footer-bottom span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.gov-footer .footer-credit {
    color: var(--gov-orange) !important;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .gov-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gov-footer .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .gov-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .gov-footer .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Header Responsive */
@media (max-width: 767px) {
    .gov-header .logo-header img {
        height: 45px;
    }

    .gov-header .logo-text h4 {
        font-size: 13px;
    }

    .gov-header .logo-text span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .gov-header .logo-text {
        display: none;
    }

    .gov-header .logo-header img {
        height: 50px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Info Bar */
@media (max-width: 767px) {
    .gov-info-bar {
        padding: 6px 0;
    }

    .gov-info-bar .info-bar-content {
        flex-direction: column;
        gap: 4px;
    }

    .gov-info-bar .info-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .gov-info-bar .info-left span,
    .gov-info-bar .info-right span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .gov-info-bar .info-left span:first-child {
        display: none;
    }

    .gov-info-bar .info-right {
        display: none;
    }
}

/* Mobile Hero Section */
@media (max-width: 767px) {
    .gov-hero {
        min-height: auto;
        padding: 70px 0 0;
        background-attachment: scroll;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gov-hero > .container {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .gov-hero .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 20px 15px 30px;
    }

    .gov-hero .hero-badge {
        margin-bottom: 15px;
    }

    .gov-hero .hero-badge img,
    .gov-hero .hero-logo {
        width: 90px;
        height: 90px;
    }

    .gov-hero .hero-subtitle {
        font-size: 10px;
        padding: 5px 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .gov-hero .hero-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .gov-hero .hero-tagline {
        font-size: 12px;
        padding: 0 10px;
        margin-bottom: 0;
    }

    /* Hero Misi - force full width in mobile */
    .hero-misi {
        width: 100%;
        position: relative !important;
        bottom: auto !important;
        margin-top: 0;
        padding: 20px 15px 30px;
    }
}

@media (max-width: 480px) {
    .gov-hero {
        padding: 70px 0 20px;
    }

    .gov-hero .hero-badge img,
    .gov-hero .hero-logo {
        width: 80px;
        height: 80px;
    }

    .gov-hero .hero-subtitle {
        font-size: 9px;
        padding: 4px 12px;
    }

    .gov-hero .hero-title {
        font-size: 20px;
    }

    .gov-hero .hero-tagline {
        font-size: 11px;
    }
}

/* Mobile Services Section */
@media (max-width: 767px) {
    .gov-services {
        padding: 60px 0 50px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header .section-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .section-header .section-title {
        font-size: 24px;
    }

    .section-header .section-desc {
        font-size: 14px;
    }

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

    .service-card {
        padding: 15px 10px;
    }

    .service-card .service-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .service-card .service-title {
        font-size: 11px;
    }

    .service-card .service-desc {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .service-card {
        padding: 12px 8px;
    }

    .service-card .service-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .service-card .service-title {
        font-size: 10px;
    }
}

/* Mobile News Section */
@media (max-width: 767px) {
    .gov-news {
        padding: var(--section-padding-sm) 0;
    }

    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

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

    .news-featured .news-image {
        height: 200px;
    }

    .news-featured .news-content {
        padding: 20px;
    }

    .news-featured .news-title {
        font-size: 18px;
    }

    .news-featured .news-excerpt {
        font-size: 14px;
    }

    .news-card {
        flex-direction: row;
        height: auto;
    }

    .news-card .news-image {
        width: 120px;
        min-width: 120px;
        height: 100px;
    }

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

    .news-card .news-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .news-date-badge {
        width: 45px;
        height: 45px;
        top: 8px;
        left: 8px;
    }

    .news-date-badge .day {
        font-size: 16px;
    }

    .news-date-badge .month {
        font-size: 9px;
    }
}

/* Mobile Leaders Section */
@media (max-width: 991px) {
    .gov-leaders {
        padding: var(--section-padding-sm) 0;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .leaders-card,
    .socialization-card {
        padding: 25px;
    }

    .leaders-image img {
        max-height: 200px;
    }

    .vision-quote blockquote p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .leaders-card,
    .socialization-card {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .leaders-image img {
        max-height: 160px;
    }

    .vision-quote blockquote p {
        font-size: 14px;
    }
}

/* Mobile Commitment Section */
@media (max-width: 991px) {
    .gov-commitment {
        padding: var(--section-padding-sm) 0;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .commitment-card {
        padding: 25px 20px;
    }

    .commitment-card h4 {
        font-size: 18px;
    }

    .commitment-card p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .commitment-card {
        padding: 20px 15px;
    }

    .commitment-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .commitment-card h4 {
        font-size: 16px;
    }

    .commitment-card p {
        font-size: 13px;
    }

    .btn-skm-form {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* Mobile Banners Section */
@media (max-width: 767px) {
    .gov-banners {
        padding: var(--section-padding-sm) 0;
    }

    .banners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .banner-item {
        height: 140px;
    }
}

/* Mobile Charts Section */
@media (max-width: 991px) {
    .gov-charts {
        padding: var(--section-padding-sm) 0;
    }

    .charts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .chart-card {
        padding: 20px;
    }
}

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

    .chart-title {
        font-size: 16px;
    }

    #grafik-1,
    #grafik-2 {
        height: 280px !important;
    }
}

/* Mobile Agenda Section */
@media (max-width: 991px) {
    .gov-agenda {
        padding: var(--section-padding-sm) 0;
    }

    .agenda-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .agenda-calendar-wrapper {
        order: 2;
    }

    .agenda-list-wrapper {
        order: 1;
    }
}

@media (max-width: 575px) {
    .section-header.light .section-title {
        font-size: 22px;
    }

    .agenda-list-title {
        font-size: 16px;
    }

    .agenda-item {
        padding: 15px;
    }

    .agenda-item h6 {
        font-size: 14px;
    }

    .agenda-item p {
        font-size: 12px;
    }

    .calendar-body {
        padding: 15px;
    }
}

/* Mobile Section Link Styles */
@media (max-width: 575px) {
    .section-header .section-link {
        font-size: 13px;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile Slider Sosialisasi */
@media (max-width: 767px) {
    .slider-wrapper {
        border-radius: var(--radius-md);
    }

    .slider-sosialisasi .item {
        padding: 10px;
    }

    .slider-sosialisasi img {
        border-radius: var(--radius-sm);
    }
}

/* Mobile General Adjustments */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Reduce all section paddings */
    section {
        padding-top: var(--section-padding-sm);
        padding-bottom: var(--section-padding-sm);
    }
}

/* Touch-friendly improvements */
@media (max-width: 991px) {
    .service-card,
    .news-card,
    .banner-item,
    .agenda-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Increase tap target sizes */
    .service-card {
        min-height: 80px;
    }

    .news-readmore {
        padding: 10px 0;
    }
}
