/* ==========================================================================
   1. RESET & STANDARISASI DESIGN SYSTEM VARIABLES (FUTURISTIK)
   ========================================================================== */
:root {
    --primary-color: #005356;    /* Dark Tech Teal */
    --accent-color: #1f70f2;     /* Modern Electric Blue */
    --bg-global: #dee8f7;        /* Soft Sleek Background Tint */
    --text-main: #0f172a;        /* Slate Dark Gray for UX readability */
    --text-muted: #475569;
    --white: #ffffff;
    --radius-lg: 16px;
    --radius-md: 8px;
    --radius-sm: 4px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    background-color: var(--bg-global);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. HEADER & NAVIGATION (Simetris & Fluid)
   ========================================================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(31, 112, 242, 0.1);
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo img {
    height: auto;
    max-width: 190px;
}

ul.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

ul.menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

ul.menu li a:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* ==========================================================================
   3. HERO BANNER HOME
   ========================================================================== */
.hero-banner {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

.banner-wrapper {
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
}

.banner-item img.img-hero {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ==========================================================================
   4. LAYOUT KONTEN UTAMA (Grid Responsif & Breadcrumbs)
   ========================================================================== */
.main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.main-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
}

.breadcrumb-nav {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.content-item {
    width: 100%
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.content-item img.img-fluid {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.main-content h1, .entry-title {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
}

.main-content h2 {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 400;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.article-body {
    padding:20px 0px;
    font-size: 15px;
    color: #334155;
    line-height: 1.75;
}

.article-body p {
    margin-bottom: 18px;
}

.sidebar {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    height: fit-content;
}

.widget-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 8px;
    text-transform: uppercase;
}

/* ==========================================================================
   5. MARKETING CARDS (UI Terpadu untuk Mobile & Desktop)
   ========================================================================== */
.marketing-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.marketing-avatar {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    margin-right: 16px;
}

.marketing-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.marketing-info {
    flex-grow: 1;
    text-align: left;
}

.marketing-name {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.marketing-card .inline-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    object-fit: contain;
}

.marketing-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.btn-marketing {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.btn-marketing.btn-wa {
    background-color: #25D366;
    color: var(--white);
}

.btn-marketing.btn-wa:hover {
    background-color: #1ebd59;
    transform: translateY(-1px);
}

.btn-marketing.btn-tlp {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-marketing.btn-tlp:hover {
    background-color: #072e30;
    transform: translateY(-1px);
}

.btn-marketing .inline-icon {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   6. BOTTOM BLOCKS & GRID ARCHITECTURE
   ========================================================================== */
.bottom-grid-container {
    max-width: 1100px;
    margin: 10px auto 40px auto;
    padding: 0 20px;
}

.container-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.content-box {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
}

.box-title {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Penyelarasan Fleksibel Mobile */
/* Batasi tinggi box agar tidak terlalu panjang */
.scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 535px;        /* Sesuaikan tinggi maksimal sesuai keinginan Anda */
    overflow-y: auto;         /* Munculkan scrollbar jika konten melebihi max-height */
    padding-right: 8px;       /* Memberi ruang untuk scrollbar */
}

/* Styling scrollbar agar terlihat modern/futuristik */
.scroll-wrapper::-webkit-scrollbar {
    width: 6px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.card-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.posting-list {
    list-style: none;
}

.posting-list li {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    font-size: 14px;
}

.list-num {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}

.location-box .box-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.maps-trigger img {
    width: 100%;
    border-radius: var(--radius-md);
}

address {
    font-style: normal;
    font-size: 13px;
    color: var(--text-muted);
}

address strong {
    color: var(--primary-color);
    font-size: 15px;
    display: block;
    margin-bottom: 6px;
}

.contact-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.hours {
    margin-top: 8px;
    font-weight: bold;
    color: #25D366;
}

.street {
    margin-top: 8px;
    border-top: 1px dashed rgba(0,0,0,0.08);
    padding-top: 8px;
}

/* ==========================================================================
   7. FOOTER STYLES
   ========================================================================== */
.site-footer {
    background: var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    color: var(--white);
    font-size: 13px;
}

/* ==========================================================================
   8. FUTURISTIK FLOATING CONVERSION CTA (ANIMATED PULSE)
   ========================================================================== */
.floating-bubble {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ffffff;
    color: #0c3e72; /* Warna senada brand Anda */
    padding: 12px 20px;
    border-radius: 20px 20px 5px 20px; /* Bentuk seperti chat bubble */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(12, 62, 114, 0.1);
}

.floating-bubble:hover {
    transform: scale(1.05);
    background: #f8fbff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Sedikit animasi kedip yang sangat halus (hampir tidak terlihat) */
@keyframes soft-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.floating-bubble {
    animation: soft-blink 3s infinite;
}

/* ==========================================================================
   9. MEDIA QUERIES (RESPONSIVE ALIGNMENT FOR PC DESKTOP)
   ========================================================================== */
@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .logo {
        margin-bottom: 0;
    }

    ul.menu {
        justify-content: flex-end;
        margin-top: 0;
    }

    .main-container {
        grid-template-columns: 2.7fr 1.3fr; /* Konten Utama Kiri, Sidebar Kanan */
    }

    .container-inner {
        grid-template-columns: repeat(3, 1fr); /* 3 Box Bawah Sejajar Horizontal Sempurna */
        align-items: start;
    }

