:root {
  --navy: #0a2540;
  --teal: #0f9e8a;
  --teal-dark: #0c7d6d;
  --white: #ffffff;
  --light-gray: #f2f7f6;
  --text-gray: #3d3d3a;
  --border-gray: #e5e5e5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-gray);
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.85; }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-full { width: 100%; font-size: 15px; padding: 12px; }

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  position: relative;
}
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: var(--navy); }
.logo-img { height: 40px; width: 40px; object-fit: cover; object-position: 50% 22%; border-radius: 8px; }
.nav-links { display: flex; gap: 24px; font-size: 14px; }
.nav-links a:hover { color: var(--teal); }
.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(10,37,64,0.75), rgba(10,37,64,0.75)), url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.hero-logo { width: 120px; height: 120px; object-fit: cover; border-radius: 16px; margin-bottom: 20px; }
.hero h1 { font-size: 30px; max-width: 600px; margin: 0 auto 16px; }
.hero p { max-width: 460px; margin: 0 auto 28px; color: #b9c6d4; font-size: 15px; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICES ===== */
/* ===== PAGE HEADER (used on inner pages instead of the hero) ===== */
.page-header {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 40px 24px;
}
.page-header h1 { font-size: 26px; }

.services, .how, .why, .book {
  padding: 56px 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.services h2, .how h2, .why h2, .book h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.card { background: var(--light-gray); border-radius: 10px; padding: 20px; }
.card h3 { color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.card p { font-size: 13px; }

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 { color: var(--navy); font-size: 15px; margin-bottom: 6px; }
.step p { font-size: 13px; }

/* ===== WHY ===== */
.why { text-align: center; }
.checklist {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}
.checklist li::before { content: "\2713  "; color: var(--teal); font-weight: 700; }

/* ===== BOOKING FORM ===== */
.book { background: var(--light-gray); border-radius: 12px; }
.book-intro { text-align: center; font-size: 13px; color: var(--text-gray); margin-bottom: 24px; }
.booking-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-form label { font-size: 13px; font-weight: 500; color: var(--navy); margin-top: 12px; }
.booking-form input, .booking-form select {
  padding: 10px 12px;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
}
.booking-form button { margin-top: 20px; }

/* ===== FOOTER ===== */
footer {
  background: #f7f7f5;
  border-top: 1px solid var(--border-gray);
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #8a8a86;
}
.footer-logo { height: 28px; width: 28px; object-fit: cover; object-position: 50% 22%; border-radius: 6px; margin-bottom: 8px; }

/* ===== MOBILE ===== */
@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border-gray);
    z-index: 10;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .navbar .btn-teal { display: none; }
  .hero h1 { font-size: 24px; }
}