

:root {
  --primary-orange: #FF7B00;
  --primary-yellow: #FFD34E;
  --bg-cream: #F9F6F1;
  --text-dark: #333;
  --text-muted: #666;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
   font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  background-color: #fff;
}

.orange-text { color: var(--primary-orange); }

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img { height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-hcs { font-weight: 800; font-size: 1.2rem; line-height: 1; }
.logo-sub { font-size: 0.7rem; color: var(--text-muted); }

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  margin: 0 15px;
  font-weight: 500;
  font-size: 0.95rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-number { font-weight: 600; color: var(--primary-orange); }
.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  margin: 20px 5%;
  border-radius: 30px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-card h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 15px; }
.hero-card p { color: var(--text-muted); margin-bottom: 25px; }

.hero-btns { display: flex; gap: 15px; margin-bottom: 25px; }
.btn-primary {
  background: var(--primary-yellow);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}
.btn-secondary {
  background: #FFA55A;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.hero-features {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
}
.hero-features li { display: flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.orange { background: var(--primary-orange); }

/* How it Works */
.section { padding: 80px 5%; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;background: #ffffff;
    box-shadow: 0px 0px 12px 5px #3331;
    border-radius: 50px;
}
.orange-light { background: #fff; }
.step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-orange);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Who we are */
.who-we-are {
    background-color: var(--bg-cream);
    border-radius: 40px;
    margin: 0px 10%;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 60px;
    border: 1px solid #ff7b0059; position: relative;
    z-index: 99;
}

.who-we-are-content { flex: 1; }
.subtitle { color: var(--primary-orange); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.who-we-are-content h2 { font-size: 2.2rem; margin: 15px 0; color: var(--primary-orange); }
.who-we-are-content p { margin-bottom: 30px; color: var(--text-muted); }

.btn-orange {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
}

.who-we-are-img { flex: 1; border-radius: 20px; overflow: hidden; }
.who-we-are-img img { width: 100%; display: block; }

/* Stats Bar */
.stats-bar {
  background: var(--primary-yellow);
  padding: 40px 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0px 10%;
  position: relative;
  margin-top: -30px; z-index: 999; border-radius: 85px;
}

.stats-intro { max-width: 200px; font-weight: 500; }
.stat-item h3 { font-size: 2.5rem; margin-bottom: 5px; font-weight: 800; }
.stat-item p { font-size: 0.9rem; display: flex; align-items: center; margin-bottom: 0px; gap: 5px; }

/* Services */
.section-subtitle { margin-top: -30px; margin-bottom: 50px; color: var(--text-muted); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
      background: var(--bg-cream);
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    border: 3px solid #fdeaa2;
}
.service-img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 200px;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { margin-bottom: 15px; }
.btn-service {
  width: 100%;
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.center-btn { margin-top: 40px; }
.btn-yellow-large {
  background: var(--primary-yellow);
  border: none;
  padding: 15px 40px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}
.stats-pattern img {
    width: 80px;
}
/* Testimonials */
.testimonials { background: var(--bg-cream);  position: relative; z-index: 9;   border: 1px solid #3F704D; margin: 0px 5% 60px; border-radius: 40px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
}
.client-info { display: flex; gap: 15px; align-items: center; margin-bottom: 15px; }
.client-info img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.client-info h4 { margin: 0; }
.client-info span { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--primary-yellow); margin-top: 15px; }

/* FAQ Section */
.faq-section {
    background: var(--primary-orange);
    padding: 80px 5%;
    color: white;
    border-radius: 40px 40px 0 0;
    margin-top: -120px;
    position: relative;
    z-index: 0;
}.faq-container { display: flex; gap: 60px; }
.faq-left { flex: 1.5; }
.faq-right { flex: 1; }
.stats-intro::after {
    content: '';
    width: 2px;
    height: 240%;
    background: #999;
    position: absolute;
    right: 0px;
    top: -45px;
    bottom: -52px;
}.stats-intro { 
  position: relative;
 }
 .stats-pattern {
    width: 180px;
    height: 160px;
    position: absolute;
    right: -86px;
    top: 26px;
}
.faq-title { font-size: 2.2rem; margin-bottom: 40px; font-weight: 800; text-align: center; }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.3); padding: 20px; }
.accordion-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}
.accordion-content { padding-top: 15px; font-size: 0.9rem; opacity: 0.9; }

.faq-img-box { border-radius: 20px; overflow: hidden; margin-bottom: 20px; }
.faq-img-box img { width: 100%; }

.question-box {
  background: white;
  color: var(--text-dark);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
.question-box h4 { margin-bottom: 10px; }
.question-box p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.btn-yellow-outline {
  border: 2px solid var(--primary-yellow);
  background: transparent;
  padding: 10px 20px;
  border-radius: 80px;
  font-weight: 600;
  cursor: pointer;
}

/* Newsletter */
.newsletter-section {
  position: relative;
  top: -40px;
  padding: 0 5%;
}
.newsletter-card {
  background: white;
  padding: 40px;
  border-radius: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  padding: 12px 20px;
  border: 1px solid #eee;
  background: #f9f9f9;
  border-radius: 30px;
  width: 250px;
}
.btn-black {
  background: #000;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
}
.accordion {
    background: transparent;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
/* Footer */
.footer { background: var(--primary-yellow); padding: 80px 5% 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand h2 { font-size: 2.5rem; margin-bottom: 20px; }
.footer-brand p { color: #000; font-size: 0.9rem; line-height: 1.6; }
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
      background: rgb(255 255 255 / 75%);
  border-radius: 50%;
  cursor: pointer;
}

.footer-links h4 { margin-bottom: 20px; }
.footer-links ul { list-style: none;     padding-left: 10px; }
.footer-links li { margin-bottom: 10px; color: #000; cursor: pointer; font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #000;
}
/* WHY CHOOSE US */

.why-choose{
  background: #F5F2EC;
    padding: 90px 5%;
    border-radius: 60px;
    margin: -50px 1%;
    position: relative;
    z-index: 1;
}

.why-title{
  font-size:48px;
  font-weight:700;
}

.why-sub{
  color:#666;
  max-width:700px;
  margin:auto;
}

.why-row{
  margin-top:60px;
}

.circle-img{
  width:230px;
  height:230px;
  border-radius:50%;
  overflow:hidden;
  position:relative;
  margin:auto;
}

.circle-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* orange arc border */
.circle-img::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  border:6px solid #ff7b00;
  border-bottom-color:transparent;
  border-left-color:transparent;
  transform:rotate(35deg);
}

.why-box h4{
  font-weight:600;
  font-size:26px;
  margin-bottom:10px;
}

.why-box p{
  color:#666;
  line-height:1.6;
}
/* Responsive */
@media (max-width: 992px) {
  .hero-card { position: relative; top: 0; right: 0; margin: 20px auto; max-width: 90%; }
  .steps-grid, .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .who-we-are { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-container { flex-direction: column; }
  .newsletter-card { flex-direction: column; gap: 20px; text-align: center; }
}t
/* =========================================================
   Application styles — added for the PHP rebuild.
   The block above is the original single-page stylesheet;
   everything below covers the pages it never had.
   ========================================================= */

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  background: var(--primary-orange);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
}

:focus-visible {
  outline: 3px solid var(--primary-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

img { max-width: 100%; height: auto; }
picture { display: contents; }

/* ---------- header / mobile nav ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav a { display: inline-block; padding: 6px 0; }
.nav a.nav-cta {
  background: var(--primary-orange);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  margin-left: 8px;
}

/* ---------- shared page furniture ---------- */
.breadcrumbs { padding: 18px 5% 0; font-size: .85rem; color: var(--text-muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 8px; color: #bbb; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary-orange); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--text-dark); font-weight: 600; }

.page-head { padding: 34px 5% 8px; max-width: 820px; }
.page-head h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.12; margin-bottom: 12px; }
.page-head p { color: var(--text-muted); font-size: 1.05rem; }

.narrow-section { max-width: 820px; margin-inline: auto; }
.section { padding: 44px 5%; }

.prose { max-width: 68ch; }
.prose.narrow { margin-inline: auto; }
.prose h2 { margin: 28px 0 12px; font-size: 1.4rem; }
.prose h3 { margin: 22px 0 10px; font-size: 1.13rem; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px 20px; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--primary-orange); }

.lede { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }
.empty { color: var(--text-muted); font-style: italic; }
.text-link { color: var(--primary-orange); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary, .btn-orange, .btn-service,
.btn-yellow-large, .btn-yellow-outline, .btn-black, .btn-ghost {
  display: inline-block;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  transition: filter .15s ease, transform .15s ease;
}
.btn-primary, .btn-orange { background: var(--primary-orange); color: #fff; }
.btn-secondary { background: #fff; color: var(--text-dark); border: 1px solid #ddd; }
.btn-yellow-large, .btn-service { background: var(--primary-yellow); color: #23201c; }
.btn-yellow-outline { background: transparent; color: #23201c; border: 2px solid var(--primary-yellow); }
.btn-black { background: #1d1a16; color: #fff; }
.btn-ghost { background: #fff; color: var(--text-dark); border: 1px solid #ddd; padding: 10px 18px; }
.btn-primary:hover, .btn-orange:hover, .btn-yellow-large:hover, .btn-service:hover { filter: brightness(1.06); }
.btn-orange:disabled, button:disabled { opacity: .6; cursor: not-allowed; }
.block { display: block; width: 100%; }

/* ---------- cards & grids ---------- */
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a:hover { color: var(--primary-orange); }
.service-excerpt { color: var(--text-muted); font-size: .93rem; margin: 6px 0 10px; }
.service-price { font-weight: 700; color: var(--primary-orange); margin-bottom: 12px; }
.service-price span { font-weight: 500; color: var(--text-muted); font-size: .85rem; }

.package-grid, .location-grid, .post-grid, .gallery-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.package-card, .location-card, .post-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 14px 30px -22px rgba(0,0,0,.3);
}
.package-card.featured { border-color: var(--primary-orange); position: relative; }
.package-flag {
  position: absolute; top: -12px; left: 26px;
  background: var(--primary-orange); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.package-price { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin: 10px 0; }
.package-price span { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.package-excerpt { color: var(--text-muted); margin-bottom: 18px; }

.location-card h2 { font-size: 1.15rem; margin-bottom: 8px; }
.location-card h2 a { color: inherit; text-decoration: none; }
.location-card h2 a:hover { color: var(--primary-orange); }
.location-card p { color: var(--text-muted); font-size: .93rem; margin-bottom: 10px; }
.area-note { font-size: .85rem !important; color: #8a8175 !important; }

.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-card img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; }
.post-card time { display: block; padding: 16px 20px 0; font-size: .8rem; color: var(--text-muted); }
.post-card h2, .post-card h3 { padding: 6px 20px 0; font-size: 1.08rem; line-height: 1.35; }
.post-card h2 a, .post-card h3 a { color: inherit; text-decoration: none; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--primary-orange); }
.post-card p { padding: 8px 20px 22px; color: var(--text-muted); font-size: .92rem; }
.post-cat {
  display: inline-block; margin: 14px 20px -6px;
  background: var(--bg-cream); color: var(--primary-orange);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 10px; border-radius: 999px; text-decoration: none;
}

.chip-nav { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 5% 0; }
.chip {
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid #e0dbd3; background: #fff;
  font-size: .88rem; font-weight: 600; color: var(--text-muted); text-decoration: none;
}
.chip.active, .chip:hover { background: var(--primary-orange); border-color: var(--primary-orange); color: #fff; }

.gallery-item { margin: 0; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; }
.gallery-item figcaption { margin-top: 8px; font-size: .87rem; color: var(--text-muted); }

/* ---------- detail layout ---------- */
.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  padding: 30px 5% 50px;
  align-items: start;
}
.detail-main h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; margin-bottom: 14px; }
.detail-hero { width: 100%; border-radius: 18px; margin-bottom: 26px; object-fit: cover; }
.detail-aside { position: sticky; top: 20px; display: grid; gap: 20px; }

.booking-box, .aside-links, .contact-block {
  background: var(--bg-cream);
  border: 1px solid #ece5da;
  border-radius: 18px;
  padding: 22px;
}
.booking-box .price { font-size: 1.7rem; font-weight: 800; margin-bottom: 14px; }
.booking-box .price span { font-size: .8rem; font-weight: 500; color: var(--text-muted); }
.booking-box h2, .aside-links h2, .contact-block h2 { font-size: 1.02rem; margin-bottom: 12px; }
.reassure { font-size: .82rem; color: var(--text-muted); margin-top: 10px; text-align: center; }
.aside-links ul, .plain-list { list-style: none; margin: 0; padding: 0; }
.aside-links li, .plain-list li { padding: 7px 0; border-bottom: 1px solid #e8e0d5; }
.aside-links li:last-child, .plain-list li:last-child { border-bottom: 0; }
.aside-links a, .plain-list a { color: var(--text-dark); text-decoration: none; font-size: .92rem; }
.aside-links a:hover, .plain-list a:hover { color: var(--primary-orange); }

.tick-list { list-style: none; margin: 0 0 22px; padding: 0; }
.tick-list li { position: relative; padding: 9px 0 9px 30px; border-bottom: 1px solid #eee; }
.tick-list li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  color: var(--primary-orange); font-weight: 700;
}
.tick-list span { color: var(--text-muted); font-size: .9rem; display: block; }

.area-served { background: var(--bg-cream); border-radius: 18px; padding: 24px; }
.detail-faqs { margin-top: 34px; }
.post-meta { color: var(--text-muted); font-size: .9rem; margin-bottom: 18px; }
.post-meta a { color: var(--primary-orange); }

/* ---------- accordion ---------- */
.accordion-heading { margin: 0; }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left;
  font: inherit; font-weight: 600; font-size: 1rem;
  background: none; border: 0; cursor: pointer;
  padding: 0; color: inherit;
}
.accordion-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.accordion-content[hidden] { display: none; }

/* ---------- forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.optional { font-weight: 400; color: var(--text-muted); font-size: .85rem; }
.field input, .field select, .field textarea,
.coupon-row input, .newsletter-form input {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  color: var(--text-dark);
}
.field textarea { resize: vertical; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c0392b; }
.field-error { color: #c0392b; font-size: .85rem; margin-top: 6px; }
.form-feedback, .coupon-feedback { font-size: .88rem; margin-top: 10px; color: var(--text-muted); }
.form-feedback.is-error, .coupon-feedback.is-error { color: #c0392b; }

.alert { border-radius: 14px; padding: 18px 20px; margin-bottom: 24px; }
.alert.success { background: #e8f4ee; border: 1px solid #b9dccb; color: #1d5f42; }
.alert p { margin-top: 6px; font-size: .93rem; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; }
.contact-aside { display: grid; gap: 20px; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid #e8e0d5; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list span { color: var(--text-muted); font-size: .88rem; }
.contact-list a { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: .92rem; }

/* ---------- booking wizard ---------- */
.booking-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start; }
.step { border: 0; padding: 0; margin: 0 0 34px; }
.step legend { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; padding: 0; }
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-orange); color: #fff; font-size: .9rem;
}

.service-picker { display: grid; gap: 12px; }
.picker-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 78px;
  align-items: center; gap: 14px;
  padding: 14px 16px;
  background: #fff; border: 1px solid #e4ded5; border-radius: 14px;
  cursor: pointer;
}
.picker-item:has(input[type="checkbox"]:checked) { border-color: var(--primary-orange); background: #fff9f3; }
.picker-body { display: flex; flex-direction: column; gap: 2px; }
.picker-name { font-weight: 600; }
.picker-price { font-size: .86rem; color: var(--text-muted); }
.picker-qty { width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 8px; font: inherit; }

.booking-summary {
  position: sticky; top: 20px;
  background: var(--bg-cream);
  border: 1px solid #ece5da;
  border-radius: 18px;
  padding: 24px;
}
.booking-summary h2 { font-size: 1.1rem; margin-bottom: 14px; }
.summary-lines { list-style: none; margin: 0 0 16px; padding: 0; }
.summary-lines li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: .92rem; border-bottom: 1px solid #e8e0d5; }
.summary-empty { color: var(--text-muted); font-style: italic; border-bottom: 0 !important; }
.coupon-row { display: flex; gap: 8px; margin-bottom: 6px; }
.summary-totals { margin: 16px 0 18px; }
.summary-totals > div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: .93rem; }
.summary-totals dt, .summary-totals dd { margin: 0; }
.summary-totals .grand { border-top: 2px solid #ded5c8; margin-top: 8px; padding-top: 12px; font-size: 1.2rem; font-weight: 800; }
.discount-row { color: #1d5f42; }

/* ---------- confirmation & errors ---------- */
.confirmation { text-align: center; padding-block: 60px; }
.confirm-badge {
  width: 68px; height: 68px; margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%; background: #e8f4ee; color: #1d5f42;
  font-size: 2rem; font-weight: 700;
}
.confirm-details { display: grid; gap: 12px; max-width: 460px; margin: 26px auto 34px; text-align: left; }
.confirm-details > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid #eee; }
.confirm-details dt, .confirm-details dd { margin: 0; }
.confirm-details dt { color: var(--text-muted); font-size: .9rem; }
.confirm-details dd { font-weight: 600; }
.reference { font-family: ui-monospace, Menlo, Consolas, monospace; letter-spacing: .04em; }
.confirmation .tick-list { text-align: left; max-width: 460px; margin-inline: auto; }

.error-page { text-align: center; padding-block: 70px; }
.error-code { font-size: 4.5rem; font-weight: 800; color: var(--primary-orange); line-height: 1; }
.error-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* ---------- CTA band, pagination, float ---------- */
.cta-band { background: var(--bg-cream); padding: 54px 5%; text-align: center; }
.cta-inner { max-width: 620px; margin-inline: auto; }
.cta-band h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 12px; }
.cta-band p { color: var(--text-muted); margin-bottom: 22px; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 38px; font-size: .92rem; }
.pagination a { color: var(--primary-orange); font-weight: 600; text-decoration: none; }
.pagination span { color: var(--text-muted); }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
}

.stars .dim { color: #d9d2c7; }
.footer-links a, .footer-brand a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: var(--primary-orange); text-decoration: underline; }
.social-icons a { display: inline-grid; place-items: center; }

/* ---------- why-choose (replaces the Bootstrap grid) ---------- */
.why-choose { padding: 44px 5%; }
.why-inner { max-width: 1100px; margin-inline: auto; }
.why-head { text-align: center; margin-bottom: 34px; }
.why-sub { color: var(--text-muted); max-width: 60ch; margin-inline: auto; }
.why-row { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 36px; align-items: center; margin-bottom: 28px; }
.why-row.reverse { grid-template-columns: minmax(0, 1fr) 280px; }
.why-row.reverse .circle-img { order: 2; }
.circle-img img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .detail, .contact-layout, .booking-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .detail-aside, .booking-summary { position: static; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; order: 3; }
  .header { flex-wrap: wrap; gap: 12px; }
  .header-right { order: 2; margin-left: auto; }
  .header-right .phone-number { display: none; }
  .nav {
    order: 4;
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 12px 0;
    border-top: 1px solid #eee;
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 4px; border-bottom: 1px solid #f2f2f2; margin: 0; }
  .nav a.nav-cta { margin: 10px 0 0; text-align: center; border-bottom: 0; }
  body.nav-open { overflow: hidden; }

  .why-row, .why-row.reverse { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .why-row.reverse .circle-img { order: 0; }
  .circle-img { max-width: 220px; margin-inline: auto; }
}

@media (max-width: 640px) {
  .section, .why-choose { padding-inline: 20px; }
  .page-head, .breadcrumbs, .chip-nav { padding-inline: 20px; }
  .detail { padding-inline: 20px; }
  .picker-item { grid-template-columns: auto minmax(0, 1fr); }
  .picker-qty { grid-column: 2; max-width: 90px; }
  .newsletter-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
