#google-reviews {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

#google-reviews h2 {
  margin-bottom: 20px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


  :root {
    --accent-color: #33a392;
    --accent-secondary: #008f7a;
    --bg-color: #f7f7f7;
    --primary-text: #1a1a1a;
    --secondary-text: #757575;
    --input-border: #e0e0e0;
    --card-bg: #ffffff;
    --white: #ffffff;
    --radius: 8px;
    --max-width: 1200px;
    --shadow-subtle: 0 6px 20px rgba(0,0,0,0.06);
    --shadow-elevated: 0 14px 40px rgba(0,0,0,0.10);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', system-ui, sans-serif; }
  body { background: var(--bg-color); color: var(--primary-text); line-height: 1.6; }

  header {
    background: var(--white);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-subtle);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 90;
  }
  header .brand-logo {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -1px;
    text-transform: uppercase;
  }
  .cta-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.25s ease;
  }
  .hero-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 90%;
  padding-bottom: 40px; /* adjust this value */
}



  .cta-primary i { margin-right: 8px; }
  .cta-primary:hover { background: var(--accent-secondary); }

  .mobile-menu-btn { display: none; background: none; border: none; font-size: 22px; color: var(--accent-color); cursor: pointer; }

  #overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 99; visibility: hidden; opacity: 0; transition: opacity .25s ease; }
  #overlay.active { visibility: visible; opacity: 1; }
  #mobile-menu { position: fixed; top:0; right:0; width:260px; height:100%; background:var(--primary-text); color:#fff; transform: translateX(100%); transition: transform .28s ease; z-index: 100; padding:18px; }
  #mobile-menu.open { transform: translateX(0); }
  #mobile-menu a { color:#fff; text-decoration:none; display:block; padding:10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  #menu-close { background:none;border:none;color:#fff;font-size:20px;cursor:pointer; }

  .hero {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.55)
    ),
    url('image/mainimg.png') center/cover no-repeat;

  height: 70vh;               /* taller = more premium */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}

  .hero-content { max-width:900px; padding: 0 20px; }
  .hero h1 { font-size:40px; font-weight:800; margin-bottom:10px; }
  .hero p { font-size:18px; color:rgba(255,255,255,0.92); margin-bottom:18px; }

  .content { max-width: var(--max-width); margin: 60px auto; padding: 0 20px; }
  .section-title { text-align:center; font-size:30px; font-weight:700; margin-bottom:30px; }

  .services-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:22px; }
  .service-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--shadow-subtle);
    display:flex; flex-direction:column; gap:10px;
  }
  .service-card i { font-size:56px; color:var(--accent-color); }
  .service-card h3 { font-size:18px; }
  .service-card p {  color:#fff; font-size:17px; flex:1; }
  .service-card .price { font-weight:800; color:var(--accent-color); font-size:20px; }

  .view-details {
    display:inline-block; margin-top:6px;
    padding:8px 12px; background:#222; color:#fff;
    border-radius:8px; border:none; cursor:pointer; font-weight:600;
  }
  .view-details:hover { background:#000; }

  form { max-width: 550px; margin: 0 auto; padding: 36px; background: var(--white); border-radius: 10px; box-shadow: var(--shadow-elevated); }
  .input-group { position: relative; margin-bottom: 20px; border-radius: 8px; border: 1px solid var(--input-border); background:#fff; }
  form input, form select, form textarea {
    width:100%; padding:14px 12px; border:none; background:transparent; font-size:15px; border-radius:8px;
  }
  .input-group label {
    position:absolute; left:12px; top:12px; color:var(--secondary-text); pointer-events:none; transition: all .18s ease;
  }
  .input-group input:focus + label, .input-group input:not(:placeholder-shown) + label,
  .input-group textarea:focus + label, .input-group textarea:not(:placeholder-shown) + label {
    top:-10px; font-size:12px; color:var(--accent-color); background:#fff; padding:0 6px;
  }
  form button {
    width:100%; padding:14px; background:var(--accent-color); border:none;
    color:#fff; border-radius:8px; font-weight:700; cursor:pointer;
    display:flex; align-items:center; justify-content:center; gap:8px;
  }
  form button:hover { background:var(--accent-secondary); }

  .modal {
    position: fixed; inset: 0;
    display: none; align-items: center; justify-content: center;
    background: rgba(12,12,12,0.55); z-index: 200; padding: 20px;
  }
  .modal.show { display:flex; }
  .modal-card {
    width: 100%; max-width: 560px; background: #fff; border-radius: 12px;
    box-shadow: var(--shadow-elevated); padding: 22px; overflow:auto; max-height: 86vh;
  }
  .modal-card h3 { color:var(--accent-color); font-size:20px; margin-bottom:10px; }
  .modal-card .subtitle { color:var(--secondary-text); margin-bottom:14px; font-size:14px;}
  .modal-card ul { margin-left:18px; color:#333; line-height:1.5; }
  .modal-card ul li { margin-bottom:8px; }
  .modal-card .exclusions { color:#a12a2a; }
  .modal-actions { display:flex; gap:10px; margin-top:18px; justify-content:flex-end; }
  .modal-actions .btn { padding:10px 14px; border-radius:8px; border:1px solid rgba(0,0,0,0.06); cursor:pointer; font-weight:700; }
  .modal-actions .btn.primary { background:var(--accent-color); color:#fff; border:none; }
  .modal-actions .btn.ghost { background:transparent; color:#333; }

  footer { background: var(--primary-text); color:#a0a0a0; padding:20px; text-align:center; margin-top:36px; }

  @media (max-width:880px) {
    .hero { height:40vh; }
    .mobile-menu-btn { display:block; }
    header .desktop-nav { display:none; }
    .hero h1 { font-size:26px; }
    form { padding:20px; }
  }

  .input-group select:focus + label,
  .input-group select:not([value=""]) + label,
  .input-group select:valid + label {
    top: -10px;
    font-size: 12px;
    color: var(--accent-color);
    background: #fff;
    padding: 0 6px;
  }
/* === Fix: Make "Check Pricing & Book" responsive on mobile === */
@media (max-width: 600px) {
  #hero-cta.cta-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 280px;
    font-size: 14px;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
    margin-top: 10px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }
}
/* Default: all inputs full width (mobile-first) */
#phone-input {
  width: 100%;
}

/* Desktop only: make phone input compact */
@media (min-width: 992px) {
  #phone-input {
    max-width: 280px;   /* phone-like size */
  }
}


  select { color: #333; }
  select:invalid { color: var(--secondary-text); }


  /* ===============================
   Professional Color Refinement
   (Non-breaking overrides only)
================================ */

/* Refined brand palette */
:root {
  --accent-color: #2f9e8f;        /* calmer teal */
  --accent-secondary: #238a7d;    /* deeper hover */
  --bg-color: #f4f6f8;            /* neutral background */
  --primary-text: #111827;        /* modern dark */
  --secondary-text: #6b7280;      /* slate gray */
  --input-border: #d1d5db;        /* soft border */
  --card-bg: #ffffff;
  --white: #ffffff;
}

/* Header polish */
header {
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

/* Cards feel more premium */
.service-card {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

/* Buttons – smoother & richer */
.cta-primary,
form button,
.modal-actions .btn.primary {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--accent-secondary)
  );
}

.cta-primary:hover,
form button:hover,
.modal-actions .btn.primary:hover {
  filter: brightness(1.05);
}

/* Inputs – cleaner */
.input-group {
  border-color: var(--input-border);
}

.input-group input,
.input-group textarea,
.input-group select {
  color: var(--primary-text);
}

/* Floating labels sharper */
.input-group label {
  font-weight: 500;
  color: var(--secondary-text);
}

/* Modal refinement */
.modal-card {
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* Footer more subtle */
footer {
  background: #0f172a;
  color: #9ca3af;
}
.view-details,
.details-btn,
.view-services,
.book-btn {
  display:inline-block;
  margin-top:6px;
  padding:8px 12px;
  background:#222;
  color:#fff;
  border-radius:8px;
  border:none;
  cursor:pointer;
  font-weight:600;
}

.details-btn { background:#444; }
.book-btn { background:#00a68d; }
.view-services { background:#222; }
/* ===== Modal Stacking Fix ===== */

/* Category (View Services) modal */
#categoryModal {
  z-index: 200;
}

/* Service (View Details) modal – must be on top */
#serviceModal {
  z-index: 300;
}

/* Prevent background scroll when any modal is open */
body.modal-open {
  overflow: hidden;
}
.modal {
  pointer-events: auto;
}

.book-btn {
  text-decoration: none;
  display: inline-block;
  padding: 10px 16px;
  background: #00a68d;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.book-btn:hover {
  background: #008f7a;
  color: #fff;
}
/* === Service Cards with Background Images === */
.service-bg {
  position: relative;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-elevated);
}

/* Dark overlay for readability */
.service-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25)
  );
  z-index: 0;
}

.service-bg h3,
.service-bg p,
.service-bg button {
  position: relative;
  z-index: 1;
}

.service-bg h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-bg p {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 14px;
}

.service-bg button {
  background: #119c8b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.service-bg button:hover {
  background: #2fbba3;
}

/* Hover zoom effect */
.service-bg:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}
/* ===== PROFESSIONAL SERVICE CARD ===== */
/* .service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
} */

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.service-card i {
  font-size: 34px;
  color: var(--accent-color);
  margin-bottom: 6px;
}

/* Title */
.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
}

/* Description */
.service-card p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
}

/* Price */
.service-card .price {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-color);
}

.service-card .price span {
  font-size: 17px;
  color: #94a3b8;
  margin-left: 8px;
  text-decoration: line-through;
}

/* Buttons */
.action-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.book-btn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  flex: 1;
}

.book-btn:hover {
  background: var(--accent-secondary);
}

.details-btn {
  background: #f1f5f9;
  color: #0f172a;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
/* ===============================
   Make service card content white
   (for image / gradient cards)
   =============================== */

.service-bg {
  color: #ffffff;
}

.service-bg h3 {
  color: #ffffff;
}

.service-bg p {
  color: rgba(255, 255, 255, 0.9);
}

/* Ensure icons are visible */
.service-bg i {
  color: #ffffff;
}

/* Improve contrast with overlay */
.service-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.65)
  );
  border-radius: inherit;
  z-index: 0;
}

/* Keep content above overlay */
.service-bg > * {
  position: relative;
  z-index: 1;
}

/* Button stays strong */
.service-bg .view-services {
  background: var(--accent-color);
  color: #ffffff;
}

.service-bg .view-services:hover {
  background: var(--accent-secondary);
}
/* ===============================
   GOOGLE REVIEWS – PROFESSIONAL
   =============================== */

.google-reviews-section {
  background: #ffffff;
  padding: 70px 20px;
}

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.reviews-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.reviews-header p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 20px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.rating-score {
  font-size: 36px;
  font-weight: 800;
  color: #f59e0b;
}

.stars {
  color: #fbbf24;
  font-size: 20px;
}

.rating-text {
  font-size: 14px;
  color: #6b7280;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Map */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .reviews-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rating-row {
    justify-content: center;
  }
}


/* ===============================
   FINAL CTA – PROFESSIONAL
================================ */
.final-cta {
  background: linear-gradient(135deg, #2f9e8f, #238a7d);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 28px;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0f172a;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}
.hero .cta-primary {
  background: #0ea5a4;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(14,165,164,0.35);
}

.hero .cta-primary:hover {
  background: #08948c;
}
@media (min-width: 1024px) {
  .hero {
    background-position: center top;
  }
}
.price-highlight {
  font-weight: 800;
  font-size: 1.05em; /* optional, slightly bigger */
}
