    /* ─── CSS Variables ─── */
    :root {
      --orange:      #ff6b00;
      --orange-dark: #e85d00;
      --navy:        #071d49;
      --gray:        #5d6678;
      --bg:          #f5f7fb;
      --white:       #fff;
      --text-dark:   #1a1f2e;
    }

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

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--bg);
      overflow-x: hidden;
    }
    /* ─── Header ─── */
    #header {
      background: var(--white);
      box-shadow: 0 2px 15px rgba(0, 0, 0, .04);
      z-index: 999;
    }

    .sitename {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 20px;
      color: var(--navy);
      line-height: 1.2;
    }

    .sitename small {
      display: block;
      font-size: 11px;
      font-weight: 500;
      color: var(--gray);
      letter-spacing: .4px;
    }

    .navmenu ul {
      display: flex;
      gap: 32px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .navmenu a {
      text-decoration: none;
      color: var(--navy);
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      transition: color .2s;
    }

    .navmenu a:hover,
    .navmenu a.active {
      color: var(--orange);
    }

    .navmenu a.active {
      border-bottom: 2px solid var(--orange);
      padding-bottom: 2px;
    }

    .btn-konsultasi {
      background: var(--orange);
      color: var(--white) !important;
      text-decoration: none;
      padding: 11px 22px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 13.5px;
      font-family: 'Montserrat', sans-serif;
      transition: background .3s, transform .3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-konsultasi:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }


    /* ─── Hero ─── */
    .contact-hero {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      background: var(--navy);
    }

    .contact-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      filter: brightness(.4);
    }

    .contact-hero-img {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 42%;
      overflow: hidden;
    }

    .contact-hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .35;
      filter: brightness(.5) saturate(.7);
    }

    .contact-hero-img::before {
      background: linear-gradient(
        to right,
        var(--navy) 0%,
        rgba(7, 29, 73, .9) 30%,
        rgba(7, 29, 73, .6) 65%,
        rgba(7, 29, 73, .3) 100%
      );
    }
    .contact-hero-inner {
      position: relative;
      z-index: 2;
      padding: 100px 0;
    }
    .contact-hero-inner .row {
      justify-content: center;
    }

    .contact-hero-inner [class*="col-"] {
      text-align: center;
    }

    .contact-hero-inner .breadcrumb-bar {
      justify-content: center;
    }

    .contact-hero-inner .contact-meta-bar {
      justify-content: center;
    }


    /* ─── Hero: Breadcrumb ─── */
    .breadcrumb-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 20px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }

    .breadcrumb-bar a {
      color: rgba(255, 255, 255, .65);
      text-decoration: none;
      transition: color .2s;
    }

    .breadcrumb-bar a:hover { color: var(--white); }
    .breadcrumb-bar i       { font-size: 10px; }
    .breadcrumb-bar .current { color: var(--white); }


    /* ─── Hero: Badge, Title, Desc ─── */
    .contact-cat-badge {
      display: inline-block;
      background: var(--orange);
      color: var(--white);
      font-size: 11px;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      padding: 5px 14px;
      border-radius: 6px;
      text-transform: uppercase;
      letter-spacing: .6px;
      margin-bottom: 16px;
    }

    .contact-hero-title {
      font-size: 38px;
      font-weight: 900;
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      line-height: 1.2;
      margin-bottom: 14px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }

    .contact-hero-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, .75);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 22px;
      margin-left: auto;
      margin-right: auto;
    }


    /* ─── Hero: Meta Bar ─── */
    .contact-meta-bar {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .contact-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: rgba(255, 255, 255, .8);
      font-weight: 600;
    }

    .contact-meta-item i {
      color: var(--orange);
      font-size: 14px;
    }


    /* ─── Divider ─── */
    .produk-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 40px;
    }

    .divider-line {
      flex: 1;
      max-width: 180px;
      height: 1.5px;
      background: linear-gradient(90deg, transparent, var(--orange));
    }

    .divider-line:last-of-type {
      background: linear-gradient(90deg, var(--orange), transparent);
    }

    .divider-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
    }

    .divider-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      white-space: nowrap;
    }

    .divider-label i      { color: var(--orange); font-size: 15px; }
    .divider-label strong { color: var(--orange); font-weight: 800; }

    /* ─── Responsive ─── */
    @media (max-width: 991px) {
      .contact-hero-title { font-size: 28px; }
      .contact-hero-img   { display: none; }
    }

    @media (max-width: 767px) {
      .contact-hero-title { font-size: 24px; }
    }

    @media (max-width: 576px) {
      .form-card,
      .info-card           { padding: 20px; }
      .form-card-title,
      .info-card-title     { font-size: 17px; }
    }
  .contact-info-item {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1.5px solid var(--border);
  transition: border-color .3s, transform .3s;
  height: 100%;
}
.contact-info-item:hover {
  border-color: rgba(255,107,0,.3);
  transform: translateY(-4px);
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(255,107,0,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 18px;
  margin-bottom: 12px;
}
.contact-info-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 6px;
}
.contact-info-value { font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.5; }
.contact-info-value a { color: var(--navy); text-decoration: none; }
.contact-info-value a:hover { color: var(--orange); }

.contact-map-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); }
.contact-map-header {
  background: var(--navy); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; color: #fff;
}
.contact-map-header i { font-size: 18px; color: var(--orange); }

.contact-hours-card {
  background: var(--navy); border-radius: 16px;
  padding: 24px; height: 100%;
}
.contact-hours-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.contact-hours-title i { color: var(--orange); }
.contact-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px; color: rgba(255,255,255,.6);
}
.contact-hours-row:last-child { border-bottom: none; }
.contact-open-badge {
  font-size: 10px; background: rgba(30,190,93,.15);
  color: #1ebe5d; padding: 3px 10px;
  border-radius: 999px; font-weight: 700;
}

.btn-wa-full {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; background: #1ebe5d; color: #fff !important;
  text-decoration: none; padding: 18px 24px;
  border-radius: 14px; font-weight: 800; font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  transition: transform .2s, box-shadow .2s;
}
.btn-wa-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30,190,93,.25);
}
.btn-wa-full i { font-size: 22px; }
  