/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f9fafb;
  color: #111827;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ─── HEADER ─────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: #1d4ed8;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.logo-name {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 11px;
  color: #9ca3af;
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  padding: 8px 16px;
  font-size: 15px;
  color: #4b5563;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.nav-link:hover {
  background: #e5e7eb;
  transform: scale(1.04);
}

/* Services dropdown */
.dropdown-wrap {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chev {
  transition: transform 0.2s;
  font-size: 13px;
}

.chev.open {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-width: 215px;
  padding: 6px 0;
  z-index: 60;
}

.dropdown-menu.open {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #4b5563;
  transition: background 0.12s, color 0.12s;
}

.dropdown-item:hover {
  background: #f9fafb;
  color: #111827;
}

/* Right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: #1d4ed8;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}

.call-btn:hover {
  background: #1e40af;
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .call-btn {
    display: flex;
  }
}

.whatsapp-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  color: #22c55e;
  background: #fff;
  font-size: 22px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background 0.15s, transform 0.15s;
}

.whatsapp-btn:hover {
  background: #f9fafb;
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .whatsapp-btn {
    display: flex;
  }
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #4b5563;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.15s;
}

.hamburger:hover {
  background: #f3f4f6;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid #f3f4f6;
  background: #fff;
  padding: 0 1rem 1rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: #4b5563;
  border-bottom: 1px solid #f9fafb;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #f9fafb;
}

.mobile-link:hover {
  color: #111827;
}

.mobile-services-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-services-sub {
  display: none;
  padding-left: 12px;
  border-left: 2px solid #f3f4f6;
  margin-bottom: 8px;
}

.mobile-services-sub.open {
  display: block;
}

.mobile-sub-link {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  color: #6b7280;
}

.mobile-sub-link:hover {
  color: #111827;
}

.mobile-call-btn {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1d4ed8;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 12px;
  border-radius: 999px;
  transition: background 0.15s;
}

.mobile-call-btn:hover {
  background: #1e40af;
}

.mobile-whatsapp-btn {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #16a34a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  border-radius: 999px;
  transition: background 0.15s;
}

.mobile-whatsapp-btn:hover {
  background: #15803d;
}

/* ─── RO SERVICE PAGE ───────────────────────────────────────────────── */
.ro-page {
  min-height: 100vh;
  background: #f9fafb;
  padding: 12px 0 24px;
}

.ro-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}

.ro-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .ro-layout {
    flex-direction: row;
  }
}

/* Sidebar */
.sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .sidebar {
    display: block;
    width: 320px;
    flex-shrink: 0;
  }
}

.sidebar-brand {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.sidebar-title {
  font-weight: 700;
  font-size: 15px;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 4px;
}

.sidebar-badge {
  font-size: 13px;
  color: #f59e0b;
  margin: 0;
}

.sidebar-products {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}

.sidebar-select-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sidebar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sidebar-select-title {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

.sidebar-select-sub {
  font-size: 12px;
  color: #6b7280;
}

.sidebar-product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-product-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  width: 100%;
}

.sidebar-product-btn:hover {
  background: #f3f4f6;
}

.sidebar-product-btn.active {
  background: #eff6ff;
  border-color: #93c5fd;
}

.sidebar-product-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.sidebar-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-product-label {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.sidebar-product-arrow {
  margin-left: auto;
  font-size: 12px;
  color: #3b82f6;
}

/* Banner */
.banner-wrap {
  margin-bottom: 16px;
}

.banner-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

@media (min-width: 640px) {
  .banner-img-wrap {
    height: 224px;
  }
}

@media (min-width: 768px) {
  .banner-img-wrap {
    height: 256px;
  }
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .banner-img {
    object-fit: cover;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in {
  animation: slideIn 0.45s ease forwards;
}

.banner-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.banner-dot {
  height: 6px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s, background 0.3s;
}

.banner-dot.active {
  width: 22px;
  background: #2563eb;
}

.banner-dot.inactive {
  width: 7px;
  background: rgba(255, 255, 255, 0.7);
}

/* Mobile category bar */
.mobile-cat-bar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 12px;
}

@media (min-width: 1024px) {
  .mobile-cat-bar {
    display: none;
  }
}

.mobile-cat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 0 4px;
}

.mobile-cat-icon {
  width: 24px;
  height: 24px;
  background: #2563eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.mobile-cat-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.mobile-cat-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-cat-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-cat-img-wrap {
  width: 80px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  transition: border-color 0.15s;
}

.mobile-cat-img-wrap.active {
  border-color: #2563eb;
}

.mobile-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-cat-label {
  font-size: 12px;
  color: #4b5563;
  text-align: center;
  line-height: 1.3;
}

.mobile-cat-label.active {
  color: #2563eb;
  font-weight: 600;
}

/* Service Card */
.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
  .service-card {
    padding: 20px;
  }
}

.card-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.card-text {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .card-title {
    font-size: 18px;
  }
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.stars {
  color: #f59e0b;
  font-size: 13px;
}

.rating-val {
  font-weight: 600;
  font-size: 13px;
  color: #1f2937;
}

.rating-count {
  font-size: 12px;
  color: #6b7280;
}

.card-features {
  margin-bottom: 4px;
}

.card-feature {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 2px;
}

@media (min-width: 640px) {
  .card-feature {
    font-size: 14px;
  }
}

.feature-dot {
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.show-more-btn {
  color: #2563eb;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 640px) {
  .show-more-btn {
    font-size: 14px;
  }
}

.show-more-btn:hover {
  color: #1e40af;
}

.card-img-wrap {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
  margin-top: 8px;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-main {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

@media (min-width: 640px) {
  .price-main {
    font-size: 26px;
  }
}

.price-orig {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

.book-now-btn {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

@media (min-width: 640px) {
  .book-now-btn {
    font-size: 15px;
    padding: 8px 28px;
  }
}

.book-now-btn:hover {
  background: #1d4ed8;
}

/* ─── HAPPINESS GUARANTEE ────────────────────────────────────────────── */
.happiness-section {
  background: #f8fafc;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .happiness-section {
    padding: 64px 0;
  }
}

.happiness-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-title-wrap {
    margin-bottom: 48px;
  }
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

.section-sub {
  color: #64748b;
  margin-top: 12px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .section-sub {
    font-size: 16px;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.benefit-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}

@media (min-width: 768px) {
  .benefit-card {
    padding: 32px;
  }
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 26px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .benefit-icon {
    width: 80px;
    height: 80px;
    font-size: 34px;
    margin-bottom: 20px;
  }
}

.benefit-title {
  font-weight: 600;
  color: #1e293b;
  font-size: 13px;
}

@media (min-width: 768px) {
  .benefit-title {
    font-size: 15px;
  }
}

/* FAQ */
.faq-wrap {
  max-width: 896px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .faq-btn {
    padding: 20px 24px;
  }
}

.faq-question {
  font-weight: 500;
  color: #1e293b;
  font-size: 14px;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 16px;
  }
}

.faq-icon {
  color: #475569;
  font-size: 16px;
  flex-shrink: 0;
  margin-left: 8px;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: #475569;
  border-top: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
  .faq-answer {
    padding: 0 24px 20px;
  }
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  padding-top: 16px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .faq-answer p {
    font-size: 16px;
  }
}

/* ─── CTA SECTION ────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(to right, #f1f5f9, #f8fafc);
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 64px 16px;
  }
}

.cta-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

@media (min-width: 768px) {
  .cta-inner {
    padding: 40px;
  }
}

.cta-text {
  text-align: center;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 44px;
  }
}

.cta-title.blue {
  color: #2563eb;
  margin-top: 8px;
}

.cta-sub {
  margin-top: 16px;
  color: #4b5563;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

@media (min-width: 768px) {
  .cta-sub {
    font-size: 18px;
  }
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .cta-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  color: #374151;
}

@media (min-width: 768px) {
  .cta-feature {
    font-size: 15px;
    padding: 14px 20px;
  }
}

.cta-feature i {
  color: #2563eb;
  font-size: 15px;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .cta-contacts {
    flex-direction: row;
    gap: 24px;
  }
}

.cta-contact-btn {
  flex: 1;
  background: linear-gradient(to right, #3b82f6, #1d4ed8);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: transform 0.15s;
}

.cta-contact-btn:hover {
  transform: scale(1.03);
}

.cta-contact-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.cta-contact-btn span {
  font-weight: 500;
  font-size: 14px;
}

@media (min-width: 768px) {
  .cta-contact-btn span {
    font-size: 15px;
  }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  background: #111827;
  color: #d1d5db;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: #9ca3af;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: #d1d5db;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-info {
  font-size: 13px;
  margin-top: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #d1d5db;
  transition: background 0.15s;
}

.social-icon.facebook:hover {
  background: #2563eb;
  color: #fff;
}

.social-icon.instagram:hover {
  background: #db2777;
  color: #fff;
}

.social-icon.twitter:hover {
  background: #0ea5e9;
  color: #fff;
}

.social-icon.linkedin:hover {
  background: #1d4ed8;
  color: #fff;
}

.social-icon.youtube:hover {
  background: #dc2626;
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #374151;
}

.footer-copy {
  font-size: 13px;
  color: #6b7280;
}

/* ─── BOOKING MODAL ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 16px 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  max-width: 448px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.modal-sub {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.15s;
}

.modal-close:hover {
  background: #f3f4f6;
}

.modal-form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.req {
  color: #ef4444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group textarea {
  resize: none;
}

.field-error {
  font-size: 12px;
  color: #ef4444;
  min-height: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-summary {
  background: #eff6ff;
  border-radius: 12px;
  padding: 12px;
}

.summary-label {
  font-size: 12px;
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 4px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-row span:first-child {
  font-size: 14px;
  color: #374151;
}

.summary-price {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
}

.submit-btn {
  width: 100%;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.submit-btn:hover {
  background: #1d4ed8;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-disclaimer {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

/* ─── FLOATING BUTTONS ───────────────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn i {
  font-size: 28px;
  color: white;
}

.btn-call {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.btn-call:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  position: relative;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
}

/* Pulse animation for WhatsApp */
.pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Tooltips */
.floating-btn .tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(-4px);
}

.floating-btn .tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid rgba(0, 0, 0, 0.85);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i {
    font-size: 22px;
  }

  .floating-btn .tooltip {
    display: none;
  }
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.heading {
  padding: 20px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 14px;
  gap: 30px;
}

.heading-para {
  max-width: 800px;
  text-align: center;
  color: #646876;
  font-weight: 400;
  font-size: 17px;
}

@media (max-width: 600px) {
  .heading {
    font-size: 10px;
    font-weight: 300;
  }

  .heading-para {
    font-weight: 300;
    font-size: 16px;
  }
}

/* ABOUT SECTION */
.about-section {
  padding: 60px 20px;
  background-color: #f9fafb;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

.about-subheading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-subheading:first-child {
  margin-top: 0;
}

.about-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .about-card {
    padding: 22px 18px;
  }

  .about-subheading {
    font-size: 1.05rem;
  }

  .about-text {
    font-size: 0.92rem;
  }
}

:root {
  --bg: #F3F9FB;
  --card-bg: #FFFFFF;
  --primary: #0B4F6C;
  --accent: #01BAEF;
  --accent-soft: #E3F6FB;
  --text-dark: #10262E;
  --text-muted: #5B7480;
  --star: #F5A623;
  --radius: 16px;

  --avatar-1: #0B4F6C;
  --avatar-2: #01BAEF;
  --avatar-3: #167D7F;
  --avatar-4: #3D5A80;
}

.testimonials-section {
  padding: 80px 20px;
  overflow: hidden;
}

.testimonials-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.testimonials-header .eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.testimonials-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
}

.testimonials-header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------------- Marquee ---------------- */
.marquee-wrap {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-right 48s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

.testimonial-card {
  flex: 0 0 auto;
  width: 320px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  box-shadow: 0 6px 20px rgba(11, 79, 108, 0.08);
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
}

.stars {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 22px;
  min-height: 110px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.author-location {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
}

@media (max-width:600px) {
  .testimonial-card {
    width: 270px;
    padding: 22px 20px;
  }

  .marquee-track {
    animation-duration: 34s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.service-areas {
  padding: 60px 20px;
  background: #f8fbff;
}

.service-areas .container {
  max-width: 1100px;
  margin: auto;
}

.container p a {
  color: blue;
}

.service-areas h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0b3d91;
}

.service-areas h3 {
  margin: 30px 0 15px;
}

.service-areas p {
  line-height: 1.8;
  color: #444;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 2fr));
  gap: 10px;
  margin: 20px 0;
  padding-left: 20px;
}

.areas-list li {
  margin-bottom: 8px;
  border: 1px solid black;
  padding: 10px;
  border-radius: 23px;
  align-self: center;
  text-align: center;
  background-color: #1d4ed8;
  color: white;
  font-weight: 400;
  cursor: pointer;
}

@media (max-width: 600px) {
  .areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(114px, 2fr));
  }
}

:root{
  --svc-bg: #F5FAFA;
  --svc-surface: #FFFFFF;
  --svc-border: #E1EAEC;
  --svc-text: #14232B;
  --svc-text-muted: #5C6E75;

  --svc-radius: 16px;
  --svc-font-display: 'Manrope', system-ui, sans-serif;
  --svc-font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- preview-only wrapper, safe to delete on integration ---------- */
.preview-shell{
  background: var(--svc-bg);
  padding: 48px 16px;
  font-family: var(--svc-font-body);
}

/* ---------------------------- section shell ---------------------------- */
.svc-info{
  font-family: var(--svc-font-body);
  color: var(--svc-text);
}

.svc-info__container{
  max-width: 880px;
  margin: 0 auto;
}

[data-tab="overview"],
[data-accent="overview"]{
  --accent: #2E7FD6;
  --accent-soft: #EAF3FC;
}
[data-tab="water-issue"],
[data-accent="water-issue"]{
  --accent: #DB8A22;
  --accent-soft: #FCF2E3;
}
[data-tab="solutions"],
[data-accent="solutions"]{
  --accent: #1C9C74;
  --accent-soft: #E7F7F1;
}

/* --------------------------------- tabs --------------------------------- */
.svc-info__tabs{
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--svc-border);
}
.svc-info__tabs::-webkit-scrollbar{ display: none; }

.svc-info__tab{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  font-family: var(--svc-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--svc-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.svc-info__tab-icon{
  display: inline-flex;
  width: 18px;
  height: 18px;
}
.svc-info__tab-icon svg{ width: 100%; height: 100%; }

.svc-info__tab:hover{ color: var(--svc-text); }

.svc-info__tab:focus-visible{
  outline: 2px solid var(--accent, #2E7FD6);
  outline-offset: 2px;
}

.svc-info__tab.is-active{
  color: var(--accent);
  border-color: var(--accent);
}

/* -------------------------------- panels -------------------------------- */
.svc-info__panels{
  background: var(--svc-surface);
  border: 1px solid var(--svc-border);
  border-top: none;
  border-radius: 0 0 var(--svc-radius) var(--svc-radius);
  padding: 32px;
}

.svc-info__panel{
  display: none;
  gap: 20px;
}
.svc-info__panel.is-active{
  display: flex;
  animation: svcFadeIn 0.35s ease;
}

@keyframes svcFadeIn{
  from{ opacity: 0; transform: translateY(4px); }
  to{ opacity: 1; transform: translateY(0); }
}

.svc-info__badge{
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.svc-info__badge svg{ width: 22px; height: 22px; }

.svc-info__body{ flex: 1 1 auto; min-width: 0; }

.svc-info__eyebrow{
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--svc-text-muted);
}

.svc-info__title{
  margin: 0 0 12px;
  font-family: var(--svc-font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.35rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--svc-text);
}

.svc-info__lead{
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* collapsible "read more" content, animated via grid-template-rows */
.svc-info__more-wrap{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.svc-info__more-wrap.is-expanded{
  grid-template-rows: 1fr;
}
.svc-info__more-inner{
  overflow: hidden;
  min-height: 0;
}
.svc-info__more-inner p{
  margin: 0;
  padding-top: 14px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.svc-info__readmore{
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--svc-font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  cursor: pointer;
}

.svc-info__readmore:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.svc-info__readmore-icon{
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.svc-info__readmore.is-expanded .svc-info__readmore-icon{
  transform: rotate(180deg);
}

/* -------------------------------- mobile -------------------------------- */
@media (max-width: 560px){
  .svc-info__panels{ padding: 24px 20px; }
  .svc-info__panel{ flex-direction: column; }
  .svc-info__badge{ width: 38px; height: 38px; }
  .svc-info__tab{ padding: 14px 16px; font-size: 0.88rem; }
}

/* respect reduced motion preference */
@media (prefers-reduced-motion: reduce){
  .svc-info__more-wrap,
  .svc-info__readmore-icon,
  .svc-info__panel.is-active{
    transition: none;
    animation: none;
  }
}
 
