/* ============================================================
   Mitra Budi Jaya — Local SEO Website
   Design: Clean Professional / Trust-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- Variables ---- */
:root {
  --navy:       #0F2E4D;
  --navy-mid:   #1A4468;
  --blue:       #1D7FBF;
  --blue-light: #EBF5FB;
  --teal:       #0D9488;
  --teal-light: #CCFBF1;
  --amber:      #D97706;
  --amber-light:#FEF3C7;
  --green:      #059669;
  --green-wa:   #25D366;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text:       #1E293B;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow:     0 4px 20px rgba(13,46,77,.10);
  --shadow-lg:  0 8px 40px rgba(13,46,77,.15);
  --font-body:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display:'DM Serif Display', Georgia, serif;
  --max-w:      1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; }

/* ---- Layout ---- */
.container { width: min(var(--max-w), 100% - 2rem); margin-inline: auto; }
section { padding: 72px 0; }
.section-tag { display: inline-block; background: var(--teal-light); color: var(--teal); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 12px; }
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ---- Topbar ---- */
.topbar { background: var(--navy); color: rgba(255,255,255,.8); font-size: .8rem; padding: 8px 0; }
.topbar .container { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.topbar a { color: rgba(255,255,255,.85); transition: color .2s; }
.topbar a:hover { color: var(--amber-light); }
.topbar-icon { margin-right: 5px; }

/* ---- Header / Nav ---- */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 900; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; gap: 1rem; padding: 14px 0; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-logo .brand-text { display: flex; flex-direction: column; }
.nav-logo .brand-name { font-size: 1rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.nav-logo .brand-tag  { font-size: .7rem; color: var(--gray-600); font-weight: 500; }
.nav-links { display: flex; gap: .25rem; align-items: center; margin-left: auto; }
.nav-links a { padding: 7px 14px; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 600; color: var(--gray-800); transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--blue-light); color: var(--navy); }
.nav-cta { background: var(--green-wa) !important; color: var(--white) !important; border-radius: 999px !important; padding: 8px 20px !important; display: flex; align-items: center; gap: 6px; }
.nav-cta:hover { background: #1fba5a !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; border: none; background: none; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ---- Hero ---- */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a5980 100%); color: var(--white); padding: 80px 0 72px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 999px; font-size: .8rem; font-weight: 600; margin-bottom: 20px; color: rgba(255,255,255,.9); }
.hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 16px; color: var(--white); }
.hero h1 em { font-style: normal; color: var(--amber-light); }
.hero p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 28px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 999px; font-size: .925rem; font-weight: 700; cursor: pointer; border: none; transition: all .25s; white-space: nowrap; }
.btn-wa { background: var(--green-wa); color: var(--white); }
.btn-wa:hover { background: #1fba5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-amber { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: #b45309; transform: translateY(-2px); }
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hero-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.hero-card-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.hero-card-text h4 { font-size: .9rem; font-weight: 700; color: var(--white); }
.hero-card-text p { font-size: .78rem; color: rgba(255,255,255,.7); }

/* ---- Stats Bar ---- */
.stats-bar { background: var(--navy); padding: 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 14px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--amber-light); line-height: 1; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500; }
.stat-icon { font-size: 1.5rem; }

/* ---- Services ---- */
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 28px 22px; border: 1px solid var(--gray-200); transition: all .25s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 14px; }
.service-price { font-size: .8rem; font-weight: 700; color: var(--teal); background: var(--teal-light); padding: 4px 10px; border-radius: 999px; display: inline-block; }

/* ---- Why Us ---- */
.whyus { background: var(--white); }
.whyus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.why-card { display: flex; gap: 16px; padding: 22px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: box-shadow .25s; }
.why-card:hover { box-shadow: var(--shadow); }
.why-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.why-text h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-text p { font-size: .85rem; color: var(--gray-600); }

/* ---- Process ---- */
.process { background: var(--gray-50); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--blue-light), var(--blue), var(--blue-light)); z-index: 0; }
.process-step { background: var(--white); border-radius: var(--radius); padding: 24px 16px; text-align: center; position: relative; z-index: 1; border: 1px solid var(--gray-200); }
.step-num { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: .875rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.process-step h4 { font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: .78rem; color: var(--gray-600); }

/* ---- Coverage ---- */
.coverage { background: var(--white); }
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.coverage-city { background: var(--gray-50); border-radius: var(--radius); padding: 22px; border: 1px solid var(--gray-200); }
.coverage-city h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); display: flex; align-items: center; gap: 8px; }
.coverage-city h3 a { color: var(--navy); }
.coverage-city h3 a:hover { color: var(--blue); }
.coverage-areas { display: flex; flex-wrap: wrap; gap: 6px; }
.area-pill { font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-600); transition: all .2s; }
.area-pill:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ---- Testimonials ---- */
.testimonials { background: var(--navy); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,.7); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.testi-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 24px; }
.testi-stars { color: #FCD34D; margin-bottom: 14px; font-size: .9rem; letter-spacing: 2px; }
.testi-text { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: .9rem; }
.testi-name { font-size: .85rem; font-weight: 700; color: var(--white); }
.testi-loc { font-size: .75rem; color: rgba(255,255,255,.55); }

/* ---- FAQ ---- */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 780px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--gray-200); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: .925rem; color: var(--navy); transition: background .2s; gap: 12px; }
.faq-q:hover { background: var(--blue-light); }
.faq-q .faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 800; flex-shrink: 0; transition: transform .3s, background .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.faq-a { display: none; padding: 0 22px 18px; font-size: .9rem; color: var(--gray-600); line-height: 1.7; border-top: 1px solid var(--gray-100); padding-top: 14px; }
.faq-item.open .faq-a { display: block; }

/* ---- CTA Section ---- */
.cta-section { background: linear-gradient(135deg, var(--teal), var(--navy-mid)); padding: 64px 0; color: var(--white); }
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,.85); max-width: 500px; margin: 0 auto 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Local Area Page Specific ---- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 60px 0; color: var(--white); }
.page-hero .breadcrumb { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb a:hover { color: var(--amber-light); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 580px; margin-bottom: 24px; }
.page-hero .nap-bar { display: flex; gap: 1.5rem; flex-wrap: wrap; background: rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 14px 18px; margin-top: 20px; }
.nap-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.8); }
.nap-item strong { color: var(--white); }
.area-content { background: var(--white); padding: 64px 0; }
.area-content-inner { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.area-body h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; margin-top: 32px; }
.area-body h2:first-child { margin-top: 0; }
.area-body p { color: var(--gray-600); margin-bottom: 14px; line-height: 1.75; }
.area-body ul.check-list { padding-left: 0; margin-bottom: 14px; }
.area-body ul.check-list li { padding: 6px 0 6px 28px; position: relative; color: var(--gray-600); font-size: .925rem; }
.area-body ul.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.sidebar-card { background: var(--gray-50); border-radius: var(--radius); padding: 24px; border: 1px solid var(--gray-200); margin-bottom: 18px; position: sticky; top: 90px; }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); }
.sidebar-wa { background: var(--green-wa); color: var(--white); border-radius: var(--radius-sm); padding: 14px; text-align: center; display: block; font-weight: 700; font-size: .9rem; margin-bottom: 10px; transition: background .2s; }
.sidebar-wa:hover { background: #1fba5a; }
.sidebar-tel { background: var(--navy); color: var(--white); border-radius: var(--radius-sm); padding: 12px; text-align: center; display: block; font-weight: 700; font-size: .9rem; margin-bottom: 14px; }
.sidebar-nap { font-size: .8rem; color: var(--gray-600); line-height: 1.8; }
.sidebar-nap strong { color: var(--navy); }
.nearby-links { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.nearby-link { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); font-size: .8rem; font-weight: 600; color: var(--gray-600); transition: all .2s; }
.nearby-link:hover { background: var(--blue-light); color: var(--navy); border-color: var(--blue); }
.ext-link-banner { background: var(--blue-light); border: 1px solid var(--blue); border-radius: var(--radius-sm); padding: 14px 18px; margin: 24px 0; display: flex; align-items: center; gap: 14px; }
.ext-link-banner a { color: var(--blue); font-weight: 700; font-size: .9rem; }
.ext-link-banner a:hover { text-decoration: underline; }

/* ---- Footer ---- */
footer { background: #0A1E33; color: rgba(255,255,255,.8); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand img { height: 50px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.6); max-width: 260px; line-height: 1.7; }
footer h4 { font-size: .85rem; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .2s; }
footer ul li a:hover { color: rgba(255,255,255,.95); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.footer-contact li span:first-child { flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ---- WhatsApp Float ---- */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.wa-float a { width: 58px; height: 58px; border-radius: 50%; background: var(--green-wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.5); transition: transform .25s, box-shadow .25s; }
.wa-float a:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--green-wa); animation: waPulse 2.5s ease infinite; z-index: -1; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.5); opacity: 0; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 52px 0; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 0 0 0 30%; background: var(--white); z-index: 999; padding: 80px 24px 24px; box-shadow: -4px 0 20px rgba(0,0,0,.15); }
  .nav-links.open a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .whyus-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .area-content-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar .stat-item { padding: 18px 14px; }
}
@media (max-width: 480px) {
  .hero { padding: 52px 0; }
  .hero h1 { font-size: 1.7rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .topbar { display: none; }
  .process-steps { grid-template-columns: 1fr; }
}
