/* ==========================================================================
   STT MAKEDONIA MODERN STYLE
   NUANSA ALAM & MISI (HIJAU + BIRU)
   MASTER CSS - CLEAN & PROFESSIONAL VERSION
   ========================================================================== */

/* ==========================================================================
   ROOT VARIABLES - PALET WARNA BARU
   ========================================================================== */
:root {
    --color-primary: #0F4C3A;        /* Hijau Hutan Dalam */
    --color-primary-alpha-20: rgba(15, 76, 58, 0.2);
    --color-primary-alpha-70: rgba(15, 76, 58, 0.7);
    --color-primary-alpha-88: rgba(15, 76, 58, 0.88);
    --color-primary-alpha-96: rgba(15, 76, 58, 0.96);
    
    --color-accent: #FFB74D;         /* Oranye Lembut */
    --color-accent-hover: #E5A63A;   /* Oranye lebih gelap untuk hover */
    
    --color-secondary: #26A69A;      /* Hijau Kebiruan */
    --color-secondary-alpha-10: rgba(38, 166, 154, 0.1);
    
    --color-white: #FFFFFF;
    --color-light: #FAF9F6;          /* Putih Alami */
    --color-border: #E2E8F0;
    --color-text: #607D8B;           /* Abu Kebiruan */
    --color-text-dark: #263238;      /* Abu Gelap */
    --color-heading: #0F4C3A;        /* Hijau Hutan Dalam untuk heading */
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-medium: 0 20px 50px rgba(0,0,0,0.08);
    --shadow-hover: 0 25px 60px rgba(15,76,58,0.12);
    
    --radius-large: 24px;
    --radius-medium: 18px;
    --radius-small: 12px;
    
    --transition: all .35s ease;
}

/* ==========================================================================
   FONT FACE & TYPOGRAPHY
   ========================================================================== */
@font-face {
    font-family: 'title_font';
    src: url('GothamBook.ttf');
}
@font-face {
    font-family: 'caption_font';
    src: url('GothamBold.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'title_font', "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-family: 'caption_font', sans-serif;
}

a {
    text-decoration: none !important;
    transition: var(--transition);
}
a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==========================================================================
   HEADER & NAVIGATION - FIXED HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    border: none;
    transition: all 0.3s ease-in-out;
    padding: 20px 0;
    z-index: 1000;
}

/* Saat di-scroll, background menjadi solid */
body.fixed-header-on .header {
    background: var(--color-primary) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
}

/* Halaman selain home, header langsung solid */
.header.hd {
    background: var(--color-primary) !important;
    padding: 12px 0;
}

.navbar {
    margin-bottom: 0;
    border: none;
    background: transparent;
    min-height: auto;
}

.navbar-brand {
    color: var(--color-white) !important;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .4px;
    padding: 0;
    line-height: 50px;
}

.navbar-nav {
    margin: 0;
}

.navbar-nav > li {
    margin-left: 5px;
}

.navbar-nav > li > a {
    color: rgba(255,255,255,.9) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 30px;
    transition: var(--transition);
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
    color: var(--color-accent) !important;
    background: rgba(255,255,255,.1);
}

.navbar-toggle {
    border: none;
    margin-top: 8px;
}

.navbar-toggle .icon-bar {
    background: var(--color-white);
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .navbar-collapse {
        background: var(--color-primary);
        padding: 15px 20px;
        border-radius: 0 0 20px 20px;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 999;
    }
    .navbar-nav > li > a {
        padding: 10px 15px;
    }
    .navbar-brand {
        font-size: 20px;
        line-height: 40px;
    }
}

/* ==========================================================================
   HERO SLIDER SECTION
   ========================================================================== */

.hero-modern {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: hidden;
    padding-top: 80px;
}

/* Slider Container */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Overlay gelap di atas slider - menggunakan primary dengan opacity */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,76,58,0.75) 0%, rgba(10,26,58,0.85) 100%);
    z-index: 2;
}

/* Konten hero di atas slider */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: rgba(255,255,255,.15);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    color: rgba(255,255,255,.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-primary-modern,
.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-modern {
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    background: var(--color-accent-hover);
    color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(255,183,77,0.3);
}

.btn-outline-modern {
    border: 2px solid rgba(255,255,255,.4);
    color: var(--color-white);
    background: transparent;
}

.btn-outline-modern:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 4;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--color-accent);
    width: 30px;
    border-radius: 20px;
}

.slider-dot:hover {
    background: var(--color-accent);
}

/* Slider Arrows */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
    color: var(--color-white);
    font-size: 20px;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: 70vh;
    }
    .hero-content {
        min-height: 70vh;
        padding: 60px 20px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary-modern,
    .btn-outline-modern {
        width: 200px;
        text-align: center;
    }
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    padding: 50px 0;
    background: var(--color-white);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--color-secondary-alpha-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--color-secondary);
}

.stat-card h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.stat-card p {
    margin: 0;
    color: var(--color-text);
    font-size: 14px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 70px 0;
    background: var(--color-light);
}

.about-image {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-large);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-medium);
}

.section-mini-title {
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-heading);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   NEWS SECTION - MODERN & CLEAN
   ========================================================================== */
.news-section {
    padding: 80px 0;
    background: var(--color-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-header .title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0;
}

/* Grid Berita */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Berita Modern */
.news-card-modern {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Gambar */
.news-card-modern .news-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

/* Konten */
.news-card-modern .news-body {
    padding: 24px;
}

/* Judul */
.news-card-modern .news-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.news-card-modern .news-title a {
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.news-card-modern .news-title a:hover {
    color: var(--color-accent);
}

/* Deskripsi */
.news-card-modern .news-excerpt {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tombol More */
.news-card-modern .news-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-card-modern .news-more:hover {
    color: var(--color-accent);
    gap: 8px;
}

.news-card-modern .news-more i {
    font-size: 12px;
}

/* Responsive News */
@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header .title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 50px 0;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card-modern .news-image {
        height: 200px;
    }
}

/* ==========================================================================
   TOMBOL MORE - BACKGROUND HIJAU, FONT PUTIH
   ========================================================================== */
.mkd-news-card .btn-more,
.news-card-modern .news-more,
.news-more {
    display: inline-block !important;
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
}

.mkd-news-card .btn-more:hover,
.news-card-modern .news-more:hover,
.news-more:hover {
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
    transform: translateX(3px) !important;
}

.mkd-news-card .btn-more i,
.news-more i {
    display: none;
}

.news-card-modern .news-body {
    padding: 24px;
}

.news-card-modern .news-more {
    display: inline-block !important;
    margin-top: 10px;
}

/* ==========================================================================
   CTA SECTION - MODERN & MENARIK
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0F4C3A 0%, #1B6B53 50%, #0F4C3A 100%);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://baru.makedonia.ac.id/media/banner/20210920135727-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-secondary), transparent);
    z-index: 2;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 183, 77, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 183, 77, 0.3);
}

.cta-badge i {
    color: var(--color-accent);
    font-size: 16px;
}

.cta-badge span {
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-section h2 .highlight {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.cta-section h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 183, 77, 0.3);
    border-radius: 10px;
    z-index: -1;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #E5A63A 100%);
    color: var(--color-primary);
    padding: 16px 40px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 183, 77, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 183, 77, 0.4);
    gap: 15px;
    color: var(--color-primary);
}

.cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.cta-decoration .dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    .cta-section h2 {
        font-size: 32px;
    }
    .cta-section p {
        font-size: 16px;
        padding: 0 20px;
    }
    .cta-button {
        padding: 14px 32px;
        font-size: 14px;
    }
    .cta-badge {
        padding: 6px 18px;
    }
}

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
    padding: 70px 0;
    background: var(--color-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    padding: 35px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--color-heading);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

/* Responsive Testimonial */
@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 25px;
    }
}


/* ==========================================================================
   TESTIMONIAL SLIDER - AUTO SCROLL
   ========================================================================== */

.testimonial-section {
    padding: 70px 0;
    background: var(--color-white);
    overflow: hidden;
}

/* Slider Wrapper */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Slider Container */
.testimonial-slider-container {
    overflow: hidden;
    width: 100%;
}

/* Slider Track */
.testimonial-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

/* Testimonial Slide */
.testimonial-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

/* Testimonial Card */
.testimonial-slide .testimonial-card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    padding: 35px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.testimonial-slide .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-slide .testimonial-card p {
    font-size: 16px;
    color: var(--color-heading);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 100px;
}

.testimonial-slide .testimonial-card h4 {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

/* Tombol Navigasi */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.05);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Dots Indicator */
.testimonial-dots {
    text-align: center;
    margin-top: 40px;
}

.testimonial-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--color-accent);
    width: 30px;
    border-radius: 10px;
}

.testimonial-dot:hover {
    background: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px);
    }
    .testimonial-slider-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .testimonial-slider-wrapper {
        padding: 0 30px;
    }
    .section-title h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   TESTIMONIAL SECTION TITLE - CENTER
   ========================================================================== */

.testimonial-section .section-title {
    text-align: center !important;
    width: 100% !important;
}

.testimonial-section .section-title span,
.testimonial-section .section-title h2 {
    text-align: center !important;
    display: block !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#footer {
    background: var(--color-primary);
    color: rgba(255,255,255,.7);
}

.subfooter {
    padding: 50px 0 30px;
}

#footer a {
    color: rgba(255,255,255,.8);
}

#footer a:hover {
    color: var(--color-accent);
}

/* Social Media - Lingkaran di Tengah */
.social {
    text-align: center;
}

.social ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.social ul li {
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
}

.social ul li strong {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    font-weight: 600;
}

.social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* HOVER - efek transparan/soft, tidak berubah warna mencolok */
.social ul li a:hover {
    background: rgba(255,255,255,0.25);
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Responsive Social Media */
@media (max-width: 768px) {
    .social {
        text-align: center;
        margin-top: 20px;
    }
    .social ul li {
        margin: 0 6px;
    }
    .social ul li a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

hr {
    border-color: rgba(255,255,255,0.1);
    margin: 25px 0;
}

.copyright {
    font-size: 13px;
    opacity: 0.7;
    text-align: center;
}

/* ==========================================================================
   BACK TO TOP - VERSI FONT AWESOME
   ========================================================================== */
.cd-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-size: 24px !important;
    text-decoration: none !important;
}

.cd-top i {
    color: var(--color-primary) !important;
    font-size: 24px !important;
}

.cd-top:hover {
    transform: translateY(-5px);
    background: var(--color-primary) !important;
    color: var(--color-accent) !important;
}

.cd-top:hover i {
    color: var(--color-accent) !important;
}

.cd-top.cd-is-visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   RESPONSIVE UMUM
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-modern h1 {
        font-size: 48px;
    }
    .cta-section h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-image {
        height: 320px;
        margin-bottom: 30px;
    }
    .hero-modern {
        min-height: 70vh;
    }
    .hero-modern h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-modern {
        min-height: 60vh;
    }
    .hero-modern h1 {
        font-size: 32px;
    }
    .hero-modern p {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary-modern,
    .btn-outline-modern {
        width: 200px;
        text-align: center;
    }
    .section-heading {
        font-size: 28px;
    }
    .cta-section {
        padding: 50px 0;
    }
}

/* ==========================================================================
   LEGACY COLOR FIX
   ========================================================================== */
span[style*="color:#008080"],
span[style*="color: #008080"] {
    color: var(--color-primary) !important;
}

h3, h3 strong, h3 span {
    color: var(--color-primary) !important;
}

/* ==========================================================================
   MAIN CONTAINER & LAYOUT
   ========================================================================== */
.main-container {
    padding-top: 100px !important;
    padding-bottom: 50px !important;
}

/* ==========================================================================
   SIDEBAR STYLE - DARI MAKEDONIA.AC.ID ASLI
   ========================================================================== */

/* Panel sidebar */
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.panel-default {
    border-color: #ddd;
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-heading h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.panel-heading h3 a {
    color: var(--color-primary);
    text-decoration: none;
}

.panel-heading h3 a:hover {
    color: var(--color-accent);
}

.panel-body {
    padding: 15px;
}

/* Tanggal (small grey) */
.panel-body .small.grey,
.panel-body .small {
    color: var(--color-text) !important;
    font-size: 11px !important;
    margin-bottom: 3px;
}

/* Judul berita di sidebar */
.panel-body h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
}

.panel-body h4 a {
    color: var(--color-primary);
    text-decoration: none;
}

.panel-body h4 a:hover {
    color: var(--color-accent);
}

/* Deskripsi singkat */
.panel-body .vcrop2 {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* List berita lainnya */
.panel-body ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.panel-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.panel-body ul li:last-child {
    border-bottom: none;
}

.panel-body ul li .small.grey {
    margin-bottom: 3px;
}

.panel-body ul li a {
    color: #333;
    font-size: 13px;
    line-height: 1.5;
    display: block;
}

.panel-body ul li a:hover {
    color: var(--color-accent);
}

/* Hilangkan bullet */
.panel-body ul, .panel-body ul li {
    list-style: none !important;
}

/* ==========================================================================
   HALAMAN ARTIKEL (NEWS VIEW)
   ========================================================================== */
.article-title h1,
.content-title h1,
h1.article-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

.article-info,
.post-meta,
.article-meta {
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #eee !important;
    color: #888 !important;
    font-size: 13px !important;
}

.article-info span,
.post-meta span,
.article-meta span {
    margin-right: 15px !important;
    display: inline-block;
}

.article-share,
.share-buttons {
    margin: 20px 0 30px !important;
}

.article-image img,
.news-image-full {
    width: 100% !important;
    border-radius: 12px !important;
    margin-bottom: 25px !important;
}

.article-content,
.news-content-full {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: var(--color-text-dark) !important;
}

.article-content p,
.news-content-full p {
    margin-bottom: 20px !important;
    line-height: 1.8 !important;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    color: var(--color-primary) !important;
}

.article-content img {
    max-width: 100% !important;
    height: auto !important;
    margin: 20px 0 !important;
    border-radius: 8px !important;
}

.comments-section {
    margin-top: 40px !important;
    padding-top: 20px !important;
    border-top: 1px solid #eee !important;
}

.comments-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.comment-item {
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Responsive Article */
@media (max-width: 991px) {
    .main-container {
        padding-top: 80px !important;
    }
    .article-title h1 {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding-top: 70px !important;
        padding-bottom: 30px !important;
    }
    .article-title h1 {
        font-size: 24px !important;
    }
    .article-content p {
        font-size: 15px !important;
    }
}

/* ==========================================================================
   SIDEBAR KOTAK BERBAYANG (CARD SHADOW)
   ========================================================================== */

/* Sidebar container */
.col-md-4 {
    padding-left: 35px !important;
}

/* Widget box - efek bayangan seperti card */
.widget, 
.sidebar-box,
.panel.panel-default {
    background: #ffffff !important;
    border-radius: 16px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

/* Efek hover - bayangan membesar */
.widget:hover, 
.sidebar-box:hover,
.panel.panel-default:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-3px) !important;
}

/* Header widget */
.widget h3, 
.sidebar-box h3, 
.panel-heading h3,
.widget-title {
    background: transparent !important;
    color: var(--color-primary) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    padding: 0 0 12px 0 !important;
    margin: 0 20px !important;
    border-bottom: 3px solid var(--color-accent) !important;
    display: inline-block !important;
    width: auto !important;
}

/* Panel heading khusus untuk panel default */
.panel-default > .panel-heading {
    background: transparent !important;
    border: none !important;
    padding: 20px 20px 0 20px !important;
}

.panel-default > .panel-heading h3 {
    margin: 0 !important;
    padding: 0 0 12px 0 !important;
    border-bottom: 3px solid var(--color-accent) !important;
    display: inline-block !important;
}

/* Panel body */
.panel-body {
    padding: 20px !important;
}

/* Daftar berita di sidebar */
.news-list, 
.list-news, 
.widget ul,
.panel-body ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Item list */
.news-list li, 
.list-news li, 
.widget ul li,
.panel-body ul li {
    padding: 12px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    margin: 0 !important;
}

.news-list li:last-child, 
.list-news li:last-child, 
.widget ul li:last-child,
.panel-body ul li:last-child {
    border-bottom: none !important;
}

/* Tanggal */
.news-list .date, 
.list-news .date, 
.widget ul li .date,
.panel-body .small.grey {
    font-size: 11px !important;
    color: var(--color-accent) !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 6px !important;
}

/* Judul berita */
.news-list li a, 
.list-news li a, 
.widget ul li a,
.panel-body ul li a,
.panel-body h4 a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--color-primary) !important;
    line-height: 1.45 !important;
    display: block !important;
    text-decoration: none !important;
}

.news-list li a:hover, 
.list-news li a:hover, 
.widget ul li a:hover,
.panel-body ul li a:hover,
.panel-body h4 a:hover {
    color: var(--color-accent) !important;
}

/* Deskripsi singkat untuk item pertama */
.panel-body .vcrop2,
.widget ul li p {
    font-size: 12px !important;
    color: var(--color-text) !important;
    line-height: 1.5 !important;
    margin-top: 5px !important;
    margin-bottom: 0 !important;
}

/* Judul h4 dalam panel */
.panel-body h4 {
    margin: 0 0 8px 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .col-md-4 {
        padding-left: 15px !important;
        margin-top: 40px !important;
    }
}

@media (max-width: 768px) {
    .news-list li, 
    .list-news li, 
    .widget ul li,
    .panel-body ul li {
        padding: 10px 0 !important;
    }
    .widget h3,
    .panel-heading h3 {
        margin: 0 15px !important;
        font-size: 16px !important;
    }
    .panel-body {
        padding: 15px !important;
    }
}

/* ==========================================================================
   USER WELCOME DI HEADER KANAN
   ========================================================================== */

.user-welcome-nav {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.user-welcome-nav li {
    margin-left: 5px;
}

.user-welcome-nav li a {
    color: rgba(255,255,255,0.9) !important;
    font-size: 13px !important;
    padding: 8px 12px !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.user-welcome-nav li a:hover {
    color: var(--color-accent) !important;
    background: rgba(255,255,255,0.1) !important;
}

.user-welcome-nav .welcome-user a b {
    color: var(--color-accent);
    margin-left: 3px;
}

/* Responsive */
@media (max-width: 767px) {
    .user-welcome-nav {
        margin-right: 0;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

/* ==========================================================================
   MENU MODERN - SEPERTI GRI
   ========================================================================== */

/* Navbar container */
.navbar-default {
    background: transparent !important;
    border: none !important;
}

/* Menu utama */
.navbar-nav {
    margin-right: 0;
}

.navbar-nav > li {
    margin-left: 5px;
    position: relative;
}

.navbar-nav > li > a {
    color: rgba(255,255,255,.9) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 12px 18px !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    font-family: 'caption_font', sans-serif !important;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
    color: var(--color-accent) !important;
    background: rgba(255,255,255,.1) !important;
}

/* Dropdown menu */
.navbar-nav .dropdown-menu {
    background: var(--color-primary) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 10px 0 !important;
    margin-top: 10px !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
    min-width: 220px !important;
}

.navbar-nav .dropdown-menu:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color-primary);
}

.navbar-nav .dropdown-menu > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-nav .dropdown-menu > li:last-child {
    border-bottom: none;
}

.navbar-nav .dropdown-menu > li > a {
    color: rgba(255,255,255,.85) !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
}

.navbar-nav .dropdown-menu > li > a:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--color-accent) !important;
    padding-left: 25px !important;
}

/* Dropdown submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 5px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    content: "›";
    float: right;
    font-size: 16px;
}

/* Mobile menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--color-primary) !important;
        border-radius: 12px !important;
        margin-top: 15px !important;
        padding: 15px !important;
    }
    
    .navbar-nav .dropdown-menu {
        background: rgba(255,255,255,0.1) !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        margin-top: 0 !important;
    }
    
    .navbar-nav .dropdown-menu:before {
        display: none;
    }
    
    .dropdown-submenu > .dropdown-menu {
        left: 0;
        margin-left: 15px;
    }
}

/* Pastikan dropdown tampil di desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        display: none;
        position: absolute;
    }
    .navbar-nav .dropdown.open .dropdown-menu {
        display: block;
    }
}

/* ==========================================================================
   DROPDOWN MULTI-LEVEL - PAKSA KE KANAN (FINAL)
   ========================================================================== */

/* Reset semua posisi submenu */
.dropdown-submenu {
    position: relative !important;
}

/* Submenu level 2 dan 3 - PAKSA KE KANAN */
.dropdown-submenu > .dropdown-menu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    right: auto !important;
    margin-top: 0 !important;
    margin-left: 5px !important;
    display: none !important;
    z-index: 99999 !important;
}

/* Muncul saat hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block !important;
}

/* Hapus semua kemungkinan CSS yang override */
.navbar-nav .dropdown-submenu .dropdown-menu,
.navbar .dropdown-submenu .dropdown-menu,
.dropdown-submenu .dropdown-menu {
    left: 100% !important;
    right: auto !important;
}

/* Arrow panah untuk submenu */
.dropdown-submenu > a:after {
    content: "›" !important;
    float: right !important;
    margin-left: 10px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    border: none !important;
}

/* Hilangkan panah bawaan */
.dropdown-submenu > a:after {
    border: none !important;
}

/* Untuk menu yang mepet kanan layar - tetap ke kanan */
@media (min-width: 992px) {
    .dropdown-submenu > .dropdown-menu {
        left: 100% !important;
        right: auto !important;
    }
}

/* Untuk mobile */
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        position: relative !important;
        left: 0 !important;
        margin-left: 15px !important;
        width: calc(100% - 15px) !important;
    }
    .dropdown-submenu > a:after {
        content: "↓" !important;
    }
}

/* Force override */
.dropdown-menu .dropdown-menu {
    transform: translateX(0) !important;
}

/* ==========================================================================
   SEE ALSO SLIDER - UKURAN BESAR (3 ITEMS)
   ========================================================================== */

/* Container utama - perbesar tinggi */
#slider3_container {
    width: 100% !important;
    height: 320px !important;
    border-radius: 16px;
    overflow: hidden;
}

/* Wrapper slider */
#slider3_container > div {
    height: 320px !important;
}

/* Perbesar ukuran slide */
#slider3_container .small {
    width: 220px !important;
    height: 300px !important;
    border-radius: 16px;
    margin: 10px !important;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#slider3_container .small:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

/* Perbesar gambar */
#slider3_container .center-img {
    width: 100% !important;
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 16px 16px 0 0;
}

/* Perbesar judul */
#slider3_container .vcrop3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 15px !important;
    line-height: 1.5 !important;
    color: var(--color-primary);
    text-align: center;
}

/* Hanya tampilkan 3 slide pertama (atau batasi yang ditampilkan) */
#slider3_container .small {
    display: block !important;
}

/* Sembunyikan slide ke-4 dan seterusnya (opsional) */
#slider3_container .small:nth-child(n+4) {
    display: none !important;
}

/* Perbaiki posisi arrow navigator */
.jssora03l, .jssora03r {
    width: 45px !important;
    height: 45px !important;
    background: rgba(15,76,58,0.85) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.jssora03l {
    left: -15px !important;
}

.jssora03r {
    right: -15px !important;
}

/* Responsive */
@media (max-width: 992px) {
    #slider3_container .small {
        width: 200px !important;
    }
}

@media (max-width: 768px) {
    #slider3_container {
        height: auto !important;
    }
    
    #slider3_container .small {
        width: 100% !important;
        margin: 10px 0 !important;
    }
}

/* ==========================================================================
   SEE ALSO SLIDER - AUTO SLIDE DENGAN UKURAN PAS
   ========================================================================== */

/* Container see also */
.see-also-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

/* Header */
.see-also-header {
    background: linear-gradient(135deg, var(--color-primary), #0A3529);
    padding: 12px 20px;
}

.see-also-header h3 {
    margin: 0;
    color: var(--color-accent) !important;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.see-also-header h3 i {
    color: var(--color-accent);
    font-size: 18px;
}

/* Slider container */
.see-also-slider {
    padding: 15px;
    background: var(--color-light);
    position: relative;
}

/* Track slider */
.see-also-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.see-also-track::-webkit-scrollbar {
    display: none;
}

/* Item card - ukuran pas tidak terlalu besar */
.see-also-item {
    flex: 0 0 200px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.see-also-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Gambar */
.see-also-item .item-image {
    height: 130px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.see-also-item:hover .item-image {
    transform: scale(1.03);
}

/* Konten */
.see-also-item .item-content {
    padding: 12px;
}

/* Badge */
.see-also-item .item-badge {
    display: inline-block;
    background: rgba(255,183,77,0.12);
    color: var(--color-accent);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
}

/* Judul */
.see-also-item .item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Deskripsi */
.see-also-item .item-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tombol */
.see-also-item .item-btn {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Tombol navigasi */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav-btn:hover {
    opacity: 1;
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.05);
}

.slider-nav-prev {
    left: 5px;
}

.slider-nav-next {
    right: 5px;
}

/* Dots */
.see-also-dots {
    text-align: center;
    padding: 10px 0 15px;
    background: var(--color-light);
}

.see-also-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-also-dot.active {
    width: 18px;
    border-radius: 10px;
    background: var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .see-also-item {
        flex: 0 0 170px;
    }
    
    .see-also-item .item-image {
        height: 110px;
    }
    
    .see-also-item .item-title {
        font-size: 12px;
    }
}

/* ==========================================================================
   NEWS LIST MODERN - PERBAIKAN TOTAL
   ========================================================================== */

/* Container utama daftar berita */
.row[style*="margin-top:20px"] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0 !important;
}

/* Setiap item berita */
.row[style*="margin-top:20px"] > div[class*="col-xs-12"] {
    width: 100% !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

/* Card media - perbaiki layout */
.row[style*="margin-top:20px"] .media {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 16px !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #eef2f6 !important;
    min-height: auto !important;
}

.row[style*="margin-top:20px"] .media:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 183, 77, 0.3);
}

/* Bagian gambar kiri */
.row[style*="margin-top:20px"] .media-left {
    display: block !important;
    float: none !important;
    flex-shrink: 0 !important;
    padding-right: 0 !important;
}

/* Gambar */
.row[style*="margin-top:20px"] .center-img {
    width: 110px !important;
    height: 110px !important;
    border-radius: 14px !important;
    background-size: cover !important;
    background-position: center !important;
    margin-bottom: 0 !important;
    transition: transform 0.3s ease;
}

.row[style*="margin-top:20px"] .media:hover .center-img {
    transform: scale(1.03);
}

/* Bagian konten kanan */
.row[style*="margin-top:20px"] .media-body {
    display: block !important;
    width: auto !important;
    flex: 1 !important;
    overflow: hidden;
}

/* Judul berita */
.row[style*="margin-top:20px"] .media-heading {
    margin: 0 0 8px 0 !important;
}

.row[style*="margin-top:20px"] .media-heading a {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.row[style*="margin-top:20px"] .media-heading a:hover {
    color: var(--color-accent) !important;
}

/* Deskripsi singkat */
.row[style*="margin-top:20px"] .vcrop3 {
    font-size: 12px !important;
    color: var(--color-text) !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Tanggal - perbaiki tampilan */
.row[style*="margin-top:20px"] .small.grey {
    font-size: 11px !important;
    color: var(--color-accent) !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

.row[style*="margin-top:20px"] .small.grey::before {
    content: "\f017";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 11px;
    color: var(--color-accent);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .row[style*="margin-top:20px"] .media {
        padding: 12px !important;
        gap: 12px !important;
    }
    
    .row[style*="margin-top:20px"] .center-img {
        width: 85px !important;
        height: 85px !important;
    }
    
    .row[style*="margin-top:20px"] .media-heading a {
        font-size: 13px !important;
    }
    
    .row[style*="margin-top:20px"] .vcrop3 {
        font-size: 11px !important;
        -webkit-line-clamp: 2 !important;
    }
}

@media (max-width: 480px) {
    .row[style*="margin-top:20px"] .media {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .row[style*="margin-top:20px"] .center-img {
        width: 100% !important;
        height: 160px !important;
    }
    
    .row[style*="margin-top:20px"] .media-left {
        width: 100% !important;
    }
    
    .row[style*="margin-top:20px"] .media-body {
        width: 100% !important;
    }
}

/* HILANGKAN SEMUA BADGE DI KARTU BERITA */
.row[style*="margin-top:20px"] .media::after {
    display: none !important;
    content: none !important;
}

/* Atau jika badge masih muncul dengan selector lain */
.row[style*="margin-top:20px"] .media::before {
    display: none !important;
    content: none !important;
}

/* Hilangkan juga jika ada pseudo-element lain yang muncul */
div[class*="col-xs-12"] .media::after,
div[class*="col-xs-12"] .media::before {
    display: none !important;
}

/* ==========================================================================
   GALLERY 3 KOLOM - KHUSUS UNTUK GALLERY SAJA (TIDAK MEMPENGARUHI NEWS LIST)
   ========================================================================== */

/* Target khusus untuk gallery - berdasarkan ada tidaknya class col-xs-6 di dalamnya */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

/* Reset semua item gallery */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"],
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"],
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"] {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Hover effect gallery */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"]:hover,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"]:hover,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Gambar gallery */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) img {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
}

.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"]:hover img,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"]:hover img,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"]:hover img {
    transform: scale(1.02);
}

/* Overlay hover gallery */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"] > a,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"] > a,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"] > a {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"] > a::after,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"] > a::after,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"] > a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 58, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"]:hover > a::after,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"]:hover > a::after,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"]:hover > a::after {
    opacity: 1;
}

/* Icon zoom gallery */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"] > a::before,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"] > a::before,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"] > a::before {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 22px;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0;
}

.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"]:hover > a::before,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"]:hover > a::before,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"]:hover > a::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Info gallery */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"] > div[style*="display:block"],
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"] > div[style*="display:block"],
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"] > div[style*="display:block"] {
    padding: 10px 12px !important;
    width: 100% !important;
    min-height: auto !important;
}

/* Judul gallery */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"] > div a,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"] > div a,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"] > div a {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-xs-6"] > div a:hover,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-sm-4"] > div a:hover,
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) > div[class*="col-md-4"] > div a:hover {
    color: var(--color-accent);
}

/* Badge count */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) .badge {
    background: rgba(255, 183, 77, 0.12);
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
}

/* Tanggal gallery */
.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) .small.grey {
    font-size: 10px !important;
    color: var(--color-text) !important;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) .small.grey::before {
    content: "\f017";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 9px;
    color: var(--color-accent);
}

/* Pagination styling */
.pagination {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin: 20px 0;
}

.pagination li {
    display: inline-block;
    list-style: none;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 8px;
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination li.active a,
.pagination li a:hover {
    background: var(--color-accent);
    color: white;
}

/* ==========================================================================
   RESPONSIVE GALLERY
   ========================================================================== */

/* Tablet: 2 kolom */
@media (max-width: 992px) {
    .main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) img {
        height: 150px !important;
    }
}

/* Mobile: 1 kolom */
@media (max-width: 768px) {
    .main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .main-container .row[style*="margin-top:20px"]:has(> div[class*="col-xs-6"]) img {
        height: 200px !important;
    }
}

/* ==========================================================================
   HALAMAN ARTIKEL (NEWS) - STYLE SAMA DENGAN FASILITAS
   ========================================================================== */

/* Container utama artikel */
.bodytext {
    padding: 0;
    margin: 0;
}

/* HEADER ARTIKEL - SAMA DENGAN HEADER FASILITAS */
.news-header {
    background: linear-gradient(135deg, #0F4C3A 0%, #1B6B53 100%);
    color: white;
    padding: 50px 30px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 40px;
}

.news-header h1 {
    color: white;
    margin: 0 0 15px;
    font-size: 32px;
    font-weight: 800;
}

.news-header h1:last-child {
    color: var(--color-accent);
    margin: 0;
    font-size: 32px;
}

/* KATEGORI BADGE - SEPERTI SUBTITLE FASILITAS */
.news-category {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* JUDUL ARTIKEL */
.news-title {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* META INFO - SEPERTI DESKRIPSI FASILITAS */
.news-meta {
    border-left: 5px solid var(--color-accent);
    padding-left: 20px;
    margin-bottom: 30px;
}

.news-meta p {
    font-size: 14px;
    color: var(--color-text);
    margin: 5px 0;
}

.news-meta i {
    color: var(--color-accent);
    margin-right: 8px;
    width: 16px;
}

.news-meta a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.news-meta a:hover {
    color: var(--color-accent);
}

/* TAGS SECTION - SEPERTI CARD FASILITAS */
.news-tags {
    background: linear-gradient(135deg, #f7f9fc 0%, #eef2f8 100%);
    padding: 20px 25px;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid #dce3ed;
}

.news-tags h4 {
    color: var(--color-primary);
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-tags h4 i {
    color: var(--color-accent);
}

.tag-item {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 30px;
    margin: 5px 8px 5px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* SHARE BUTTONS - SEPERTI CARD FASILITAS */
.news-share {
    background: linear-gradient(135deg, #ecf2f8 0%, #dfe8f3 100%);
    padding: 20px 25px;
    border-radius: 16px;
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.news-share span {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn i {
    font-size: 14px;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn.facebook {
    background: #4267B2;
    color: white;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

/* KONTEN ARTIKEL - SAMA DENGAN CARD FASILITAS */
.news-content {
    background: linear-gradient(135deg, #f2f6fa 0%, #e8eef5 100%);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
}

.news-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.9;
    margin: 0 0 20px 0;
    text-align: justify;
}

.news-content p:last-child {
    margin-bottom: 0;
}

/* PARAGRAF PERTAMA (LEAD) */
.news-content p:first-of-type {
    font-size: 18px;
    font-weight: 600;
    border-left: 5px solid var(--color-accent);
    padding-left: 20px;
}

/* QUOTE DALAM ARTIKEL */
.news-content blockquote {
    background: rgba(255, 183, 77, 0.1);
    border-left: 5px solid var(--color-accent);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 12px;
    font-style: italic;
    color: #2c5f8a;
}

/* CTA / PENUTUP ARTIKEL - SAMA DENGAN CTA FASILITAS */
.news-footer {
    background: linear-gradient(135deg, #0F4C3A 0%, #1B6B53 100%);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    margin: 40px 0 20px 0;
}

.news-footer h3 {
    color: var(--color-accent);
    margin: 0 0 15px 0;
    font-size: 22px;
}

.news-footer .footer-divider {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 0 auto 20px auto;
}

.news-footer p {
    color: white;
    line-height: 1.7;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
}

.news-footer .verse {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: bold;
    margin-top: 20px;
}

/* ARTIKEL TERKAIT (SIDEBAR) */
.related-articles {
    background: linear-gradient(135deg, #d9e6f2 0%, #c5d9e8 100%);
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
}

.related-articles h3 {
    color: var(--color-primary);
    margin: 0 0 20px 0;
    font-size: 20px;
    border-left: 5px solid var(--color-accent);
    padding-left: 15px;
}

.related-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 76, 58, 0.1);
}

.related-articles ul li:last-child {
    border-bottom: none;
}

.related-articles ul li a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: all 0.3s ease;
}

.related-articles ul li a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.related-articles .article-date {
    font-size: 11px;
    color: var(--color-text);
    margin-top: 5px;
    display: block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .news-header {
        padding: 35px 20px;
    }
    
    .news-header h1 {
        font-size: 24px;
    }
    
    .news-title {
        font-size: 24px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content p {
        font-size: 14px;
    }
    
    .news-content p:first-of-type {
        font-size: 16px;
    }
    
    .news-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .news-footer {
        padding: 25px 20px;
    }
    
    .news-footer h3 {
        font-size: 18px;
    }
}