@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&display=swap');
/* HERO FIX – GUARANTEED */
.hero {
  position: relative;
  background-image: url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,70,150,0.88), rgba(30,120,210,0.85));
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

/* HEARTBEAT LINE – FIXED & VISIBLE */
.heartbeat {
  margin: 22px auto;
}

.heartbeat span {
  display: block;
  width: 280px;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff,
    #00e5ff,
    #ffffff,
    transparent
  );
  border-radius: 10px;
  animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #e6edf5;
  color: #0b2d5c;
}

/* HERO */
.hero {
  position: relative;
  background-image: url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,70,150,0.9), rgba(30,120,210,0.85));
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* HEARTBEAT */
.heartbeat span {
  display: inline-block;
  width: 220px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: pulse 2s infinite;
  margin: 18px auto;
}

@keyframes pulse {
  0% {opacity: .2}
  50% {opacity: 1}
  100% {opacity: .2}
}

.hero h2 {
  font-size: 34px;
  margin-top: 10px;
}

.hero-sub {
  font-size: 20px;
}

.hero-price {
  margin: 30px auto;
  background: white;
  color: #0b4fa3;
  font-size: 34px;
  font-weight: 800;
  padding: 16px 44px;
  border-radius: 60px;
  box-shadow: 0 0 25px rgba(255,255,255,0.6);
}

/* CTA */
.hero-actions {
  margin-top: 20px;
}

.cta {
  display: inline-block;
  background: #fff;
  color: #0b4fa3;
  padding: 14px 28px;
  border-radius: 40px;
  margin: 8px;
  font-weight: 700;
  text-decoration: none;
}

.cta.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* SECTIONS */
.section {
  background: linear-gradient(
    to bottom,
    #f3f7fc 0%,
    #e9f1f9 100%
  );
  border-radius: 16px;
  padding: 40px; /* unchanged */
  margin: 50px auto; /* unchanged */
  max-width: 1100px;
  box-shadow:
    0 8px 20px rgba(10, 40, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.section h2 {
  text-align: center;
  font-size: 32px;
  color: #0b4fa3;
}

.light {
  background: #eef4ff;
  padding: 60px 25px;
}

/* LISTS */
.ticks {
  list-style: none;
  max-width: 720px;
  margin: auto;
}

.ticks li {
  margin: 16px 0;
  padding-left: 32px;
  position: relative;
}

.ticks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1aa260;
}

/* FORM */
form {
  max-width: 520px;
  margin: auto;
}

label {
  font-weight: 600;
  margin-top: 18px;
  display: block;
}

input, select {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #cdd9ee;
}

button {
  width: 100%;
  margin-top: 30px;
  padding: 18px;
  font-size: 18px;
  background: #0b4fa3;
  color: white;
  border: none;
  border-radius: 40px;
}

/* LOCATION */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

iframe {
  height: 280px;
  width: 100%;
  border: none;
  border-radius: 12px;
}

/* CONTACT */
.contact-item {
  text-align: center;
  font-size: 20px;
}

footer {
  background: #0b4fa3;
  color: white;
  text-align: center;
  padding: 25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {font-size: 42px;}
  .location {grid-template-columns: 1fr;}
}
.hero-bg {
  background-image: url("hero-bg.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  min-height: 420px;
}
.section {
  background: linear-gradient(
    to bottom,
    #f1f6fb 0%,
    #e7eff7 100%
  );
  border-radius: 18px;
  padding: 42px;
  margin: 55px auto;
  max-width: 1100px;
  box-shadow: 0 14px 32px rgba(10, 50, 110, 0.12);
}

p, li, label {
  color: #0b2d5c;
  font-size: 1.08rem;
  line-height: 1.75;
}


li {
  margin-bottom: 10px;
}
.section-icon {
  font-size: 5.8rem;
  color: #1f6fd1;
  margin-bottom: 12px;
  text-align: center;
}

.section-card h2 {
  text-align: center;
  margin-top: 0;
}
.section-card ul {
  margin-top: 20px;
}
/* SECTION HEADINGS – FIXED & PREMIUM */
.section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0a3a78;
  margin: 10px 0 25px 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.section-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5.8rem;
  color: #1f6fd1;
  margin-bottom: 6px;
}
.booking-note {
  text-align: center;
  font-style: italic;
  margin-top: 10px;
  color: #4a648a;
}
#booking .booking-note {
  text-align: center !important;
  font-style: italic;
  margin: 12px auto 0 auto;
  color: #4a648a;
  display: block;
}
.hero-subtext {
  color: rgba(255, 255, 255, 0.88); /* soft white */
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.85);
  color: #0b4fa3;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 60, 120, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn i {
  font-size: 1.1rem;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 60, 120, 0.2);
}

.contact-btn.primary {
  background: rgba(255, 255, 255, 0.9);
  color: #0b4fa3;
  border: 2px solid #1f6fd1;
}
html {
  scroll-behavior: smooth;
}
/* ---------- MOBILE OPTIMISATION ---------- */
@media (max-width: 768px) {

  /* Reduce overall section bulk */
  .section {
    padding: 26px;
    margin: 32px 16px;
  }

  /* Scale headings down */
  .section h2 {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  /* Reduce icon size on mobile */
  .section-icon {
    font-size: 3.2rem;
    margin-bottom: 6px;
  }

  /* Body text slightly smaller */
  p, li, label {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  /* Hero title */
  .hero h1 {
    font-size: 2.4rem;
  }

  /* Hero subtext */
  .hero-subtext {
    font-size: 1.05rem;
  }

  /* Contact buttons stack nicely */
  .contact-methods {
    gap: 14px;
  }

  .contact-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}
/* ---------- BOOKING FORM CLEAN-UP ---------- */

#booking form {
  max-width: 520px;
  margin: 0 auto;
}

#booking label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0a3a78;
}

#booking input,
#booking select,
#booking textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.85);
  box-shadow: inset 0 0 0 1px rgba(10,60,120,0.15);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

#booking input:focus,
#booking select:focus,
#booking textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #1f6fd1;
  background: white;
}
#booking button {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #1f6fd1, #0b4fa3);
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,60,120,0.25);
}

#booking button:hover {
  opacity: 0.95;
}
/* ===== ULTRA COMPACT, PREMIUM LAYOUT ===== */

/* Hero tightened */
.hero {
  min-height: 45vh;
  padding-top: 60px;
  padding-bottom: 50px;
}

/* Reduce section padding */
.section {
  padding: 28px 18px;
}

/* Card sections tighter */
.section-card {
  padding: 22px 22px;
}

/* Headings closer */
h1 {
  margin-bottom: 8px;
}

h2 {
  margin-bottom: 10px;
}

/* Paragraphs tighter */
p {
  margin-bottom: 8px;
  line-height: 1.45;
}

/* Icons closer to headings */
.section-icon {
  margin-bottom: 8px;
}

/* Booking form — compact but readable */
form label {
  margin-top: 8px;
  margin-bottom: 3px;
  font-size: 14px;
}

form input,
form select {
  padding: 8px 10px;
  font-size: 14px;
}

/* Buttons slimmer */
button {
  padding: 10px 16px;
  margin-top: 14px;
  font-size: 15px;
}

/* Reduce gap between list items */
ul li {
  margin-bottom: 6px;
}

/* Mobile optimisation */
@media (max-width: 768px) {
  .hero {
    min-height: 40vh;
    padding-top: 45px;
    padding-bottom: 40px;
  }

  .section {
    padding: 22px 14px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  form input,
  form select {
    font-size: 13.5px;
    padding: 8px;
  }
}
/* ===== EXTRA COMPACT HERO ===== */
.hero {
  min-height: 30vh;
  padding-top: 40px;
  padding-bottom: 35px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 28vh;
    padding-top: 35px;
    padding-bottom: 30px;
  }
}
/* ===== WHAT TO BRING: 2 COLUMN LIST ===== */
#what-to-bring ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 18px;
}

@media (max-width: 768px) {
  #what-to-bring ul {
    grid-template-columns: 1fr;
  }
}
/* ===== SERVICES: 2 COLUMN GRID ===== */
#services ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}

@media (max-width: 768px) {
  #services ul {
    grid-template-columns: 1fr;
  }
}
/* ===== BOOKING FORM: 2 COLUMNS ===== */
#booking form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

#booking form label,
#booking form input,
#booking form select,
#booking form button,
#booking form #time-wrapper {
  grid-column: span 2;
}

/* Right column fields */
#booking form .right-col {
  grid-column: span 1;
}

/* Button full width */
#booking form button {
  grid-column: span 2;
  margin-top: 14px;
}

/* Mobile fallback */
@media (max-width: 900px) {
  #booking form {
    grid-template-columns: 1fr;
  }
}
/* ===== FORCE BOOKING FORM INTO 2 COLUMNS (DESKTOP) ===== */
#booking form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px 22px;
}

/* Left column fields */
#booking form label,
#booking form input,
#booking form select {
  width: 100%;
}

/* Right column wrapper */
#booking form .right-col {
  grid-column: 2 / 3;
}

/* Button full width */
#booking form button {
  grid-column: 1 / -1;
}

/* Time wrapper spacing */
#booking #time-wrapper {
  margin-top: 10px;
}

/* Mobile: revert to single column */
@media (max-width: 900px) {
  #booking form {
    display: block !important;
  }
}
/* ===== OVERRIDE BLOCK FORM LAYOUT FOR BOOKING ONLY ===== */
#booking form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px 22px;
}

/* Force right column */
#booking form .right-col {
  grid-column: 2 / 3;
}

/* Full width submit button */
#booking form button {
  grid-column: 1 / -1;
}

/* Mobile: revert safely */
@media (max-width: 900px) {
  #booking form {
    display: block !important;
  }
}
/* ===== CONTENT COLUMN CONSISTENCY ===== */

.services-list,
.bring-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

@media (max-width: 900px) {
  .services-list,
  .bring-list {
    display: block;
  }
}
#booking form {
  display: block !important;
}

#booking form label,
#booking form input,
#booking form select,
#booking form button {
  width: 100%;
}
/* Restore tick list styling */
.services-list,
.bring-list {
  list-style: none;
  padding-left: 0;
}

.services-list li,
.bring-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.services-list li::before,
.bring-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2fa36b; /* green tick */
  font-weight: 700;
}

