/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0B326B;
  --navy-dark: #0A2D62;
  --navy-deep: #061d40;
  --navy-light: #15407a;
  --yellow: #F7B900;
  --yellow-bright: #FFC107;
  --wa: #16A34A;
  --wa-dark: #15803d;
  --white: #FFFFFF;
  --bg: #F4F7FB;
  --text: #101828;
  --text-muted: #667085;
  --border: #e4eaf3;
  --border-light: #eef2f7;
  --shadow-sm: 0 1px 3px rgba(16,24,40,0.06);
  --shadow: 0 4px 16px rgba(16,24,40,0.08);
  --shadow-lg: 0 12px 40px rgba(16,24,40,0.12);
  --shadow-navy: 0 12px 36px rgba(11,50,107,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container: 1200px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(11,50,107,0.08);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
}
.topbar__left { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: flex; align-items: center; gap: 6px; }
.topbar__item a { font-weight: 700; }
.topbar__icon { width: 14px; height: 14px; flex-shrink: 0; }
.topbar__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.topbar__link {
  display: flex; align-items: center; gap: 5px;
  font-weight: 700; transition: opacity .2s;
}
.topbar__link:hover { opacity: .75; }
.topbar__link--wa { color: var(--navy); }

@media (max-width: 768px) {
  .topbar__item--hide-sm { display: none; }
  .topbar__left { gap: 0; }
  .topbar__link { font-size: 12px; }
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__logo { width: 42px; height: 42px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-size: 17px; font-weight: 800; color: var(--navy); }
.brand__sub { font-size: 12px; font-weight: 600; color: var(--text-muted); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--navy); background: var(--bg); }
.nav__call {
  display: flex; align-items: center; gap: 6px;
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 10px;
  font-weight: 700 !important;
  font-size: 14px;
  margin-left: 8px;
  transition: background .2s, transform .2s;
}
.nav__call:hover { background: var(--navy-dark); transform: translateY(-1px); }
.nav__call .btn-icon { width: 16px; height: 16px; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
    max-height: calc(100vh - 0px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 16px; font-size: 16px; border-radius: 10px; }
  .nav__call { margin-left: 0; margin-top: 8px; justify-content: center; padding: 14px !important; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
  font-family: var(--font);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn--navy { background: var(--navy); color: var(--white); box-shadow: 0 4px 14px rgba(11,50,107,0.3); }
.btn--navy:hover { background: var(--navy-dark); box-shadow: 0 6px 20px rgba(11,50,107,0.4); }
.btn--whatsapp { background: var(--wa); color: var(--white); box-shadow: 0 4px 14px rgba(22,163,74,0.3); }
.btn--whatsapp:hover { background: var(--wa-dark); box-shadow: 0 6px 20px rgba(22,163,74,0.4); }
.btn--yellow { background: var(--yellow); color: var(--navy); box-shadow: 0 4px 14px rgba(247,185,0,0.35); }
.btn--yellow:hover { background: var(--yellow-bright); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(247,185,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,185,0,0.15);
  border: 1px solid rgba(247,185,0,0.3);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge__icon { width: 16px; height: 16px; }
.hero__title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero__desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}
.hero__subdesc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-navy);
}
.hero__img { width: 100%; height: 380px; object-fit: cover; }
.hero__floating-card {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.hero__floating-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
}
.hero__floating-icon svg { width: 20px; height: 20px; }
.hero__floating-title { display: block; font-size: 14px; font-weight: 800; color: var(--navy); }
.hero__floating-sub { display: block; font-size: 12px; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__title { font-size: 28px; }
  .hero__img { height: 280px; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 50px; }
  .hero__title { font-size: 24px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 44px; }
.section__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section__subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.5; }
.section__head--light .section__title,
.section__title--light { color: var(--white); }
.section__subtitle--light { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section__title { font-size: 25px; }
  .section__head { margin-bottom: 32px; }
}

/* ===== ABOUT ===== */
.about__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.about__text p { margin-bottom: 16px; line-height: 1.7; color: #374151; }
.about__text p:last-child { margin-bottom: 0; }
.about__highlights { display: flex; flex-direction: column; gap: 14px; }
.about__highlight {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.about__highlight svg { width: 20px; height: 20px; color: var(--wa); flex-shrink: 0; }

@media (max-width: 768px) {
  .about__card { padding: 24px; }
  .about__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--navy-light);
}
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background .25s;
}
.service-card:hover .service-card__icon { background: var(--yellow); }
.service-card__icon svg { width: 26px; height: 26px; color: var(--white); transition: color .25s; }
.service-card:hover .service-card__icon svg { color: var(--navy); }
.service-card__title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 1024px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services__grid { grid-template-columns: 1fr; } }

/* ===== FLEET ===== */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fleet-card__img-wrap { position: relative; overflow: hidden; }
.fleet-card__img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform .4s;
}
.fleet-card:hover .fleet-card__img { transform: scale(1.05); }
.fleet-card__tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.fleet-card__body { padding: 24px; }
.fleet-card__category {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-bright);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.fleet-card__name { font-size: 22px; font-weight: 800; color: var(--navy); margin: 4px 0 10px; }
.fleet-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

@media (max-width: 900px) { .fleet__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fleet__grid { grid-template-columns: 1fr; } }

/* ===== FARE TABLES ===== */
.fare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fare-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fare-table__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
}
.fare-table__head--navy { background: var(--navy); color: var(--white); }
.fare-table__head--yellow { background: var(--yellow); color: var(--navy); }
.fare-table__icon { width: 40px; height: 40px; flex-shrink: 0; }
.fare-table__icon svg { width: 100%; height: 100%; }
.fare-table__title { font-size: 19px; font-weight: 800; }
.fare-table__sub { font-size: 13px; font-weight: 600; opacity: .85; display: block; }
.fare-table__scroll { overflow-x: auto; }
.fare-table table { width: 100%; border-collapse: collapse; min-width: 280px; }
.fare-table thead { background: var(--bg); }
.fare-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}
.fare-table td {
  padding: 13px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}
.fare-table tbody tr { transition: background .15s; }
.fare-table tbody tr:hover { background: #f8fafd; }
.fare-table td:first-child { font-weight: 600; color: var(--text); }
.fare-table td:nth-child(2) { font-weight: 700; color: var(--navy); }
.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--wa);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: var(--font);
}
.book-btn:hover { background: var(--wa-dark); transform: scale(1.05); }
.book-btn svg { width: 13px; height: 13px; }
.fare__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: #92400e;
  line-height: 1.6;
}
.fare__note-icon { width: 20px; height: 20px; flex-shrink: 0; color: #d97706; }

@media (max-width: 900px) {
  .fare__grid { grid-template-columns: 1fr; }
}

/* ===== WHY CHOOSE US ===== */
.why {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: background .25s, transform .25s;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 56px; height: 56px;
  background: rgba(247,185,0,0.15);
  border: 1px solid rgba(247,185,0,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.why-card__icon svg { width: 26px; height: 26px; color: var(--yellow); }
.why-card__title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card__desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55; }

@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why__grid { grid-template-columns: 1fr; } }

/* ===== HOW TO BOOK ===== */
.steps { background: var(--white); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step { text-align: center; position: relative; }
.step__num {
  width: 36px; height: 36px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}
.step__icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step__icon svg { width: 28px; height: 28px; color: var(--yellow); }
.step__title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step__desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.steps__grid::before {
  content: '';
  position: absolute;
  top: 18px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}

@media (max-width: 900px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid::before { display: none; }
}
@media (max-width: 480px) { .steps__grid { grid-template-columns: 1fr; } }

/* ===== DESTINATIONS ===== */
.destinations__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.dest-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.dest-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--navy-light);
  background: var(--navy);
  color: var(--white);
}
.dest-pill svg { width: 15px; height: 15px; }
.dest-pill:hover svg { color: var(--yellow); }

/* ===== BOOKING INFO ===== */
.booking-info__box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 32px;
}
.booking-info__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.booking-info__icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-info__icon svg { width: 22px; height: 22px; color: var(--navy); }
.booking-info__header h3 { font-size: 20px; font-weight: 800; color: var(--navy); }
.booking-info__list { display: flex; flex-direction: column; gap: 12px; }
.booking-info__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  color: #78350f;
}
.booking-info__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.active { border-color: var(--navy-light); box-shadow: var(--shadow-sm); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  background: var(--bg);
  transition: background .2s;
  user-select: none;
}
.faq-item.active .faq-item__q { background: var(--white); }
.faq-item__q:hover { background: #eef2f8; }
.faq-item__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--navy);
}
.faq-item.active .faq-item__icon { transform: rotate(180deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item__a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
}
.contact__details {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact__biz-name { font-size: 22px; font-weight: 800; margin-bottom: 24px; color: var(--white); }
.contact__item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact__item-icon {
  width: 44px; height: 44px;
  background: rgba(247,185,0,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__item-icon svg { width: 20px; height: 20px; color: var(--yellow); }
.contact__item-label { font-size: 13px; color: rgba(255,255,255,0.6); display: block; margin-bottom: 2px; }
.contact__item p { font-size: 15px; line-height: 1.5; }
.contact__item a { color: var(--yellow); }
.contact__cta-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact__form-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact__form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.req { color: #dc2626; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,50,107,0.1);
}
.form-group textarea { resize: vertical; }
.form-error {
  display: none;
  font-size: 13px;
  color: #dc2626;
  margin-top: 4px;
}
.form-group.error .form-error { display: block; }
.form-group.error input,
.form-group.error select { border-color: #dc2626; }

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__details, .contact__form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== FINAL CTA ===== */
.cta-section { padding: 48px 0 64px; }
.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-navy);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(247,185,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-card__title { font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 12px; position: relative; }
.cta-card__text { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 28px; line-height: 1.6; position: relative; }
.cta-card__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

@media (max-width: 600px) {
  .cta-card { padding: 32px 20px; }
  .cta-card__title { font-size: 24px; }
  .cta-card__buttons { flex-direction: column; }
  .cta-card__buttons .btn { width: 100%; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding-bottom: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 56px 20px 40px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer__logo { width: 40px; height: 40px; }
.footer__brand-name { font-size: 18px; font-weight: 800; color: var(--white); }
.footer__addr, .footer__phone {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.6;
  margin-bottom: 12px;
}
.footer__icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--yellow); margin-top: 2px; }
.footer__phone a { color: var(--yellow); font-weight: 600; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, opacity .2s;
}
.footer__social-btn:hover { transform: translateY(-2px); opacity: .85; }
.footer__social-btn svg { width: 20px; height: 20px; color: var(--white); }
.footer__social-btn--call { background: var(--navy-light); }
.footer__social-btn--wa { background: var(--wa); }
.footer__heading { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; transition: color .2s; }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 13px;
  text-align: center;
}
.footer__bottom p { margin-bottom: 4px; }
.footer__copy { color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px 30px; }
}

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(22,163,74,0.4);
  z-index: 900;
  transition: transform .2s, box-shadow .2s;
  animation: pulse-wa 2s infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; color: var(--white); }
@keyframes pulse-wa {
  0% { box-shadow: 0 6px 20px rgba(22,163,74,0.4), 0 0 0 0 rgba(22,163,74,0.3); }
  70% { box-shadow: 0 6px 20px rgba(22,163,74,0.4), 0 0 0 14px rgba(22,163,74,0); }
  100% { box-shadow: 0 6px 20px rgba(22,163,74,0.4), 0 0 0 0 rgba(22,163,74,0); }
}

@media (min-width: 769px) {
  .float-wa { display: flex; }
}

/* ===== MOBILE BOOKING BAR ===== */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  display: none;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  border-top: 1px solid var(--border);
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: opacity .2s;
}
.mobile-bar__btn:active { opacity: .85; }
.mobile-bar__btn svg { width: 20px; height: 20px; }
.mobile-bar__btn--call { background: var(--navy); }
.mobile-bar__btn--wa { background: var(--wa); }

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 60px; }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,29,64,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(.95);
  transition: transform .25s;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: none;
  background: var(--bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.modal__close:hover { background: var(--border); }
.modal__close svg { width: 20px; height: 20px; color: var(--text); }
.modal__body h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; padding-right: 40px; }
.modal__body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.modal__body p { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 12px; }
.modal__body ul { padding-left: 20px; margin-bottom: 12px; }
.modal__body ul li { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 6px; }

@media (max-width: 600px) {
  .modal { padding: 28px 20px; }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-wa { animation: none; }
  html { scroll-behavior: auto; }
}
