:root{
  --bg: #ffffff;
  --bg2: #f6fbf9;
  --text: #0f172a;
  --muted: #475569;

  --green: #0ea57a;
  --green2: #0b8f6a;
  --ring: rgba(14,165,122,.25);

  --card: #ffffff;
  --border: rgba(15,23,42,.10);
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

.container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* banner */
.banner{
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #fff;
}
.banner-inner{
  padding: 10px 0;
  display:flex;
  justify-content:center;
}
.banner-img{
  max-width: 520px;
  width:100%;
  border-radius: 12px;
}
.banner-text{
  font-weight: 600;
  letter-spacing: .2px;
}

/* header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: inherit;
}
.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-text{ line-height: 1.1; }
.brand-name{ font-weight: 800; letter-spacing: .2px; }
.brand-tagline{ font-size: 12px; color: var(--muted); }

.nav{
  display:none;
  gap: 18px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover{ color: var(--text); }

.header-cta{ display:flex; gap:10px; }

/* hero */
.hero{
  background:
    radial-gradient(900px 300px at 20% 10%, rgba(14,165,122,.10), transparent),
    radial-gradient(700px 250px at 85% 20%, rgba(14,165,122,.10), transparent),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
.hero-inner{
  padding: 56px 0 26px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,165,122,.10);
  color: var(--green2);
  border: 1px solid rgba(14,165,122,.25);
  font-weight: 700;
  font-size: 13px;
}
.h1{
  margin: 12px 0 8px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.lead{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta{
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
.hero-meta a{ color: var(--green2); text-decoration:none; font-weight:700; }
.hero-meta a:hover{ text-decoration:underline; }

/* cards */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card-title{ font-weight: 800; margin-bottom: 12px; }

.hero-card{ padding: 18px; }
.quick-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quick{
  text-decoration:none;
  color: inherit;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px;
  background: #fff;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.quick:hover{
  transform: translateY(-2px);
  border-color: rgba(14,165,122,.35);
  box-shadow: 0 12px 30px rgba(2,6,23,.10);
}
.quick-title{ font-weight: 800; }
.quick-sub{ margin-top: 4px; color: var(--muted); font-size: 13px; }

.trust-row{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(14,165,122,.25);
  background: rgba(14,165,122,.08);
  color: var(--green2);
  font-weight: 700;
  font-size: 13px;
}

/* sections */
.section{ padding: 56px 0; }
.section.alt{ background: var(--bg2); border-top: 1px solid rgba(2,6,23,.05); border-bottom: 1px solid rgba(2,6,23,.05); }
.section-head{ margin-bottom: 20px; }
.h2{ margin: 0 0 8px; font-size: 30px; letter-spacing:-.3px; }
.h3{ margin: 0 0 10px; font-size: 18px; }
.muted{ color: var(--muted); line-height: 1.6; }

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bullets{ margin: 0; padding-left: 18px; color: var(--muted); }
.bullets li{ margin: 6px 0; }

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  transition: transform .15s ease, border-color .15s ease;
}
.service-card:hover{
  transform: translateY(-2px);
  border-color: rgba(14,165,122,.35);
}
.service-title{ font-weight: 900; font-size: 16px; }
.service-sub{ margin-top: 6px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.link{
  display:inline-block;
  margin-top: 12px;
  color: var(--green2);
  font-weight: 800;
  text-decoration:none;
}
.link:hover{ text-decoration: underline; }

/* prices */
.price-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.price-table{
  margin-top: 10px;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.price-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(2,6,23,.10);
}
.price-row:last-child{ border-bottom: 0; }
.price-name{ color: var(--text); font-weight: 700; }
.price-val{ color: var(--green2); font-weight: 950; white-space: nowrap; }

/* booking */
.booking-card{ padding: 0; overflow:hidden; }
.booking-iframe{
  width:100%;
  height: 980px;
  border:0;
  display:block;
}

/* contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}
.contact-meta{
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
.contact-meta a{
  color: var(--green2);
  font-weight: 900;
  text-decoration:none;
}
.contact-meta a:hover{ text-decoration:underline; }

.form{
  margin-top: 10px;
}
.field{
  display:flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}
label{
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
}
input, textarea{
  font: inherit;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.16);
  outline: none;
  background: #fff;
}
input:focus, textarea:focus{
  border-color: rgba(14,165,122,.55);
  box-shadow: 0 0 0 6px var(--ring);
}
textarea{ resize: vertical; }

.contact-actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-actions .btn{
  flex: 1 1 140px;   /* prevents cramped buttons */
  min-width: 140px;
  text-align:center;
}

.social{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 900;
}
.social-btn:hover{
  border-color: rgba(14,165,122,.35);
}

.map-card .map-wrap{
  margin-top: 10px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(2,6,23,.10);
}
.map-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.map-actions .btn{
  flex: 1 1 160px;
  min-width: 160px;
}

/* success message */
.success{
  border-color: rgba(14,165,122,.35);
  box-shadow: 0 10px 30px rgba(14,165,122,.12);
  font-weight: 800;
}

/* honeypot */
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 950;
  text-decoration:none;
  cursor:pointer;
  border: 1px solid transparent;
}
.btn-primary{
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(14,165,122,.25);
}
.btn-primary:hover{ filter: brightness(.98); }
.btn-ghost{
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ border-color: rgba(14,165,122,.35); }

/* footer */
.footer{
  border-top: 1px solid rgba(2,6,23,.08);
  background: #fff;
  padding: 22px 0;
}
.footer-inner{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.footer-links{
  display:flex;
  gap: 14px;
}
.footer-links a{
  color: var(--muted);
  text-decoration:none;
}
.footer-links a:hover{ color: var(--text); }

.footer-inner{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.footer-left{
  flex: 1 1 220px;
}

.footer-links{
  display:flex;
  gap: 14px;
  flex: 1 1 300px;
  justify-content: center;
}

.footer-right{
  flex: 1 1 220px;
  text-align: right;
}

.footer-dev{
  color: var(--green2);
  font-weight: 950;
  text-decoration: none;
}

.footer-dev:hover{
  text-decoration: underline;
}

/* On mobile keep it clean */
@media (max-width: 900px){
  .footer-links{
    justify-content: flex-start;
  }
  .footer-right{
    text-align: left;
  }
}

/* reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

/* sticky mobile book button */
.sticky-book{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #fff;
  font-weight: 950;
  text-decoration:none;
  box-shadow: 0 18px 40px rgba(14,165,122,.28);
}
@media (min-width: 900px){
  .sticky-book{ display:none; }
  .nav{ display:flex; }
}

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; padding: 40px 0 18px; }
  .h1{ font-size: 38px; }
  .about-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .quick-grid{ grid-template-columns: 1fr; }
  .booking-iframe{ height: 1050px; }
}

/* Hero image block (right side) */
.hero-image{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
  background: #fff;
  min-height: 360px;
}

.hero-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

/* soft green gradient so it blends with the page */
.hero-image-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 20% 15%, rgba(14,165,122,.30), transparent 55%),
    linear-gradient(135deg, rgba(14,165,122,.12), rgba(255,255,255,.0) 55%),
    linear-gradient(0deg, rgba(2,6,23,.08), rgba(2,6,23,.0) 40%);
  pointer-events: none;
}

/* little badge on the image */
.hero-image-badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 16px 40px rgba(2,6,23,.12);
  max-width: 260px;
}

.badge-title{
  font-weight: 950;
  letter-spacing: .2px;
}
.badge-sub{
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.btn-small{
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px;
}

/* Ensure trust pills look nice under the image */
.hero-right .trust-row{
  margin-top: 14px;
}

/* Responsive tweaks */
@media (max-width: 900px){
  .hero-image{ min-height: 300px; }
  .hero-image-badge{ max-width: 100%; right: 14px; }
}

/* --- Hero image: clean + premium --- */
.hero-image-clean {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
  transform: translateZ(0);
}

.hero-image-clean img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 700ms ease;
}

.hero-image-clean:hover img {
  transform: scale(1.06);
}

.hero-image-clean .hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 45%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

/* --- Tiny hero social proof row --- */
.hero-proof {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 700;
}

.proof-dot {
  opacity: 0.4;
}

.proof-link {
  text-decoration: none;
  font-weight: 700;
  opacity: 0.85;
}

.proof-link:hover,
.proof-pill:hover {
  opacity: 1;
}

.proof-stars {
  color: #d4af37; /* gold */
  letter-spacing: 1px;
}

/* Make hero proof row match site green */
.hero-proof a {
  color: #0a8f6a;            /* site green */
}

.hero-proof a:hover {
  color: #087a5b;
  opacity: 1;
}
