/* ===================================================================
   BASE + RESET
=================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body { color: #111827; background:#fff; }
img { max-width: 100%; height: auto; display:block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background:none; }


/* ===================================================================
   CONTAINER (Tailwind Accurate)
=================================================================== */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media(min-width:640px){
    .container { max-width: 640px; padding-left:1.5rem; padding-right:1.5rem; }
}
@media(min-width:768px){
    .container { max-width: 768px; }
}
@media(min-width:1024px){
    .container { max-width: 1024px; }
}
@media(min-width:1280px){
    .container { max-width: 1280px; }
}

@media (min-width: 1024px) {
  #mobile-menu {
    display: none !important;
  }
}


/* ===================================================================
   UTILITY CLASSES 
=================================================================== */
.flex { display:flex; }
.flex-col { flex-direction:column; }
.flex-center { display:flex; justify-content:center; align-items:center; }
.flex-end { display:flex; justify-content:flex-end; align-items:center; }

.items-center { align-items:center; }
.justify-center { justify-content:center; }
.justify-between { justify-content:space-between; }

.w-full { width:100%; }
.h-full { height:100%; }

.hidden { display:none; }
.block { display:block; }

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

.rounded { border-radius: .25rem; }
.rounded-full { border-radius:9999px; }

.shadow { box-shadow:0 1px 3px rgba(0,0,0,.1); }
.shadow-lg { box-shadow:0 10px 15px rgba(0,0,0,.15); }

.transition { transition:all .2s ease; }

.mt-20 { margin-top:1.25rem; }
.mb-40 { margin-bottom:2.5rem; }

/* ===================================================================
   TYPE
=================================================================== */
h1.hero-title {
    font-size: 2rem;
    line-height:1.2;
    font-weight:800;
    color:#fff;
}

@media(min-width:640px){
    h1.hero-title { font-size:2.75rem; }
}
@media(min-width:1024px){
    h1.hero-title { font-size:3.5rem; }
}

h2 {
    font-size:1.875rem;
    font-weight:700;
    margin-bottom:.5rem;
}

h3 {
    font-size:1.25rem;
    font-weight:600;
}

p {
    font-size:1rem;
    line-height:1.6;
    color:#4b5563;
}

/* ===================================================================
   COLORS
=================================================================== */
.bg-light { background:#f9fafb; }
.bg-white { background:#fff; }
.text-white { color:#fff; }
.text-dark { color:#111827; }

/* ===================================================================
   TOP CONTACT BAR
=================================================================== */
.top-contact-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #111827;
    color: #fff;
    padding: 5px 0;
}

.top-contact-bar .contact-items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.top-contact-bar span {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.btn-blue {
    background: #2563eb;
    color: white;
    padding: .45rem 1rem;
    border-radius: .25rem;
    font-size: .875rem;
}

/* ===================================================================
   DESKTOP DROPDOWN
=================================================================== */
/* ===== DROPDOWN (Kontak) ===== */
.menu-item {
    position: relative;
}

.has-dropdown {
    display: inline-block;
}

/* Button trigger */
.dropdown-trigger {
    background: none;
    border: none;
    font-size: 1rem;
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Dropdown container */
.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    padding: .5rem 0;
    display: none;
    z-index: 999;
}

/* SHOW ONLY WHEN CLICKED */
.has-dropdown:focus-within .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu a {
    display: block;
    padding: .65rem 1rem;
    font-size: .95rem;
    color: #111827;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #1e3a8a;
}


/* ===================================================================
   NAVBAR
=================================================================== */
.navbar {
    position: sticky;
    top: 30px; /* height of contact bar */
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}


/* Desktop Menu */
.menu-desktop {
    display: none;
    gap: 1.75rem;
    align-items: center;
}

.menu-desktop a {
    color: #111827;
    font-size: 1rem;
    transition: .2s;
}
.menu-desktop a:hover {
    color: #2563eb;
}

.round-yellow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #facc15;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.round-yellow:hover {
    background: #eab308;
}

.mobile-menu-btn {
    font-size: 1.5rem;
    color: #111827;
}

/* Desktop breakpoint */
@media (min-width:1024px) {
    .menu-desktop { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* ===================================================================
   LANGUAGE SELECTOR
=================================================================== */
.lang-selector {
    position: relative;
}

/* Hide menu by default */
.lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .25rem;
    min-width: 120px;
    padding: .5rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

.lang-selector:focus-within .lang-menu {
    display: block;
}

.lang-menu a {
    display: block;
    padding: .5rem 1rem;
}

.lang-menu a:hover {
    background: #f3f4f6;
}

/* ===================================================================
   MOBILE MENU
=================================================================== */
.mobile-menu {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-lang {
    display: flex;
    gap: .5rem;
    margin-top: .5rem;
}

.mobile-btn-yellow {
    background: #facc15;
    padding: .75rem;
    border-radius: .25rem;
    text-align: center;
}

/* Hide mobile menu on desktop */
@media (min-width:1024px) {
    #mobile-menu { display: none !important; }
}


/* ===================================================================
   Blog Hero
=================================================================== */
.blog-hero {
    background: #f9fafb;
    padding: 4rem 0 3rem;
}

.blog-label {
    font-size: .75rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: .05em;
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: .75rem 0;
}

.blog-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #4b5563;
}

/* ===================================================================
   Blog Isi
=================================================================== */
.blog-list {
    padding: 3rem 0 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,.08);
    transition: transform .2s;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

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

.blog-card-content span {
    font-size: .75rem;
    font-weight: 700;
    color: #2563eb;
}

.blog-card-content h3 {
    margin: .5rem 0;
}

.blog-card-content a {
    font-weight: 600;
    color: #2563eb;
}


/* ===================================================================
   Featured Blog
=================================================================== */

.featured-blog {
    padding: 3rem 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.featured-card img {
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 2rem;
}

.blog-category {
    font-size: .75rem;
    font-weight: 700;
    color: #facc15;
}

.featured-content h2 {
    margin: .75rem 0;
    font-size: 1.75rem;
}

.blog-btn {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #2563eb;
}

/* ===================================================================
   Pagination
=================================================================== */
.pagination {
    display: inline-flex;
    gap: .5rem;
    margin-top: 2rem;
    margin-bottom: 15px;
}

.pagination a {
    padding: .5rem .75rem;
    border-radius: .25rem;
    background: #f3f4f6;
    font-weight: 600;
}

.pagination a.active {
    background: #2563eb;
    color: #fff;
}


/* ===================================================================
   Contact Form
=================================================================== */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: .75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: .5rem;
    border: 1px solid #d1d5db;
    font-family: inherit;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1d78b5;
}

.contact-points {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.contact-points li {
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-points i {
    color: #16a34a;
    margin-right: 8px;
}

/* ===================================================================
   FOOTER
=================================================================== */
.footer {
    background:#111827;
    color:white;
    padding:3rem 0 1.5rem;
}

.footer p{
    color:white
}

.footer-grid {
    display:grid;
    gap:2rem;
}

@media(min-width:768px){
    .footer-grid {
        grid-template-columns:1fr 1fr;
    }
}

.footer h4 {
    font-size:1.125rem;
    font-weight:600;
    margin-bottom:.75rem;
}

.footer a {
    display:block;
    margin-bottom:.5rem;
    color:#e5e7eb;
    font-size:.95rem;
}
.footer a:hover {
    color:#facc15;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    font-size: .875rem;
    margin-top: 2rem;
    color: #9ca3af;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: .75rem;
}

.social-links a {
    display: inline-flex; 
}

.social-links :hover {
    color: #facc15;
}

/* ----------------------------------
   WHATSAPP BUTTON
---------------------------------- */
.wa-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

