/* Global reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Prevent images from blowing up */
img {
  max-width: 100%;
  height: auto;
}

:root{
  --textShadow: 0 3px 18px rgba(0,0,0,0.65);
}

/* ===== FULL PAGE BACKGROUND IMAGE ===== */
body {
  margin: 0;
  min-height: 100vh;
  background: url("images/hero-bg.jpeg") center / cover no-repeat fixed;
  color: #111827;
  line-height: 1.6;
}

/* Dark overlay so text is readable */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
}

/* Top contact strip */
.top-bar {
  background: #0b1120;
  color: #e5e7eb;
  font-size: 0.85rem;
  padding: 0.4rem 5vw;
}

.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-top a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-top img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: block;
  object-fit: contain;
}

/* Header & nav */
header {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(6px);
  color: #f9fafb;
  padding: 0.75rem 5vw;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

nav a:hover {
  color: #38bdf8;
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: #38bdf8;
  color: #0b1120;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.22);
}

.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.9;
}

/* ===== LAYOUT (NO BIG BOX BEHIND TEXT ON DESKTOP) ===== */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 5vw 4rem;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

/* Hero section */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.25rem);
  margin-bottom: 0.75rem;
  color: #f9fafb;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: var(--textShadow);
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f3f4f6;
  margin-bottom: 1rem;
  text-shadow: var(--textShadow);
}

.hero p {
  color: #f3f4f6;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: var(--textShadow);
  max-width: 62ch;
}

.hero-highlight {
  display: inline-block;
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hero-stat {
  min-width: 120px;
}

.hero-stat strong {
  display: block;
  font-size: 1.2rem;
  color: #f9fafb;
  font-weight: 900;
  text-shadow: var(--textShadow);
}

.hero-stat span {
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 700;
  text-shadow: var(--textShadow);
}

.hero-note {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-top: 0.5rem;
  font-weight: 650;
  text-shadow: var(--textShadow);
}

/* Hero photo */
.hero-photo {
  width: 100%;
  height: auto; /* shows full image (no crop) */
  border-radius: 1.25rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.55);
  margin-bottom: 1rem;
  display: block;
}

.hero-card {
  background: rgba(11, 17, 32, 0.95);
  color: #e5e7eb;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin: 0.35rem 0;
  gap: 0.75rem;
}

.hero-card-label {
  color: #9ca3af;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(56, 189, 248, 0.15);
  color: #bfdbfe;
  font-weight: 800;
}

/* Generic section styles */
section {
  padding: 3rem 0 1rem;
}

section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #f9fafb;
  font-weight: 900;
  text-shadow: var(--textShadow);
}

section p.section-intro {
  color: #f3f4f6;
  margin-bottom: 1.5rem;
  max-width: 600px;
  font-weight: 650;
  text-shadow: var(--textShadow);
}

/* Cards & grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.98); /* more solid = clearer text */
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(229, 231, 235, 0.95);
  color: #0b1120;
}

/* ✅ IMPORTANT: kill text-shadow inside light boxes so text is crisp */
.card *,
form *,
.rates-table * {
  text-shadow: none !important;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
  color: #0b1120;
}

.card p {
  font-size: 0.92rem;
  color: #374151; /* darker for readability */
  font-weight: 650;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  color: #6b7280;
  font-weight: 800;
}

/* ✅ FIX: if you use .why-list inside .card (Services page), make it dark */
.card .why-list li {
  color: #111827 !important;
  font-weight: 650;
}

.card .why-list li::before {
  color: #16a34a;
}

/* Feature image sections */
.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.feature-section.reverse {
  direction: rtl;
}

.feature-section.reverse > * {
  direction: ltr;
}

.feature-photo {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  max-height: 380px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
}

.feature-text {
  font-size: 0.98rem;
  color: #ffffff;
  font-weight: 650;
  text-shadow: var(--textShadow);
}

.feature-text p {
  margin-bottom: 0.75rem;
}

/* Lists / why-us (dark sections) */
.why-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
}

.why-list li {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  color: #ffffff;
  padding-left: 1.1rem;
  position: relative;
  font-weight: 650;
  text-shadow: var(--textShadow);
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-size: 0.9rem;
}

/* Contact / booking form */
.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  align-items: flex-start;
}

form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(229, 231, 235, 0.95);
  color: #0b1120;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: #111827;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
}

.contact-details {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 650;
  text-shadow: var(--textShadow);
}

.contact-details p {
  margin-bottom: 0.7rem;
}

.contact-label {
  font-weight: 800;
}

/* Rates table */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0.75rem;
  overflow: hidden;
  color: #0b1120;
}

.rates-table th,
.rates-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.rates-table th {
  background: #f3f4f6;
  font-weight: 800;
}

.rate-price {
  font-weight: 800;
  display: block;
}

.rate-capacity {
  font-size: 0.8rem;
  color: #6b7280;
  display: block;
  margin-top: 0.1rem;
  font-weight: 650;
}

.btn-price {
  margin-top: 0.25rem;
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: #38bdf8;
  color: #0b1120;
  font-size: 0.78rem;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.btn-price:hover {
  opacity: 0.9;
}

.rates-subheading {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: var(--textShadow);
}

.rates-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 650;
  text-shadow: var(--textShadow);
}

/* Link pills */
.link-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.link-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #e5f3ff;
  border: 1px solid #bfdbfe;
  font-size: 0.9rem;
  text-decoration: none;
  color: #1d4ed8;
  font-weight: 800;
}

.link-pill:hover {
  background: #dbeafe;
}

/* Footer and social icons */
footer {
  padding: 2rem 5vw 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 650;
  text-shadow: var(--textShadow);
}

footer a {
  color: inherit;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
}

footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* =========================
   MOBILE FIXES (PHONE)
   ========================= */
@media (max-width: 800px) {
  /* iPhone/Safari: fixed background can look messy */
  body {
    background-attachment: scroll;
    background-position: center top;
  }

  header {
    padding: 0.6rem 5vw;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  nav {
    gap: 0.55rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  main {
    padding-top: 1.25rem;
  }

  .hero,
  .contact-wrapper,
  .feature-section,
  .feature-section.reverse {
    grid-template-columns: 1fr;
  }

  /* Mobile hero spacing */
  .hero {
    padding: 1.25rem 0 1.25rem;
    gap: 1.25rem;
  }

  /* MOBILE: Put a clean “glass” behind hero text only */
  .hero > :first-child {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.25rem;
    padding: 1.1rem 1rem;
  }

  .hero h1 {
    font-size: 2.15rem;
    line-height: 1.05;
    margin-bottom: 0.65rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 0.85rem;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .btn-row {
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar-right {
    justify-content: center;
  }
}
