/* Reset and base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f7fb;
  color: #111;
  line-height: 1.6;
}

:root {
  --max-width: 1200px;
  --space-lg: 72px;
  --space-md: 40px;
  --space-sm: 20px;
  --radius: 16px;
  --btn-vert: 12px;
  --btn-horiz: 20px;
  --h1-min: 1.6rem;
  --h1-max: 3rem;
}

/* Responsive base font-size */
html { font-size: clamp(15px, 1vw + 14px, 18px); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  background: #08111f;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.brand small {
  display: block;
  font-size: 0.8em;
  opacity: 0.8;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
}

.nav-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.btn {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary {
  background: #f97316;
  color: #fff;
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: #08111f;
}

.btn-secondary:hover {
  background: #f0f0f0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Outline style for secondary CTA where needed */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #08111f 0%, #1e293b 100%);
  color: #fff;
  padding: 60px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(var(--h1-min), 6vw, var(--h1-max));
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 46ch;
}

.hero p {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  margin-bottom: 30px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  gap: 20px;
}

.stat {
  flex: 1;
}

.stat strong {
  display: block;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.hero-card {
  position: relative;
}

.hero-card img {
  width: 100%;
  border-radius: 20px;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Make secondary button less visually dominant on hero */
.hero .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Hide long eyebrow text on very small screens */
.eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

/* Buttons use variables */
.btn { padding: var(--btn-vert) var(--btn-horiz); }

/* Slightly reduce visual weight of hero badge text */
.hero-badge strong { font-size: 1rem; }


.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(249, 115, 22, 0.9);
  padding: 15px;
  border-radius: 10px;
  color: #fff;
}

/* Sections */
section {
  padding: 72px 20px;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-head p {
  font-size: 1.1em;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
  gap: 20px;
  justify-content: center;
}

.trust-signals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.trust-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 18px 20px;
  border-radius: 16px;
  font-weight: 600;
  color: #111;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card .icon {
  font-size: 2em;
  margin: 0 auto 15px;
  display: inline-flex;
}

.card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px;
  text-align: center;
}

.gallery-item.tall img {
  height: 300px;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step .num {
  width: 50px;
  height: 50px;
  background: #f97316;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step h3 {
  margin-bottom: 10px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Booking */
.booking-section {
  background: #08111f;
  color: #fff;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-panel {
  background: #1e293b;
  padding: 30px;
  border-radius: 20px;
}

.contact-panel ul {
  list-style: none;
  padding: 0;
}

.contact-panel li {
  margin-bottom: 10px;
}

.booking-form {
  background: #fff;
  color: #111;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field span {
  font-weight: 600;
  margin-bottom: 5px;
}

.field input,
.field select,
.field textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

.field.full {
  grid-column: 1 / -1;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.9em;
  color: #666;
  margin: 20px 0;
}

.cta {
  display: flex;
  gap: 15px;
}

.notice {
  margin-top: 20px;
  padding: 10px;
  border-radius: 8px;
  display: none;
}

/* Footer */
.footer-section {
  background: #08111f;
  color: #fff;
  padding: 60px 20px 0;
}

.footer-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.footer-card h3 {
  font-size: 2em;
  margin-bottom: 15px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #f97316;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
}

.footer {
  background: #000;
  padding: 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 800px) {
  .hero-grid,
  .booking-wrap,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.06;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .section-head h2 {
    font-size: 1.6rem;
  }

  /* Navigation: show compact header with hamburger */
  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 20px;
    background: #08111f;
    border-radius: 12px;
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    min-width: 200px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    margin: 0;
    padding: 8px 6px;
    border-radius: 8px;
  }

  /* Keep a single clear CTA visible in header */
  .nav-cta {
    display: inline-block;
    margin-left: 12px;
  }

  /* Hero image first on mobile for visual excitement */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eyebrow {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero .btn-primary {
    width: 100%;
  }

  .hero .btn-secondary {
    width: 100%;
  }

  /* Put hero image first on narrow screens for visual impact */
  .hero-card { order: -1; }

  /* Brand adjustments for tight headers */
  .brand-text { font-size: 0.95rem; }
  .brand img { width: 40px; height: 40px; }

  /* Slightly more breathing under headings */
  section { padding-top: 56px; padding-bottom: 56px; }
}
