:root{
  --accent: #ff7a18;
  --accent-2: #af002d;
  --bg: #0f1724;
  --card: #0b1220;
  --muted: #a7b0bf;
  --radius: 12px;
  --footer-h: 68px;
/* set your hero background image here (relative to this HTML file)
  replace the path with your image, or set to 'none' to disable */
--hero-bg-image: url('pexels-daniel-andraski-197681005-13065690.jpg');
/* semi-opaque overlay placed above the image to improve contrast */
--hero-overlay: rgba(0,0,0,0.36);
/* fallback color when image is missing */
--hero-fallback-color: #071022;
/* background behind the hero text to further improve readability */
--hero-text-bg: rgba(0,0,0,0.44);
  /* typography tuning */
  --base-font-size: 16px; /* default base size (can be overridden by clamp below) */
  --base-line-height: 1.6; /* comfortable reading line height for body text */
  --heading-line-height: 1.08; /* tighter line-height for headings */
  --font-weight-regular: 400;
  --font-weight-strong: 700;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

html { scroll-behavior: smooth; }
*{ box-sizing: border-box; margin:0; padding:0; }
body{
  background: linear-gradient(180deg,#071022 0%, #071b2a 60%);
  color:#f0a80c;
  -webkit-font-smoothing:antialiased;
  padding-bottom: var(--footer-h); /* avoid footer overlap */
  /* responsive base font-size and comfortable line-height */
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: var(--base-line-height);
  font-weight: var(--font-weight-regular);
}

/* NAV */
nav{
  position:sticky;
  top:12px;
  max-width:1100px;
  margin:12px auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:10px 14px;
  border-radius:14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
  border: 1px solid rgba(255,255,255,0.04);
}
.logo{
  font-weight:700;
  letter-spacing:0.6px;
  font-size:1.05rem;
  color: white;
  /* demarcation: subtle white divider to the right of the logo */
  padding-right:4px; /* tighten */
  margin-right:4px;  /* tighten */
  border-right: 2px solid rgba(255,255,255,0.28);
}
.logo-note{
  display:flex;
  flex-direction:column;
  justify-content:center;
  color: #fff;
  font-weight:700;
  margin-right:6px;
  margin-left:2px; /* sit closer to the logo border */
  align-self:center;
  font-size:0.92rem;
  opacity:0.98;
  line-height:1;
}
.logo-note .ln1{ font-size:0.92rem; }
.logo-note .ln2{ font-size:0.78rem; opacity:0.95; margin-top:0px; }
nav ul{
  display:flex;
  list-style:none;
  gap:12px;
  align-items:center;
}
nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
  transition: all .18s ease;
  font-weight:600;
  font-size:0.95rem;
}
nav a:hover, nav a.active{
  color:white;
  background: linear-gradient(90deg,var(--accent),var(--accent-2));
  box-shadow: 0 6px 18px rgba(175,0,45,0.18);
  transform: translateY(-2px);
}

/* HERO */
.hero{
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:48px 20px;
  /* layer order (top -> bottom): radial gradients, overlay, image */
  background-color: var(--hero-fallback-color);
  background-image:
    radial-gradient(600px 300px at 10% 10%, rgba(255,122,24,0.07), transparent 6%),
    radial-gradient(600px 300px at 90% 90%, rgba(175,0,45,0.04), transparent 6%),
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    var(--hero-bg-image);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  /* gradients auto-size, overlay covers, image covers */
  background-size: auto, auto, cover, cover;
  background-position: 10% 10%, 90% 90%, center, center;
}
.hero .textlayer{
  max-width:980px;
  background: var(--hero-text-bg);
  padding: 22px 26px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  /* entrance animation: slide down from above on page load */
  transform: translateY(-14px);
  opacity: 0;
  animation: slide-down 820ms cubic-bezier(.2,.9,.2,1) 160ms both;
}
.hero h1{
  font-size:clamp(1.6rem,3.6vw,2.6rem);
  line-height: var(--heading-line-height);
  margin-bottom:12px;
  font-weight:900;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 6px 30px rgba(10,20,30,0.6);
}
.hero p{
  color:var(--muted);
  margin-bottom:18px;
  font-size:1.05rem;
}
.cta{
  display:inline-flex;
  gap:10px;
  align-items:center;
}
.btn{
  background: linear-gradient(90deg,var(--accent),var(--accent-2));
  color:white;
  border:none;
  padding:12px 18px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 8px 28px rgba(175,0,45,0.18);
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration:none;
}
.btn.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:var(--muted);
  font-weight:600;
}
.btn:hover{ transform: translateY(-4px); }

/* SECTIONS */
section{ max-width:1100px; margin:40px auto; padding:22px; border-radius:12px; }
#services .service-list{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;
  margin-top:18px;
}
.service-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
  padding:18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.03);
  text-align:left;
}
.service-card h3{ margin-bottom:6px; color:#fff; }
.service-card p{ color:var(--muted); margin-bottom:8px; }
.service-card span{
  display:inline-block;
  background:rgba(255,255,255,0.04);
  color:#fff;
  padding:6px 10px;
  border-radius:8px;
  font-weight:700;
}

/* DISCOUNT CARD */
.discount-card{
  background: linear-gradient(90deg, rgba(255,122,24,0.06), rgba(175,0,45,0.04));
  border: 1px solid rgba(255,255,255,0.04);
  padding:18px;
  border-radius:12px;
  display:block;
  box-shadow: 0 8px 30px rgba(2,6,23,0.45);
}
.discount-card h2{ margin:0 0 6px 0; color:#fff; }
.discount-badge{
  background: linear-gradient(90deg,var(--accent),var(--accent-2));
  color: #fff;
  padding:10px 14px;
  border-radius:10px;
  font-weight:800;
  font-size:1rem;
  text-align:center;
}
.discount-terms{ color:var(--muted); font-size:0.9rem; margin-top:10px; }

/* FAST SERVICE CALLOUT */
.fast-service{
  display:flex;
  align-items:center;
  gap:18px;
  background: linear-gradient(90deg, rgba(255,122,24,0.04), rgba(175,0,45,0.03));
  border:1px solid rgba(255,255,255,0.03);
  padding:14px 18px;
  border-radius:12px;
  margin-top:16px;
  justify-content:space-between;
}
.fast-left{ display:flex; gap:14px; align-items:center; }
.fast-icon{
  width:64px; height:64px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(90deg,var(--accent),var(--accent-2)); color:white; font-weight:900; font-size:1.25rem;
  box-shadow: 0 8px 24px rgba(175,0,45,0.12);
}
.fast-text h3{ margin:0; font-size:1.25rem; color:#fff; }
.fast-text p{ margin:4px 0 0 0; color:var(--muted); }
.fast-cta{ margin-left:auto; }

@media (max-width:700px){
  .fast-service{ flex-direction:column; align-items:flex-start; }
  .fast-cta{ align-self:stretch; width:100%; margin-left:0; }
}

/* utility / layout classes (replace inline styles) */
.actions-inline{ display:flex; gap:8px; }
.discount-row{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:space-between; }
.discount-meta{ min-width:220px; }
.discount-cta-row{ display:flex; gap:12px; align-items:center; }
.muted-center{ color:var(--muted); text-align:center; margin-top:6px; }
.contact-grid{ display:flex; gap:18px; flex-wrap:wrap; margin-top:12px; }
.contact-item{ min-width:220px; }
.footer-inner{ text-align:center; }
.copyright{ font-size:0.88rem; color:var(--muted); margin-top:4px; }
.section-title{ margin-bottom:8px; }

  /* BOOKING FORM */
  #book form{
    display:grid;
    /* keep two columns but prevent them from shrinking too small on wide screens
       each column will be at least 240px, otherwise split the available space */
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap:12px;
    align-items:start;
    margin-top:14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
    padding:18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.03);
  }
  input[type="text"], input[type="email"], input[type="date"], input[type="time"], input[type="number"], select, textarea{
    background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.04);
    color: #f7ac0a;
    padding:12px;
    min-height:44px;
    border-radius:10px;
    outline:none;
    width:100%;
  }

  /* label + input grouping for accessibility and consistent layout */
  .field{ display:flex; flex-direction:column; gap:6px; }
  .field label{
    color:var(--muted);
    font-weight:700;
    font-size:0.92rem;
    letter-spacing:0.15px;
  }
  input::placeholder, textarea::placeholder{ color: #9fb0cc; }
  input:focus, select:focus, textarea:focus{ box-shadow: 0 8px 18px rgba(7,18,36,0.45); border-color: var(--accent); }
  #book .full{ grid-column: 1 / -1; }
  #book button{ grid-column: 1 / -1; justify-self:center; }

  /* REVIEWS (compact preview) */
  .reviews-container{
    margin-top:12px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .review{
    background: linear-gradient(90deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
    padding:12px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.02);
  }

  /* FOOTER */
  footer{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    height:var(--footer-h);
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg, rgba(7,12,20,0.9), rgba(7,12,20,0.98));
    color:var(--muted);
    border-top:1px solid rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
  }

  /* RESPONSIVE */
  @media (max-width:900px){
    #services .service-list{ grid-template-columns: repeat(2,1fr); }
    #book form{ grid-template-columns: 1fr; }
    nav ul{ display:none; } /* simple mobile: keep minimal nav */
    nav .logo{ font-size:0.98rem; }
  }

  /* logo-note is visible on all sizes (kept compact on small screens) */

  /* small-screen tweaks (<=520px) consolidated */
  @media (max-width:520px){
    input[type="date"], input[type="time"], select{
      /* match the default input sizing rules above */
      min-height:44px;
      height:44px;
      padding:12px;
      font-size:inherit;
      line-height:1.2;
      box-sizing:border-box;
      width:100%;
    }
    /* stacking behavior */
    #services .service-list{ grid-template-columns: 1fr; }
    .hero h1{ font-size:1.45rem; }
  }
  /* booking message success animation / toast styling */
  #bookingMsg{ transition: transform .28s ease, opacity .28s ease, box-shadow .28s ease; }
  .booking-success{
    display:inline-block;
    color:#fff !important;
    background: linear-gradient(90deg,var(--accent),var(--accent-2));
    padding:10px 14px;
    border-radius:10px;
    box-shadow: 0 10px 30px rgba(175,0,45,0.18);
    transform-origin:center;
    animation: success-pop .9s ease forwards;
  }

  /* Price callout and bring-own styling */
  .price-callout{
    background: linear-gradient(90deg, rgba(255,122,24,0.06), rgba(175,0,45,0.04));
    border: 1px solid rgba(255,255,255,0.04);
    padding:10px 12px;
    border-radius:8px;
    color:#fff;
    font-weight:700;
  }
  .bringown-inline{ color: #f7ac0a; font-weight:700; display:inline-flex; gap:8px; align-items:center; }
  .bringown-inline input{ width:18px; height:18px; transform:translateY(1px); }

  .booking-summary-box{
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
    padding:12px;
    border-radius:10px;
    color:var(--muted);
  }
  @keyframes success-pop{
    0%{ transform: translateY(8px) scale(.98); opacity:0 }
    60%{ transform: translateY(-6px) scale(1.04); opacity:1 }
    100%{ transform: translateY(0) scale(1); opacity:1 }
  }

  /* slide-down animation used by .hero .textlayer */
  @keyframes slide-down{
    0%{ transform: translateY(-22px); opacity:0 }
    60%{ transform: translateY(6px); opacity:1 }
    100%{ transform: translateY(0); opacity:1 }
  }

  /* Respect user's motion preference */
  @media (prefers-reduced-motion: reduce){
    .hero .textlayer{
      transform: none !important;
      animation: none !important;
      opacity: 1 !important;
    }
  }
