/* =====================
   RESET & ROOT
   ===================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --navy:     #03375B;
  --navy-dk:  #022a47;
  --navy-lt:  #ddeaf5;
  --cream:    #faf8f4;
  --warm:     #f3ede3;
  --border:   #e2ddd5;
  --text:     #1a1a1a;
  --muted:    #6b7a87;
  --white:    #ffffff;
  --rad:      10px;
}
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { color: inherit; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3 {
  font-family: 'Cabin', sans-serif;
  line-height: 1.1;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(36px, 8vw, 68px); font-weight:700; }
h2 { font-size: clamp(26px, 5vw, 42px); font-weight:700; }
h3 { font-size: clamp(18px, 3vw, 22px); font-weight:600; }

/* =====================
   LAYOUT HELPERS
   ===================== */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media(min-width:640px){ .wrap { padding: 0 32px; } }
@media(min-width:1120px){ .wrap { padding: 0 24px; } }

.section { padding: 64px 0; border-bottom: 1px solid var(--border); }
@media(min-width:768px){ .section { padding: 88px 0; } }

.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--navy);
  margin-bottom: 12px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  transition: all .18s ease;
  line-height: 1;
  cursor: pointer;
  text-align: center;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.btn-navy {
  background: var(--navy);
  color: white;
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-dk); border-color: var(--navy-dk); }

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

.btn-white {
  background: white;
  color: var(--navy);
  border: 2px solid white;
}
.btn-white:hover { background: var(--navy-lt); border-color: var(--navy-lt); }

/* =====================
   BREADCRUMB + PAGE HERO
   ===================== */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

.page-hero { background: var(--navy); padding: 48px 20px 44px; color: white; }
@media(min-width:640px){ .page-hero { padding: 64px 32px 56px; } }
.page-hero .label { color: rgba(255,255,255,.4); }
.page-hero h1 { color: white; font-size: clamp(28px,5vw,48px); margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.6); font-weight: 300; max-width: 560px; line-height: 1.75; }

/* =====================
   CONTACT METHODS
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 8px;
}
@media(min-width:640px){ .contact-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1000px){ .contact-grid { grid-template-columns: repeat(4,1fr); } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.contact-card:hover { box-shadow: 0 10px 30px rgba(3,55,91,.1); transform: translateY(-3px); border-color: var(--navy-lt); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-lt);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card.whatsapp .contact-card-icon { background: rgba(37,211,102,.15); color: #1a9c4f; }
.contact-card-title { font-family: 'Cabin', sans-serif; font-size: 17px; font-weight: 700; }
.contact-card-value { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.contact-card-cta { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--navy); }

/* =====================
   DETAILS SECTION (hours / area / socials)
   ===================== */
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 12px;
}
@media(min-width:768px){ .details-grid { grid-template-columns: 1fr 1fr; } }

.note-box {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.area-chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--navy-lt);
  padding: 6px 13px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease;
}
a.area-chip:hover {
  background: var(--navy);
  color: var(--white);
}

/* =====================
   BOOKING / CONTACT FORMS
   ===================== */
.form-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.form-section:last-of-type { border-bottom: none; }
.form-card { max-width: 640px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 32px 28px; }
.form-card h2 { font-size: clamp(20px,4vw,26px); margin-bottom: 6px; }
.form-card .form-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media(min-width:560px){ .form-row.form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-field .hint { font-weight: 400; color: var(--muted); font-size: 12.5px; }
.form-field input[type=text], .form-field input[type=email], .form-field input[type=tel], .form-field select, .form-field textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 7px; padding: 11px 13px;
  font-family: inherit; font-size: 14.5px; color: var(--text); background: var(--cream);
  transition: border-color .15s; outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--navy); }
.form-field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-honeypot { position: absolute; left: -9999px; top: -9999px; }
.form-submit-row { margin-top: 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.form-status { font-size: 13.5px; font-weight: 600; display: none; }
.form-status.success { color: var(--green, #1a7f4e); display: block; }
.form-status.error { color: #c0392b; display: block; }
.form-card.is-submitted .actual-form { display: none; }

/* =====================
   BOOKING PAGE LAYOUT (form + sidebar, side by side on desktop)
   ===================== */
.booking-layout { padding: 40px 0 56px; }
.booking-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media(min-width:900px){ .booking-grid { grid-template-columns: 1.3fr 1fr; gap: 36px; } }
.booking-grid .form-card { max-width: none; margin: 0; }

.booking-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 22px 24px; }
.sidebar-card h3 { font-size: 15px; margin-bottom: 14px; }
.sidebar-contact-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-contact-item { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.sidebar-contact-item .sc-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--navy-lt); color: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-contact-item .sc-icon.whatsapp { background: rgba(37,211,102,.12); color: #22b358; }
.sidebar-contact-item .sc-text-title { font-size: 13px; font-weight: 700; }
.sidebar-contact-item .sc-text-value { font-size: 12.5px; color: var(--muted); }
.sidebar-note { font-size: 13px; color: var(--muted); line-height: 1.65; }
.sidebar-switch-link { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); text-decoration: none; margin-top: 4px; }
.sidebar-switch-link:hover { text-decoration: underline; }

/* =====================
   CTA BAND
   ===================== */
.contact-cta { background: var(--navy); padding: 48px 20px; text-align: center; }
.contact-cta h2 { color: white; font-size: clamp(22px,4vw,30px); margin-bottom: 10px; }
.contact-cta p { color: rgba(255,255,255,.6); font-size: 15px; font-weight: 300; margin-bottom: 24px; }
.contact-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--navy);
  color: white;
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand {
  font-family: 'Cabin', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  line-height: 1.7;
  max-width: 230px;
}
.footer-col-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color .15s;
}
.footer-areas-block {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
  padding-top: 26px;
  margin-bottom: 26px;
}
.footer-nav-areas {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-nav-areas a {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .15s ease;
}
.footer-nav-areas a:hover {
  background: rgba(255,255,255,.14);
  color: white;
}

.footer-nav a:hover { color: white; }
.footer-nav a.footer-contact-highlight {
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media(min-width:768px){
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  line-height: 1.8;
  max-width: 580px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  white-space: nowrap;
}

/* =====================
   SECTION LABELS
   ===================== */
.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--navy);
  margin-bottom: 12px;
}

/* =====================
   SOCIAL STRIP
   ===================== */
.social-strip {
  background: var(--navy-dk);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media(min-width:640px){ .social-strip { padding: 14px 32px; } }
.social-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  justify-content: center;
}
@media(min-width:640px){ .social-strip-inner { justify-content: space-between; } }
.social-strip-label {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  white-space: nowrap;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: all .18s ease;
  white-space: nowrap;
}
.social-btn:hover { background: rgba(255,255,255,.14); color: white; border-color: rgba(255,255,255,.25); }
.social-btn.instagram:hover { background: rgba(225,48,108,.25); border-color: rgba(225,48,108,.4); }
.social-btn.facebook:hover { background: rgba(24,119,242,.25); border-color: rgba(24,119,242,.4); }
.social-btn.tiktok:hover { background: rgba(255,255,255,.12); }
.social-btn.trustpilot:hover { background: rgba(0,182,122,.2); border-color: rgba(0,182,122,.4); }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================
   REVEAL ANIMATION
   ===================== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 50;
  box-shadow: 0 2px 16px rgba(3,55,91,.35);
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
