:root {
  --blue: #0a4377;
  --blue-dark: #07345d;
  --blue-soft: #eaf1f7;
  --gray: #9b989a;
  --gray-dark: #5f6268;
  --gray-soft: #f5f6f8;
  --border: #dde2e8;
  --text: #243242;
  --muted: #59697a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 67, 119, 0.12);
  --shadow-soft: 0 10px 25px rgba(10, 67, 119, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1160px, calc(100% - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }

.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.95rem;
}
.topbar a { color: var(--white); }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  padding: 0.75rem 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand-logo { width: 68px; }
.brand-text span, .brand-text small { display: block; }
.brand-text span { font-weight: 800; font-size: 1.05rem; line-height: 1.05; }
.brand-text small { color: var(--gray-dark); font-weight: 700; }
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  padding: 0.6rem 0.82rem;
  font-size: 1.15rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}
.nav-links > a,
.dropdown-toggle {
  font-weight: 700;
  color: var(--text);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); text-decoration: none; transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { color: var(--text); background: #f7f9fb; }
.btn-light { background: var(--white); color: var(--blue-dark); }
.btn-sm { padding: 0.72rem 1rem; }

.dropdown {
  position: relative;
}
.dropdown-toggle {
  background: transparent;
  border: 0;
  font: inherit;
  padding: 0;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 0.7rem;
  display: none;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  color: var(--text);
  font-weight: 700;
}
.dropdown-menu a:hover { background: var(--gray-soft); text-decoration: none; }

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at 90% 5%, rgba(10,67,119,.10), transparent 18%),
    radial-gradient(circle at 8% 14%, rgba(155,152,154,.12), transparent 15%),
    linear-gradient(180deg, #f8fbff 0%, #eef4f8 50%, #ffffff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}
.eyebrow-light { color: rgba(255,255,255,0.82); }
h1, h2, h3 { line-height: 1.12; margin: 0 0 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.7rem 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-badges span {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 700;
  font-size: 0.94rem;
}
.hero-panel,
.trust-card,
.feature-card,
.service-card,
.value-box,
.location-card,
.form-card,
.photo-card,
.booking-card,
.info-card,
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel { padding: 1.6rem; }
.hero-panel img { border-radius: 20px; margin-bottom: 1rem; }
.hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1rem;
}
.hero-mini-grid > div {
  background: var(--gray-soft);
  border-radius: 18px;
  padding: 1rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--gray-soft); }
.section-dark {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}
.center { text-align: center; }
.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.grid-3, .grid-4, .card-grid, .locations-grid, .photo-grid, .service-grid, .booking-grid, .info-grid {
  display: grid;
  gap: 1.2rem;
}
.grid-3, .locations-grid, .photo-grid, .booking-grid, .info-grid { grid-template-columns: repeat(3, 1fr); }
.grid-4, .card-grid, .service-grid { grid-template-columns: repeat(4, 1fr); }
.trust-strip { margin-top: -1rem; padding-bottom: 2rem; }
.trust-card, .feature-card, .service-card, .value-box, .location-card, .info-card, .highlight-card { padding: 1.35rem; }
.trust-card strong, .feature-card strong { display: block; color: var(--blue); margin-bottom: 0.3rem; }
.feature-card p, .service-card p, .value-box p, .location-card p, .info-card p, .highlight-card p { color: var(--muted); margin: 0; }
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 1rem;
}
.service-card ul, .check-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.photo-card { overflow: hidden; }
.photo-card img { width: 100%; height: 240px; object-fit: cover; background: var(--blue-soft); }
.photo-card .photo-copy { padding: 1.2rem; }
.location-card iframe, .map-frame {
  width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 18px;
  background: var(--blue-soft);
}
.contact-grid, .booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}
.form-card { padding: 1.45rem; }
label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
input, textarea, select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  margin-bottom: 1rem;
}
textarea { min-height: 150px; resize: vertical; }
.footer {
  background: #0f1720;
  color: rgba(255,255,255,.84);
  padding: 1.25rem 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.small-note { font-size: 0.92rem; color: var(--muted); }
.hero-secondary {
  padding: 3.6rem 0 2.8rem;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f6fa 100%);
}
.breadcrumbs { color: var(--muted); font-size: 0.94rem; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--muted); }
.highlight-band {
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.booking-card img { border-radius: 20px 20px 0 0; }
.booking-card .booking-copy { padding: 1.2rem; }

@media (max-width: 1080px) {
  .grid-4, .card-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .locations-grid, .photo-grid, .booking-grid, .info-grid { grid-template-columns: 1fr; }
  .hero-grid, .split-grid, .contact-grid, .booking-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    margin-top: 0.6rem;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 3.5rem; }
}

@media (max-width: 560px) {
  .brand-text span { font-size: 0.96rem; }
  .brand-logo { width: 56px; }
  h2 { font-size: 1.8rem; }
  .hero-mini-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
}
