/* =========================================================
   PT IMTIYAZ MULTAZAM — MAIN STYLESHEET
   Tema: Putih (primer) + Biru Navy (sekunder)
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --color-white: #ffffff;
  --color-off-white: #f7f8fa;
  --color-navy: #0b2545; /* navy utama */
  --color-navy-light: #13355e; /* navy untuk hover/aksen */
  --color-navy-soft: #e9edf4; /* tint navy untuk section bg */
  --color-navy-border: #d6ddea;
  --color-text: #1b2733;
  --color-text-muted: #5c6b7a;
  --color-gold: #b8924a; /* aksen sangat terbatas: garis/hairline */
  --color-success: #1f7a4d;

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.18);

  --container-width: 1180px;
  --header-height: 76px;
}

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.25;
  font-weight: 600;
}

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

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- SIGNATURE PATTERN (Islamic geometric hairline motif) ---------- */
.geo-divider {
  height: 14px;
  width: 100%;
  background-image: repeating-linear-gradient(
      135deg,
      var(--color-navy) 0px,
      var(--color-navy) 2px,
      transparent 2px,
      transparent 16px
    ),
    repeating-linear-gradient(
      45deg,
      var(--color-navy) 0px,
      var(--color-navy) 2px,
      transparent 2px,
      transparent 16px
    );
  background-size: 100% 100%;
  opacity: 0.9;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--color-navy);
  color: var(--color-white);
  width: 100%;
}
.btn-whatsapp:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp svg {
  flex-shrink: 0;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ---------- HEADER / NAVBAR ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-navy-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-display);
  color: var(--color-navy);
  font-size: 1.02rem;
  letter-spacing: 0.2px;
}
.brand-text span {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a,
.nav-menu > li > button.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu > li > button.nav-link:hover {
  background: var(--color-navy-soft);
  color: var(--color-navy);
}

.nav-menu > li > a.active {
  font-weight: 700;
}
.active-parent > .nav-link {
  background: var(--color-navy-soft);
  color: var(--color-navy);
  font-weight: 700;
}

.caret {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}
.has-dropdown.open .caret,
.has-dropdown:hover .caret {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border: 1px solid var(--color-navy-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
}
.dropdown li a strong {
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 600;
}
.dropdown li a small {
  color: var(--color-text-muted);
  font-size: 0.76rem;
}
.dropdown li a:hover {
  background: var(--color-navy-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0c0c0c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(11,37,69,0.55) 0%, rgba(11,37,69,0.92) 100%); */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  color: var(--color-white);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h2 {
  color: var(--color-white);
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
  margin-bottom: 14px;
  #typing-text {
    /* border-right: 3px solid currentColor; */
    padding-right: 4px;
    animation: blink 0.8s infinite;
    transition: color 0.3s ease;
  }

  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-actions .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

/* ---------- SECTION GENERIC ---------- */
.section {
  padding: 96px 0;
}
.section-tight {
  padding: 64px 0;
}
.section-navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.section-soft {
  background: var(--color-navy-soft);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow-line {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.section-head .eyebrow-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  background: var(--color-navy);
  border-radius: 2px;
}
.section-navy .section-head .eyebrow-line {
  color: var(--color-white);
}
.section-navy .section-head .eyebrow-line::after {
  background: var(--color-white);
}
.section-navy .section-head h2 {
  color: var(--color-white);
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--color-text-muted);
}
.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- ABOUT PREVIEW / GRID ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-copy h2 {
  margin-bottom: 18px;
}
.about-copy p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-navy);
}
.stat-item span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ---------- SERVICE CARDS ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card .thumb { height: 190px; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }

.service-card .body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card .tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-navy-soft);
  padding: 5px 12px;
  border-radius: 999px;
}
.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--color-text-muted); font-size: 0.92rem; flex: 1; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--color-navy); font-size: 0.9rem;
  margin-top: 6px;
}
.service-card .card-link svg { transition: transform 0.2s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- WHY US / FEATURES ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-navy-border);
}
.feature-item .icon-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--color-white);
}
.cta-band h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}
.cta-band .btn-primary {
  background: var(--color-white);
  color: var(--color-navy);
}
.cta-band .btn-primary:hover {
  background: var(--color-navy-soft);
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 72px 0 56px;
  overflow: hidden;
}
.page-header img.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 37, 69, 0.5),
    rgba(11, 37, 69, 0.95)
  );
}
.page-header-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.page-header h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

/* ---------- CARDS / PANELS (service detail pages) ---------- */
.panel {
  background: var(--color-white);
  border: 1px solid var(--color-navy-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: flex-start;
}

/* Rate table */
.rate-block {
  margin-bottom: 28px;
}
.rate-block:last-child {
  margin-bottom: 0;
}
.rate-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.rate-block-title .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-navy);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
}
.rate-table th,
.rate-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-navy-border);
  font-size: 0.92rem;
}
.rate-table th {
  background: var(--color-navy-soft);
  color: var(--color-navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rate-table tr:last-child td {
  border-bottom: none;
}
.rate-table td.price {
  font-weight: 700;
  color: var(--color-navy);
}

.notes-box {
  background: var(--color-navy-soft);
  border-left: 4px solid var(--color-navy);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 22px;
}
.notes-box strong {
  color: var(--color-navy);
  display: block;
  margin-bottom: 6px;
}

/* Order form (sticky sidebar) */
.order-box {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.order-box h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.order-box .order-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-navy-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.12);
  outline: none;
}

.price-preview {
  background: var(--color-navy-soft);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}
.price-preview .row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.price-preview .row.total {
  font-weight: 700;
  color: var(--color-navy);
  border-top: 1px dashed var(--color-navy-border);
  margin-top: 6px;
  padding-top: 10px;
}

.field-hint {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}
.field-error {
  font-size: 0.76rem;
  color: #b3261e;
  margin-top: 6px;
  display: none;
}
.field-error.show {
  display: block;
}

/* Ticket item (PNR cards) */
.ticket-card {
  border: 1px solid var(--color-navy-border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 20px;
  background: var(--color-white);
}
.ticket-card:last-child {
  margin-bottom: 0;
}
.ticket-card .pnr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-navy-soft);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.flight-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-navy-border);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.flight-row:last-of-type {
  border-bottom: none;
}
.flight-code {
  font-weight: 700;
  color: var(--color-navy);
  min-width: 64px;
}
.flight-route {
  color: var(--color-text-muted);
}
.flight-time {
  margin-left: auto;
  font-weight: 600;
}
.seat-info {
  margin-top: 12px;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* L.A includes list */
.include-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text);
  padding: 12px 14px;
  background: var(--color-navy-soft);
  border-radius: var(--radius-sm);
}
.include-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- ABOUT PAGE ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-navy-border);
}
.value-card h4 {
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.timeline {
  border-left: 2px solid var(--color-navy-border);
  padding-left: 28px;
  margin-top: 12px;
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-navy);
  border: 3px solid var(--color-navy-soft);
}
.timeline-item strong {
  display: block;
  color: var(--color-navy);
  font-family: var(--font-display);
}
.timeline-item span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  color: var(--color-navy);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.contact-info-item a:hover {
  color: var(--color-navy);
}

.map-embed {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-navy-border);
  overflow: hidden;
  margin-top: 24px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 50px;
  width: 40px;
  /* border-radius: 50%; */
  /* background: var(--color-white); */
  padding: 4px;
}
.footer-brand strong {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.site-footer p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col h5 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: var(--color-white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal-fade.is-visible {
  opacity: 1;
}

.reveal-delay-1.is-visible {
  transition-delay: 0.08s;
}
.reveal-delay-2.is-visible {
  transition-delay: 0.16s;
}
.reveal-delay-3.is-visible {
  transition-delay: 0.24s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-grid img {
    height: 320px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .order-box {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu > li {
    width: 100%;
  }
  .nav-menu > li > a,
  .nav-menu > li > button.nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-navy-border);
    border-radius: 0;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding: 0 0 0 12px;
  }
  .has-dropdown.open .dropdown {
    display: block;
  }
  .has-dropdown:hover .dropdown {
    display: none;
  }
  .has-dropdown.open:hover .dropdown {
    display: block;
  }
}

@media (max-width: 760px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .include-list {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    min-height: 76vh;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .panel {
    padding: 22px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band .btn-primary,
  .cta-band .btn-outline {
    width: 100%;
  }
}
