:root {
  --brand-blue: #1e3a8a;   /* navy primary */
  --brand-green: #22c55e;  /* whatsapp / success */
  --accent-coral: #f26b50; /* highlight/links */
  --bg-light: #F8FAFC;
  --text-dark: #0f172a;
  --text-muted: #475569;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Lock the header to the top */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  width: 100%;
}

/* Offset page content so the fixed header doesn't overlap */
body { padding-top: 120px; }

@media (max-width: 767px) {
  body { padding-top: 116px; }
}

main {
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.35);
  transition: background 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.btn-primary:hover { background: #172f73; }
.btn-primary:focus-visible { outline: 2px solid var(--accent-coral); outline-offset: 3px; }

.btn-secondary {
  background: transparent;
  color: var(--brand-blue);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  border: 1.5px solid var(--brand-blue);
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.btn-secondary:hover { background: #e8edff; color: #14275d; border-color: #14275d; }
.btn-secondary:focus-visible { outline: 2px solid var(--accent-coral); outline-offset: 3px; }

.btn-tertiary {
  color: var(--accent-coral);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-tertiary:hover { color: #d3543b; }
.map-embed iframe {
  border: 0;
  border-radius: 12px;
}

.link-chip {
  display: inline-block;
  padding: 8px 12px;
  background: #eff6ff;
  color: var(--brand-blue);
  border-radius: 9999px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.link-chip:hover { background: #dbeafe; }

/* Trust badges */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f4f6fb;
  border-radius: 999px;
  font-weight: 600;
  color: #1f2a44;
  border: 1px solid #e2e8f0;
}
.trust-chip i { color: #1d4ed8; }

/* Utility: hero text shadow */
.text-shadow-lg {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}
.area-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15,23,42,0.12);
}
.area-card img { display: block; width: 100%; height: 160px; object-fit: cover; }
.area-card h4 { font-weight: 700; margin-top: 8px; }
.area-card p { font-size: 0.95rem; color: #475569; }

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.section-title {
  font-size: 1.575rem; /* ~30% smaller */
  line-height: 1.2;
  font-weight: 800;
  color: var(--brand-blue);
}

.section-subtitle {
  color: #4b5563;
  font-size: 0.79rem; /* 30% smaller */
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #eef2ff;
  color: #312e81;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.badge-soft i { color: #1d4ed8; }

.brand-logo {
  height: 80px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.brand-section {
  position: relative;
}
.brands-shell {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  position: relative;
}
.brand-bar {
  width: 100%;
  max-width: 1400px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(15,23,42,0.12);
  border: 1px solid #e5e7eb;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.brand-bar .brand-item {
  flex: 1 1 160px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-tagline {
  font-size: 16px;
  font-weight: 700;
  color: #4b5563;
  text-align: center;
  background: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(15,23,42,0.12);
  border: 1px solid #e5e7eb;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .brand-bar {
    padding: 12px 14px;
    gap: 14px;
  }
  .brand-bar .brand-item {
    flex: 1 1 120px;
    min-width: 120px;
  }
  .brands-shell { padding: 0 10px; max-width: none; }
  .brand-tagline {
    position: static;
    transform: none;
    bottom: auto;
    white-space: normal;
    margin-top: 6px;
  }
}

@media (min-width: 992px) {
  .brand-bar {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.brand-item {
  padding: 8px 18px;
  flex: 1 1 160px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-1200 {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid .service-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}
.services-grid .service-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.services-shell {
  background: linear-gradient(180deg, #f7f9ff 0%, #f8fafc 100%);
  padding: 48px 20px;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.services-left {
  background: transparent;
}
.services-right {
  width: 100%;
}
.booking-card {
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 767px) {
  .services-shell { padding: 36px 14px; }
  .services-inner { grid-template-columns: 1fr; }
  .booking-card { padding: 22px; }
}

@media (min-width: 992px) {
  .services-inner {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.services-head { margin-bottom: 32px; }
.service-group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 18px; }
.service-group.alt .service-card { background: #fff; }
.group-head {
  font-weight: 800;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.group-head::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(29,58,138,0.15);
}

.service-card {
  background: #fff;
  border: 1px solid #e7ebff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 170px;
}
.service-card.ghost {
  background: #f7f9ff;
  border-color: #e4e9ff;
}
.service-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}
.service-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.booking-card input,
.booking-card select {
  height: 48px;
}
.booking-card button[type="submit"],
.booking-card .btn-primary {
  width: 100% !important;
}

/* Areas layout */
.areas-shell {
  background: linear-gradient(180deg, #f7f9ff 0%, #f8fafc 100%);
  padding: 48px 20px;
}
.areas-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1.4fr;
  gap: 20px;
  align-items: start;
}
.areas-head {
  margin-bottom: 16px;
}
.areas-sub {
  color: #4b5563;
  font-size: 15px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.area-card {
  background: #f7f9ff;
  border: 1px solid #e4e9ff;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
   gap: 10px;
  font-weight: 700;
  color: #1f2937;
  box-shadow: 0 10px 22px rgba(15,23,42,0.05);
}
.area-chevron {
  color: var(--brand-blue);
  font-size: 18px;
}
.landmark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.landmark-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(15,23,42,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.landmark-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.landmark-body {
  padding: 14px 16px 16px;
}
.landmark-body h4 {
  font-size: 12.6px; /* 30% smaller */
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}
.landmark-body p {
  margin: 0;
  color: #475569;
  font-size: 9.8px; /* 30% smaller */
}
.areas-note {
  margin-top: 6px;
  color: #475569;
  font-size: 14px;
}
.map-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #e0f2fe;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #bae6fd;
}
.map-chip:hover { background: #bae6fd; }

@media (max-width: 991px) {
  .areas-inner {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 640px) {
  .areas-shell { padding: 36px 14px; }
  .area-card { padding: 14px 16px; }
  .areas-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

/* Cooling CTA */
.cta-cooling {
  padding: 48px 18px 20px;
  display: flex;
  justify-content: center;
}
.cta-card {
  width: 100%;
  max-width: 1100px;
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
  text-align: center;
  padding: 28px 20px 30px;
}
.cta-card h2 {
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
  font-weight: 800;
  color: #1f3c96;
  margin: 0 0 10px;
}
.cta-card p {
  margin: 0 0 18px;
  color: #475569;
  font-size: 16px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cta-btn-primary,
.cta-btn-outline,
.cta-btn-whatsapp {
  min-width: 140px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, color 120ms ease;
}
.cta-btn-primary {
  background: #1f3c96;
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 60, 150, 0.25);
}
.cta-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(31,60,150,0.3); }
.cta-btn-outline {
  background: transparent;
  color: #1f3c96;
  border: 2px solid #1f3c96;
}
.cta-btn-outline:hover { background: #e8edff; }
.cta-btn-whatsapp {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 12px 26px rgba(34,197,94,0.25);
}
.cta-btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(34,197,94,0.3); }

@media (max-width: 640px) {
.cta-card { padding: 24px 16px; }
  .cta-btn-primary, .cta-btn-outline, .cta-btn-whatsapp { width: 100%; }
  .cta-actions { gap: 10px; }
}

.trust-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 70%, #eef2ff 100%);
}
.trust-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.trust-copy h2 {
  font-size: clamp(2.2rem, 2vw + 1rem, 3rem);
  font-weight: 800;
  color: #0f172a;
  margin: 10px 0 6px;
}
.trust-copy p { color: #475569; margin: 0 0 14px; }
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.trust-metric {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}
.metric-number {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.metric-unit { font-size: 12px; color: #475569; }
.metric-label { color: #475569; font-size: 14px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.trust-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
}
.trust-card h3 { margin: 10px 0 6px; font-size: 18px; font-weight: 800; color: #0f172a; }
.trust-card p { margin: 0; color: #475569; }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8edff;
  color: #1e3a8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.trust-visual {
  display: flex;
  align-items: stretch;
}
.trust-image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,0.14);
  border: 1px solid #e5e7eb;
}
.trust-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trust-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15,23,42,0.78);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.section-pad {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .section-pad {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.faq-item[open] summary {
  color: var(--brand-blue);
}
.faq-item p {
  padding: 0 16px 14px 16px;
  color: var(--text-muted);
}

/* Reviews */
.review-card { position: relative; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #1e3a8a;
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Header nav dropdowns */
.nav-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  min-width: 14rem;
}

/* Hide scrollbars for horizontal strips */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Header nav dropdowns */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #0b1224;
  z-index: 60;
}
.sticky-btn {
  text-align: center;
  padding: 14px 0;
  color: #fff;
  font-weight: 700;
}
.sticky-btn.call { background: #1d4ed8; }
.sticky-btn.whatsapp { background: #22c55e; }
.sticky-spacer {
  height: 52px;
  width: 100%;
}

/* Breadcrumbs */
[aria-label="Breadcrumb"] ol li a { font-weight: 600; }

/* Proof strip glass cards */

/* Sticky bar */
:root {
  --nav-navy: #203d94;
  --nav-text: #1f2937;
}

header .topbar {
  background: var(--nav-navy);
  color: #fff;
}
.bar-inner {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 12px;
}
.bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.bar-left .dot { display: inline-block; }
.bar-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.bar-call:hover { opacity: 0.9; }

header .nav-shell {
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
header .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--nav-navy);
  text-decoration: none;
}
header .nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--nav-text);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--nav-navy); }
.nav-links a:focus-visible {
  outline: 2px solid var(--accent-coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nav-text);
  font-weight: 600;
  cursor: pointer;
}
.nav-trigger:hover { color: var(--nav-navy); }
.chev { font-size: 12px; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  z-index: 200;
}
.nav-dropdown a {
  display: block;
  padding: 8px 14px;
  color: var(--nav-text);
  font-weight: 600;
  pointer-events: auto;
}
.nav-dropdown a:hover { background: #f3f4f6; color: var(--nav-navy); }
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown.wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 0;
  padding: 8px 0;
}
.nav-dropdown.nav-mega {
  display: grid;
  min-width: clamp(320px, 70vw, 680px);
  max-width: calc(100vw - 32px);
  padding: 14px 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}
.nav-dropdown.nav-mega > a {
  padding: 12px 14px;
  border-radius: 10px;
}
.nav-dropdown.nav-mega > a:hover {
  background: #f1f5f9;
  padding-left: 16px;
}

@media (max-width: 1024px) {
  .nav-dropdown.nav-mega {
    left: 0;
    right: 0;
    margin: 0 16px;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}
@media (max-width: 768px) {
  .nav-dropdown.nav-mega {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nav-section.full-span {
    grid-column: 1 / -1;
  }
}
.nav-section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 6px;
}
.nav-section a {
  padding: 8px 0;
  border-radius: 8px;
  display: block;
}
.nav-section a:hover {
  background: #f1f5f9;
  padding-left: 6px;
}
.nav-section.full-span {
  grid-column: 1 / -1;
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
  margin-top: 6px;
}
.nav-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px 10px;
}
.nav-area-link {
  padding: 8px 10px;
  border-radius: 8px;
  display: inline-block;
  color: var(--nav-text);
  font-weight: 600;
}
.nav-area-link:hover {
  background: #f1f5f9;
  color: var(--nav-navy);
  padding-left: 12px;
}
.nav-area-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta-btn {
  background: var(--nav-navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(32,61,148,0.32);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn:hover { background: #163174; }
.cta-btn-mobile {
  background: var(--brand-blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(29,58,138,0.22);
}

.hamburger {
  font-size: 28px;
  color: var(--nav-navy);
}
.call-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--nav-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(32,61,148,0.28);
}

.mobile-menu {
  background: #fff;
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #e5e7eb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease;
}
.mobile-menu a { font-weight: 700; color: var(--nav-text); }
.mobile-menu a:hover { color: var(--nav-navy); }
.mobile-menu.show {
  max-height: 70vh;
  overflow-y: auto;
}
.mobile-group {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-group-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #475569;
  font-weight: 800;
}

@media (max-width: 767px) {
  .nav-shell { height: 72px; }
  .cta-btn { display: none; }
  .mobile-menu.show { max-height: 360px; }
}

@media (min-width: 768px) {
  header .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* Hero layout */
.hero-shell {
  background: #fff;
  padding: 42px 26px 32px;
}
.hero-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1640px; /* ~30% wider */
  margin: 0 auto;
  align-items: center;
}
.hero-copy {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 780px; /* widened */
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  color: #1e3a8a;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-green);
  display: inline-block;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 2vw + 1.6rem, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #0f172a;
}
.hero-sub {
  color: #475569;
  font-size: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-btn {
  min-height: 52px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 14px;
  font-size: 16px;
}
.hero-link {
  font-weight: 800;
  color: var(--accent-coral);
  gap: 6px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #475569;
  font-size: 15px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-visual {
  grid-column: span 12;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: linear-gradient(135deg, #e8edff 0%, #ffffff 45%, #f8fafc 100%);
  border-radius: 22px;
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  max-width: 680px; /* widened */
  width: 100%;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 504px; /* 20% taller than 420px */
}

@media (min-width: 768px) {
  .hero-copy { grid-column: span 6; }
  .hero-visual { grid-column: span 6; justify-content: flex-end; }
}

@media (max-width: 767px) {
  .hero-shell { padding: 32px 16px 20px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .btn-tertiary { width: 100%; justify-content: center; }
  .hero-card img { max-height: 320px; }
}

@media (min-width: 1200px) {
  .hero-inner { max-width: 1500px; }
  .hero-card { max-width: 640px; }
}


/* --- Mobile refinements (<=768px) --- */
@media (max-width: 768px) {
  /* Hero */
  .hero-shell { padding: 28px 14px 18px; }
  .hero-inner { display: flex; flex-direction: column; gap: 14px; }
  .hero-copy { gap: 10px; }
  .hero-copy h1 { font-size: clamp(24px, 5vw + 12px, 32px); line-height: 1.18; }
  .hero-sub { font-size: 16px; line-height: 1.5; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .btn-tertiary { width: 100%; justify-content: center; padding: 14px 16px; }
  .hero-meta { flex-direction: column; gap: 8px; font-size: 14px; }
  .hero-chips { gap: 8px; }
  .hero-card { max-width: 100%; box-shadow: 0 16px 36px rgba(15,23,42,0.12); }
  .hero-card img { max-height: 280px; object-fit: cover; }

  /* Brand bar */
  .brand-bar { flex-wrap: nowrap; overflow-x: auto; gap: 14px; padding: 12px 10px; -webkit-overflow-scrolling: touch; }
  .brand-bar::-webkit-scrollbar { display: none; }
  .brand-bar .brand-item { flex: 0 0 120px; min-width: 120px; }
  .brand-logo { height: 56px; max-height: 56px; }
  .brand-tagline { position: static; transform: none; white-space: normal; margin-top: 8px; padding: 10px 16px; box-shadow: none; }

  /* Services */
  .services-shell { padding: 32px 14px; }
  .services-inner { grid-template-columns: 1fr; gap: 18px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-title { font-size: 1.6rem; line-height: 1.25; }
  .section-subtitle { font-size: 0.95rem; }
  .booking-card { margin-top: 8px; box-shadow: 0 10px 24px rgba(15,23,42,0.12); }

  /* Footer */
  footer .container { padding-left: 14px; padding-right: 14px; }
}


@media (max-width: 768px) {
  /* Header top bar */
  header .topbar { padding: 8px 12px; }
  .bar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .bar-left { display: flex; gap: 10px; flex-wrap: wrap; font-size: 13px; }
  .bar-call { font-size: 14px; padding: 6px 0; }

  /* Header main row */
  .nav-shell { gap: 10px; padding: 10px 12px; }
  .logo { font-size: 20px; }
  header .nav-links { display: none; }
  header .nav-actions { gap: 8px; }
  .cta-btn-mobile, .call-icon { min-height: 40px; padding: 0 12px; font-size: 14px; border-radius: 10px; }
  .hamburger { margin-left: 4px; }

  /* Mobile typography */
  .section-title { font-size: 1.05rem; line-height: 1.3; }
  .section-subtitle { font-size: 0.7rem; }
  .area-card { font-size: 10.5px; }
  .landmark-body h4 { font-size: 11.2px; }
  .landmark-body p { font-size: 9.1px; }

  /* Forms: stack columns and enlarge taps */
  .grid.md\\:grid-cols-2,
  .md\\:grid-cols-2,
  .md\\:grid-cols-3,
  .md\\:grid-cols-4 { grid-template-columns: 1fr !important; gap: 12px !important; }
  form input, form select, form textarea { min-height: 44px; font-size: 16px; }
  form button { min-height: 44px; }
  form .flex.items-center.justify-between { flex-direction: column; align-items: stretch; gap: 10px; }

  /* Mobile CTA pill */
  .cta-pill-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    background: var(--brand-blue);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.25);
  }
  .cta-pill-mobile:hover { background: #17358c; }
}


/* Mobile-only landmark carousel */
@media (max-width: 768px) {
  .areas-carousel-mobile {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 4px 4px;
    margin-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .areas-carousel-mobile::-webkit-scrollbar { display: none; }
  .areas-carousel-mobile .landmark-card {
    min-width: 240px;
    max-width: 260px;
    scroll-snap-align: start;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(15,23,42,0.12);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
  }
  .areas-carousel-mobile .landmark-image img { height: 150px; object-fit: cover; }
  .areas-carousel-mobile .landmark-body { padding: 10px 12px; }
  .areas-carousel-mobile .landmark-body h4 { font-size: 15px; margin-bottom: 4px; }
  .areas-carousel-mobile .landmark-body p { font-size: 13px; color: #475569; }

  /* Keep desktop landmarks hidden on mobile (already hidden via md:block) */
}


.areas-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(560px, 100%);
  align-self: flex-start;
}
.landmark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.landmark-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(15,23,42,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 200px;
}
.landmark-image {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.landmark-body {
  padding: 10px 12px 10px;
}
.landmark-body h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}
.landmark-body p {
  margin: 0;
  color: #475569;
  font-size: 14px;
}
