/* ================================================================
   SIMTEK — MASTER STYLESHEET
   File: public/css/simtek-section.css

   Cara pakai:
   1. Hapus seluruh isi style.css (atau rename jadi style.css.bak)
   2. Hapus semua blok <style> di dalam home.blade.php
   3. Sambungkan file ini di <head> home.blade.php:

      <link rel="preconnect" href="https://fonts.googleapis.com">
      <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
      <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
      <link rel="stylesheet" href="{{ asset('css/simtek-section.css') }}">

   Urutan section di file ini:
   00. Reset & CSS Variables
   01. Base / Typography / Shared Utilities
   02. Navbar
   03. Hero Slider
   04. Trust Badges
   05. About
   06. Speed Test
   07. Packages & Pricing
   08. Download App
   09. CTA
   10. Footer
   11. WhatsApp Float Button
   12. Popup Banner
   13. Responsive — all breakpoints consolidated
================================================================ */


/* ================================================================
   00. RESET & CSS VARIABLES
================================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand */
    --brand:        #ff6b35;
    --brand-2:      #f7931e;
    --brand-deep:   #e85a22;
    --brand-light:  #fff3ee;
    --brand-border: #ffd5c2;

    /* Neutrals */
    --dark:   #1a1a1a;
    --mid:    #555;
    --muted:  #888;
    --light:  #f8f8f8;
    --border: #efefef;
    --white:  #ffffff;

    /* Layout */
    --nav-h:     68px;
    --nav-h-mob: 60px;
    --container: 1160px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Animation */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in:  cubic-bezier(0.4, 0, 1, 1);
    --dur-fast: 0.15s;
    --dur-med:  0.25s;
    --dur-slow: 0.4s;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    padding-top: var(--nav-h);      /* offset for fixed navbar */
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }


/* ================================================================
   01. BASE / TYPOGRAPHY / SHARED UTILITIES
================================================================ */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section eyebrow */
.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
}

.section-eyebrow--light { color: rgba(255,255,255,.65); }

/* Section title */
.section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.75;
}

/* Section header - Kembali ke posisi samping (kiri) */
.section-header {
    text-align: left;
    max-width: 700px;
    margin: 0 0 64px 0;
}

/* Shared button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: opacity var(--dur-med), transform var(--dur-fast), background var(--dur-med), border-color var(--dur-med), color var(--dur-med);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
}

.btn--primary:hover { opacity: .88; transform: translateY(-1px); }

.btn--ghost {
    background: transparent;
    color: var(--mid);
    border-color: var(--border);
}

.btn--ghost:hover {
    background: var(--light);
    border-color: #ddd;
    color: var(--dark);
}

.btn--dark {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.15);
}

.btn--dark:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.28);
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ================================================================
   02. NAVBAR
================================================================ */

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
    transition: box-shadow var(--dur-med);
}

.navbar--scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,.13), 0 1px 4px rgba(0,0,0,.07);
}

.navbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
.navbar-logo         { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo-img     { height: 38px; width: auto; }

/* Desktop links */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.navbar-link {
    display: inline-block;
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--dur-med), background var(--dur-med);
}

.navbar-link:hover,
.navbar-link.is-active {
    color: var(--brand);
    background: var(--brand-light);
}

/* Desktop action row */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Navbar button variants */
.navbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    border: 1.5px solid transparent;
    transition: opacity var(--dur-med), transform var(--dur-fast),
                background var(--dur-med), border-color var(--dur-med), color var(--dur-med);
}

.navbar-btn--ghost {
    background: transparent;
    color: var(--mid);
    border-color: var(--border);
}

.navbar-btn--ghost:hover { background: var(--light); border-color: #ddd; color: var(--dark); }

.navbar-btn--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
}

.navbar-btn--primary:hover { opacity: .88; transform: translateY(-1px); }

.navbar-btn--full { width: 100%; justify-content: center; padding: 13px 20px; font-size: 14px; }

/* Hamburger */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0 10px;
    flex-shrink: 0;
    transition: border-color var(--dur-med);
}

.navbar-hamburger:hover { border-color: #ccc; }

.navbar-hamburger span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transform-origin: center;
    transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-med);
}

.navbar-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.navbar-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height var(--dur-slow) var(--ease-out), padding var(--dur-med);
}

.navbar-mobile.is-open {
    max-height: 440px;
    padding: 20px 24px 28px;
}

.navbar-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
}

.navbar-mobile-link {
    display: block;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    border-radius: 10px;
    transition: background var(--dur-fast), color var(--dur-fast);
}

.navbar-mobile-link:hover { background: var(--brand-light); color: var(--brand); }

.navbar-mobile-actions { display: flex; flex-direction: column; gap: 10px; }

/* Overlay */
.navbar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.3);
    opacity: 0;
    transition: opacity var(--dur-slow);
}

.navbar-overlay.is-visible { display: block; opacity: 1; }


/* ================================================================
   03. HERO SLIDER
================================================================ */

.hero-slider {
    position: relative;
    width: 100%;
    background: #111;
    aspect-ratio: 16 / 9;
    max-height: 620px;
    overflow: hidden;
}

.hero-slides-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .65s var(--ease-out);
}

.hero-slide.is-active { opacity: 1; pointer-events: auto; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Empty state */
.hero-slide--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    opacity: 1;
}

.hero-empty-state p { color: rgba(255,255,255,.5); font-size: 15px; }

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: #fff;
    transition: background var(--dur-med), transform var(--dur-med);
}

.hero-arrow:hover { background: rgba(255,255,255,.32); transform: translateY(-50%) scale(1.08); }
.hero-arrow--prev { left: 20px; }
.hero-arrow--next { right: 20px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width .3s var(--ease-out), background .3s, border-radius .3s;
}

.hero-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
}


/* ================================================================
   04. TRUST BADGES
================================================================ */

.trust-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-right: 1px solid var(--border);
    transition: background var(--dur-med);
}

.trust-item:last-child { border-right: none; }
.trust-item:hover { background: #fff9f7; }

.trust-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand);
}

.trust-icon-wrap svg { width: 22px; height: 22px; }

.trust-body { display: flex; flex-direction: column; gap: 3px; }

.trust-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.trust-label {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}


/* ================================================================
   05. ABOUT
================================================================ */

.about-section { padding: 100px 0; }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}

.about-heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 18px;
}

.about-desc {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-feat { display: flex; gap: 13px; align-items: flex-start; }

.about-feat-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand);
}

.about-feat-icon svg { width: 16px; height: 16px; }
.about-feat-title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.about-feat-sub  { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Right stat cards */
.about-card-stack { display: flex; flex-direction: column; gap: 14px; }

.about-stat-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-stat-card.accent {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: transparent;
}

.asc-num {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.about-stat-card.accent .asc-num { color: #fff; }
.asc-unit { font-size: 18px; font-weight: 500; margin-left: 3px; }
.asc-label { font-size: 13px; color: var(--muted); }
.about-stat-card.accent .asc-label { color: rgba(255,255,255,.75); }

.about-info-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--mid);
}

.about-info-strip svg { color: var(--brand); flex-shrink: 0; }


/* ================================================================
   06. SPEED TEST — DIHAPUS
   (hapus juga section .speed-test-section dari home.blade.php)
================================================================ */


/* ================================================================
   07. PACKAGES & PRICING
================================================================ */

.packages-section { padding: 100px 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 20px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #e2e2e2;
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.06);
    transition: box-shadow var(--dur-med), transform var(--dur-med);
}

.pricing-card:hover {
    box-shadow: 0 12px 44px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.07);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--brand);
    border-width: 2px;
    box-shadow: 0 8px 40px rgba(255,107,53,.12);
}

.pricing-card--featured:hover {
    box-shadow: 0 12px 48px rgba(255,107,53,.18);
}

.pricing-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-light);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 18px;
    width: fit-content;
}

.pricing-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 22px;
}

.pricing-name { font-size: 19px; font-weight: 700; color: var(--dark); }

.pricing-speed {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand);
    background: var(--brand-light);
    border-radius: 20px;
    padding: 5px 11px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-price-block { margin-bottom: 24px; }

.pricing-original {
    display: block;
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-current { display: flex; align-items: baseline; gap: 3px; line-height: 1; }
.pricing-rp      { font-size: 15px; font-weight: 600; color: var(--dark); }
.pricing-amount  { font-size: 32px; font-weight: 700; color: var(--dark); }
.pricing-period  { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; }

.pricing-price-block::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--border);
    margin-top: 22px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature-iptv {
    background: var(--brand-light);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 4px -4px 0;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    background: var(--light);
    color: var(--dark);
    border: 1px solid var(--border);
    margin-top: auto;
    transition: background var(--dur-med), color var(--dur-med), border-color var(--dur-med);
}

.pricing-cta:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.pricing-cta--featured {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border-color: transparent;
}

.pricing-cta--featured:hover {
    opacity: .9;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: transparent;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 32px;
}

.pricing-note svg { color: var(--brand); flex-shrink: 0; }


/* ================================================================
   08. ADD ON / TAMBAHAN LAYANAN
================================================================ */

.addon-section {
    padding: 80px 0;
    background: var(--white);
}

/* ── Header ── */
.addon-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.addon-header-text { flex: 1; min-width: 240px; }

.addon-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.25;
}

.addon-subtitle {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Tabs ── */
.addon-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px;
    flex-shrink: 0;
    align-self: center;
}

.addon-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background var(--dur-med), color var(--dur-med), box-shadow var(--dur-med);
    white-space: nowrap;
}

.addon-tab:hover { color: var(--dark); }

.addon-tab.is-active {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

/* ── Panels ── */
.addon-panel {
    display: none;
    animation: fadeInUp .3s var(--ease-out);
}

.addon-panel.is-active { display: block; }

/* ── Banner (link wrapper) ── */
.addon-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: var(--radius-xl);
    padding: 52px 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    transition: transform var(--dur-med), box-shadow var(--dur-med);
}

.addon-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

/* IPTV — orange */
.addon-banner--iptv {
    background: #1a1a1a;
}

/* Router — orange-slate  */
.addon-banner--router {
    background: #1a1a1a;
}

/* ── Dekorasi diagonal ── */
.addon-banner-deco {
    position: absolute;
    top: -40px;
    right: 260px;
    width: 180px;
    height: 480px;
    background: rgba(255,255,255,.04);
    transform: rotate(-15deg);
    pointer-events: none;
    border-radius: 4px;
}

/* ── Konten kiri ── */
.addon-banner-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.addon-banner-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.addon-banner-badge--router {
    background: rgba(255,255,255,.12);
}

.addon-banner-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.addon-banner-title span {
    color: rgba(255,255,255,.7);
}

.addon-banner-desc {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 22px;
}

/* Price */
.addon-banner-price { margin-bottom: 24px; }

.addon-price-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.addon-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.addon-price-rp {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
}

.addon-price-amount {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.addon-price-period {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    font-weight: 400;
}

/* CTA button */
.addon-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: var(--brand);
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(255,107,53,.4);
    transition: opacity var(--dur-med), transform var(--dur-fast), box-shadow var(--dur-med);
}

.addon-banner:hover .addon-banner-btn {
    opacity: .92;
    transform: translateX(3px);
    box-shadow: 0 6px 28px rgba(255,107,53,.55);
}

/* Router button — orange accent (was: biru) */
.addon-banner-btn--router {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    box-shadow: 0 4px 20px rgba(255,107,53,.4);
}

.addon-banner:hover .addon-banner-btn--router {
    box-shadow: 0 6px 28px rgba(255,107,53,.55);
}

/* Feature pills */
.addon-banner-features {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.addon-banner-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

.addon-banner-features svg { color: rgba(255,255,255,.4); flex-shrink: 0; }

/* ── Gambar kanan ── */
.addon-banner-image {
    flex-shrink: 0;
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.addon-banner-image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
    transition: transform var(--dur-med);
}

.addon-banner:hover .addon-banner-image img {
    transform: translateY(-6px) scale(1.03);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .addon-banner {
        padding: 44px 40px;
        min-height: auto;
    }

    .addon-banner-image { width: 260px; }
}

@media (max-width: 768px) {
    .addon-header { flex-direction: column; gap: 20px; }
    .addon-tabs   { align-self: flex-start; }

    .addon-banner {
        flex-direction: column;
        padding: 40px 28px;
        gap: 28px;
        text-align: center;
    }

    .addon-banner-desc { max-width: 100%; }

    .addon-banner-btn {
        margin: 0 auto 24px;
    }

    .addon-banner-features { justify-content: center; }

    .addon-banner-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .addon-price-row { justify-content: center; }
    .addon-price-label { text-align: center; }

    .addon-banner-deco { display: none; }
    
    .section-header {
        margin-bottom: 40px; /* Jarak lebih rapat untuk HP */
    }
    .pricing-grid {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .addon-section { padding: 60px 0; }

    .addon-banner { padding: 32px 20px; border-radius: var(--radius-lg); }

    .addon-price-amount { font-size: 36px; }

    .addon-banner-features { gap: 10px; }
    .section-header {
        margin-bottom: 40px; /* Jarak lebih rapat untuk HP */
    }
    .pricing-grid {
        margin-top: 10px;
    }
}


/* ================================================================
   09. DOWNLOAD APP
================================================================ */

.download-app-section {
    padding: 80px 0;
    background: #e8e8e8;
}
 
.download-app-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--white);
    border: 1px solid #d0d0d0;
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    box-shadow: 0 6px 36px rgba(0,0,0,.10);
    flex-wrap: wrap;
    justify-content: center;
}
 
/* Phone illustration — pakai gambar asli */
.download-app-illustration {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.download-app-mockup {
    width: 220px;
}
 
.download-app-mockup img {
    width: 100%;
    height: auto;
    display: block;
    /* Drop shadow untuk efek depth */
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18))
            drop-shadow(0 8px 16px rgba(255,107,53,0.12));
}
 
@keyframes mockupFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
 
/* Text block */
.download-app-text { flex: 1; min-width: 240px; }
.download-app-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.download-app-title { font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.download-app-desc  { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }
 
.download-app-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
 
.app-pill {
    font-size: 12px;
    color: #993c1d;
    background: var(--brand-light);
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 4px 14px;
    font-weight: 500;
}
 
/* Google Play Button */
.google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    border-radius: 12px;
    padding: 11px 22px;
    text-decoration: none;
    transition: opacity var(--dur-med), transform var(--dur-fast);
}
 
.google-play-btn:hover { opacity: .84; transform: translateY(-2px); }
 
.gplay-sub  { font-size: 10px; opacity: .7; display: block; letter-spacing: .5px; }
.gplay-main { font-size: 17px; font-weight: 600; display: block; line-height: 1.2; }


/* ================================================================
   09. CTA
================================================================ */

.cta-section {
    background: #111;
    padding: 80px 0;
    margin: 0;
}

.cta-inner {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,.06);
}

/* Decorative ring */
.cta-inner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 60px solid rgba(255,107,53,.08);
    pointer-events: none;
}

.cta-heading {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-action-row { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: opacity var(--dur-med), transform var(--dur-fast);
}

.cta-btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.15);
    transition: background var(--dur-med), border-color var(--dur-med);
}

.cta-btn-secondary:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }

.cta-guarantees { display: flex; flex-direction: column; gap: 20px; flex-shrink: 0; }

.cta-guarantee-item { display: flex; align-items: flex-start; gap: 14px; }

.cgi-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,107,53,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
}

.cgi-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.cgi-sub   { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.4; }


/* ================================================================
   10. FOOTER
================================================================ */

.footer {
    background: #111;
    color: rgba(255,255,255,.75);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 72px 24px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand col */
.footer-logo-link { display: inline-flex; }

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 260px;
}

/* Map */
.footer-map-wrap { margin-bottom: 22px; }

.footer-map-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
}

.footer-map-label svg { color: var(--brand); flex-shrink: 0; }

.footer-map-link-ext {
    margin-left: auto;
    font-size: 11px;
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
}

.footer-map-link-ext:hover { text-decoration: underline; }

.footer-map-wrap iframe {
    display: block;
    filter: grayscale(40%) brightness(.85);
    border-radius: 10px;
}

/* Socials */
.footer-socials { display: flex; gap: 10px; }

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.1);
    text-decoration: none;
    transition: background var(--dur-med), color var(--dur-med), border-color var(--dur-med), transform var(--dur-fast);
}

.footer-social-btn:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    transform: translateY(-2px);
}

/* Link col */
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-bottom: 18px;
}

.footer-col-list { display: flex; flex-direction: column; gap: 10px; }

.footer-col-list a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--dur-med);
}

.footer-col-list a:hover { color: #fff; }

/* Contact list */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
}

.fcl-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--dur-med);
}

.footer-contact-list a:hover { color: #fff; }

/* WhatsApp btn */
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity var(--dur-med), transform var(--dur-fast);
}

.footer-wa-btn:hover { opacity: .9; transform: translateY(-1px); }

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,.32);
    text-decoration: none;
    transition: color var(--dur-med);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-bottom-links span { color: rgba(255,255,255,.2); font-size: 10px; }

/* ── Metode Pembayaran ── */
.footer-payment {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 0;
}
 
.footer-payment-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 16px;
}
 
.footer-payment-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
 
.footer-payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    transition: background var(--dur-med), transform var(--dur-fast), box-shadow var(--dur-med);
    min-width: 72px;
}
 
.footer-payment-logo:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
 
.footer-payment-logo img {
    height: 32px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
}
 
/* color-logo = sama seperti default, sudah berwarna */
.footer-payment-logo.color-logo img {
    filter: none;
    opacity: 1;
}
 
@media (max-width: 640px) {
    .footer-payment-logos { gap: 6px; }
    .footer-payment-logo  { height: 34px; padding: 5px 10px; min-width: 60px; }
    .footer-payment-logo img { height: 20px; width: auto; max-width: 60px; }
}


/* ================================================================
   11. WHATSAPP FLOAT BUTTON
================================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    text-decoration: none;
    transition: transform var(--dur-med), box-shadow var(--dur-med);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

.whatsapp-float svg { width: 28px; height: 28px; }


/* ================================================================
   12. POPUP BANNER
================================================================ */

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content {
    position: relative;
    max-width: 480px;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    animation: fadeInUp .3s var(--ease-out);
}

.popup-content img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--dur-med);
}

.popup-close:hover { background: rgba(0,0,0,.8); }


/* ================================================================
   13. RESPONSIVE — ALL BREAKPOINTS
================================================================ */

/* ── ≤ 1024px ── */
@media (max-width: 1024px) {
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-card-stack { flex-direction: row; flex-wrap: wrap; }
    .about-stat-card  { flex: 1; min-width: 150px; }

    .cta-inner { grid-template-columns: 1fr; gap: 36px; padding: 52px 40px; }
    .cta-guarantees { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .cta-guarantee-item { flex: 1; min-width: 150px; }
}

/* ── ≤ 900px ── */
@media (max-width: 900px) {
    .navbar-links   { display: none; }
    .navbar-actions { display: none; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ── ≤ 768px ── */
@media (max-width: 768px) {
    :root { --nav-h: var(--nav-h-mob); }
    body  { padding-top: var(--nav-h-mob); }

    .navbar-inner     { gap: 0; justify-content: space-between; }
    .navbar-hamburger { display: flex; }
    .navbar-mobile    { display: flex; }

    .hero-slider {
        aspect-ratio: unset;
        max-height: none;
        height: auto;
    }

    .hero-slides-wrap {
        height: auto;
        position: relative;
    }

    .hero-slide {
        position: relative;
        inset: unset;
        display: none;
    }

    .hero-slide.is-active {
        display: block;
    }

    .hero-slide img {
        width: 100%;
        height: auto;
        object-fit: unset;
        object-position: unset;
        display: block;
    }

    .hero-arrow  { top: 50%; transform: translateY(-50%); }
    .hero-dots   { bottom: 10px; }
    
    .section-header {
        margin-bottom: 40px; 
    }
    .pricing-grid {
        margin-top: 10px;
    }

    /* Trust badges — 2 kolom di tablet */
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 16px; }
    .trust-item:nth-child(odd)  { border-right: 1px solid var(--border); }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4)    { border-bottom: none; }

    .about-section { padding: 72px 0; }

    .download-app-inner { padding: 40px 24px; gap: 32px; text-align: center; }
    .download-app-text  { text-align: center; }
    .download-app-pills { justify-content: center; }
    .google-play-btn    { margin: 0 auto; }

    .cta-section { padding: 60px 0; }
    .cta-inner   { padding: 40px 28px; border-radius: var(--radius-lg); }

    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ── ≤ 640px ── */
@media (max-width: 640px) {
    .container { padding: 0 16px; }

    .about-features-grid { grid-template-columns: 1fr; }

    .packages-section { padding: 72px 0; }

    .cta-action-row { flex-direction: column; }
    .cta-btn-primary,
    .cta-btn-secondary { justify-content: center; }
    .cta-guarantees { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
    .footer-inner { padding-top: 48px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── ≤ 480px ── */
@media (max-width: 480px) {
    .hero-arrow { width: 36px; height: 36px; }
    .hero-arrow svg { width: 18px; height: 18px; }
    .hero-arrow--prev { left: 10px; }
    .hero-arrow--next { right: 10px; }
    .hero-dots { bottom: 10px; }

    /* Trust badges — 1 kolom di HP kecil */
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 16px; }
    .trust-item:last-child { border-bottom: none; }

    .pricing-card { padding: 24px 18px; }
}

/* ── ≤ 360px ── */
@media (max-width: 360px) {
    .navbar-logo-img { height: 32px; }
    .download-app-illustration { display: none; }
}


/* ================================================================
   14. HALAMAN PEMESANAN — modern & clean, selaras dengan home
================================================================ */

/* ── Hero ── */
.order-hero {
    background: #111;
    padding: 56px 0 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.order-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 64px solid rgba(255,107,53,.07);
    pointer-events: none;
}

.order-hero::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(247,147,30,.05);
    pointer-events: none;
}

.order-hero .container { position: relative; }

/* Eyebrow pill */
.order-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,107,53,.15);
    border: 1px solid rgba(255,107,53,.25);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}

.order-hero h1 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.order-hero p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Main wrapper ── */
.order-section {
    padding: 56px 0 100px;
    background: #f5f5f7;
    min-height: 60vh;
}

/* ── Form card ── */
.order-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid #e4e4e4;
    box-shadow:
        0 1px 2px rgba(0,0,0,.04),
        0 4px 16px rgba(0,0,0,.06),
        0 16px 48px rgba(0,0,0,.06);
    padding: 52px 48px;
    max-width: 840px;
    margin: 0 auto;
}

/* Card section divider dengan label */
.form-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 32px 0 20px;
}

.form-section-label::before,
.form-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.form-section-label:first-child { margin-top: 0; }

/* ── Alert success ── */
.alert-success {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: var(--radius-md);
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* ── Form grid ── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
    margin-bottom: 18px;
}

/* ── Form group ── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

/* Hilangkan margin-bottom dari form-group di dalam form-grid */
.form-grid .form-group { margin-bottom: 0; }

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .1px;
}

/* Optional badge pada label */
.form-group label .opt {
    font-weight: 400;
    color: var(--muted);
    font-size: 11px;
    margin-left: 4px;
}

/* ── Input / Select / Textarea ── */
.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 14px;
    color: var(--dark);
    background: #fafafa;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    transition: border-color var(--dur-med), background var(--dur-med), box-shadow var(--dur-med);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #ccc;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,53,.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #c0c0c0; }

.form-group input[readonly] {
    background: #f5f5f5;
    color: var(--muted);
    border-color: #e8e8e8;
    cursor: default;
}

.form-group input[readonly]:focus {
    border-color: #e8e8e8;
    box-shadow: none;
}

/* Custom select chevron */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23aaa'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 15px;
    padding-right: 42px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.65;
}

/* ── Map ── */
#map {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-md);
    border: 1.5px solid #e0e0e0;
    overflow: hidden;
    margin-bottom: 12px;
    z-index: 0;
    transition: border-color var(--dur-med);
}

#map:focus-within { border-color: var(--brand); }

/* ── Location row ── */
.location-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity var(--dur-med), transform var(--dur-fast);
    box-shadow: 0 2px 10px rgba(255,107,53,.25);
}

.location-btn:hover { opacity: .88; transform: translateY(-1px); }
.location-btn:active { transform: translateY(0); }

.location-wrapper input {
    flex: 1;
    font-size: 12px;
    color: var(--muted);
}

/* ── Checkbox ── */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-md);
    margin: 8px 0 28px;
    font-size: 13px;
    color: var(--mid);
    line-height: 1.55;
    cursor: pointer;
    transition: border-color var(--dur-med), background var(--dur-med);
}

.form-check:hover {
    border-color: var(--brand-border);
    background: var(--brand-light);
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 5px;
    accent-color: var(--brand);
    cursor: pointer;
    margin-top: 1px;
}

/* ── Submit button ── */
.cta-button.full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    letter-spacing: .2px;
    box-shadow: 0 4px 18px rgba(255,107,53,.3);
    transition: opacity var(--dur-med), transform var(--dur-fast), box-shadow var(--dur-med);
}

.cta-button.full:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,107,53,.4);
}

.cta-button.full:active { transform: translateY(0); }

/* ── Leaflet z-index ── */
.leaflet-pane,
.leaflet-top,
.leaflet-bottom { z-index: 1 !important; }
.leaflet-control { z-index: 2 !important; }

/* ── Pemesanan Responsive ── */
@media (max-width: 900px) {
    .order-card { max-width: 680px; }
}

@media (max-width: 768px) {
    .order-hero  { padding: 44px 0 40px; }
    .order-card  { padding: 36px 28px; }
    .form-grid   { grid-template-columns: 1fr; gap: 0; }
    .form-grid .form-group { margin-bottom: 18px; }
    .form-grid .form-group:last-child { margin-bottom: 0; }
}

@media (max-width: 480px) {
    .order-section    { padding: 36px 0 80px; }
    .order-card       { padding: 28px 18px; border-radius: var(--radius-lg); }
    .location-wrapper { flex-direction: column; }
    .location-btn     { width: 100%; justify-content: center; }
    #map              { height: 220px; }
    .form-check       { padding: 14px; }
}

/* Form validation error */
.form-error {
    font-size: 12px;
    color: #dc2626;
    margin-top: 2px;
    display: block;
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,.10);
}