/* ===============================
   GLOBAL
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #222;
  padding-top: 62px; /* matches slim navbar height */
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 700;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #226d8d;
}

/* ============================
   PREMIUM NAVBAR (FIXED)
============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  z-index: 9999;
}

/* LOGO LEFT */
.nav-left {
  display: flex;
  flex-direction: row;      /* logo + tagline side by side on desktop */
  align-items: center;
  gap: 8px;                 /* little space between them */
  line-height: 1.1;
}

.logo-text {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  color: #41c5b8;
}

.logo-sub {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #444;
  margin-top: -3px;
}

/* DESKTOP NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
}

/* CALL BUTTON */
.nav-links .booknow {
  background: #41c5b8;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 600;
}

/* MOBILE BURGER */
.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
}

/* =============== MOBILE MENU =============== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  padding: 20px;
  box-shadow: -2px 0 25px rgba(0,0,0,0.25);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10001;
}

/* ===== FIX MOBILE MENU OVERLAY ORDER ===== */
.navbar {
  z-index: 1000; /* keep navbar below menu */
}

.mobile-menu {
  z-index: 10002; /* make sure menu sits above everything */
}

.mobile-overlay {
  z-index: 10001; /* overlay sits below menu but above page */
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.close-mobile {
  font-size: 32px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  line-height: 1;
  padding: 5px;
  background: none;
  border: none;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-call {
  margin-top: auto;
  padding: 14px;
  background: #41c5b8;
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* BURGER ICON */
.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10002;
  padding: 5px;
}


/* ============================
   RESPONSIVE BEHAVIOR
============================ */
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ===============================
   HERO SECTION — Cinematic & Alive
================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  padding: 70px 5%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url("./images/bkpicture.jpeg") center/cover no-repeat;
}

/* Gradient overlay for depth + text clarity */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.05)
  );
  z-index: 1;
}

/* Glassy hero content box — Slimmer & More Left */
.hero-content.glass {
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.18);
  padding: 35px 40px;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.20);
  max-width: 420px;
  margin-left: 0.5%;
  z-index: 2;
  opacity: 0;
  transform: translateX(-25px);
  animation: heroFade 1.1s ease-out forwards;
}

/* Heading POP effect */
.hero-content h1 {
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.12;
  text-shadow: 0 4px 18px rgba(0,0,0,0.55);
  opacity: 0;
  animation: heroText 1.5s ease-out forwards 0.2s;
}

/* Paragraph glow */
.hero-content p {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-top: 12px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
  opacity: 0;
  animation: heroText 1.6s ease-out forwards 0.35s;
}

/* Buttons glow */
.hero-buttons {
  opacity: 0;
  animation: heroText 1.7s ease-out forwards 0.5s;
  margin-top: 18px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Animations */
@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   LUXURY MINIMAL BUTTONS (OPTION D)
=============================== */
.primary-flat,
.secondary-flat {
  padding: 12px 26px;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* Solid minimal button */
.primary-flat {
  background: rgba(255,255,255,0.75);
  color: #226d8d;
  border: none;
}

.primary-flat:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(65,197,184,0.6);
}

/* Outline minimal button */
.secondary-flat {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.65);
}

.secondary-flat:hover {
  background: #fff;
  color: #41c5b8 !important;
  transform: translateY(-2px);
}

/* ===============================
   SERVICES SECTION – CLEAN VERSION
=============================== */
.services-section {
  position: relative;
  padding: 50px 3%;
  text-align: center;
  overflow: hidden;
}

/* Background paws */
.services-bg {
  position: absolute;
  inset: 0;
  background-image: url("./images/pawpattern.png");
  background-repeat: repeat;
  background-size: 220px;
  opacity: 0.10;
  pointer-events: none;
}

.services-inner {
  position: relative;
  z-index: 5;
  max-width: 1350px;
  margin: 0 auto;
}

/* ===============================
   TITLE
=============================== */
.services-header {
  margin-bottom: 30px;
}

.services-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #222;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 6px;
}

/* ===============================
   TOP GRID (4 CARDS)
=============================== */
.magazine-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  background: #fff;
  width: 260px;
  padding: 26px 22px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.25s ease;
}

.service-card img {
  width: 44px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.15rem;
  color: #0b5b63;
  margin-bottom: 6px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.35;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

/* ===============================
   BOTTOM ROW – HORIZONTAL LAYOUT
=============================== */
.services-bottom-wide {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 45px;
  flex-wrap: wrap;
}

/* Add-Ons Card – aligned under first card */
.addons-card {
  width: 260px;
}

/* ===============================
   PREMIUM ZIP CHECKER BOX (UPDATED)
=============================== */
.wide-zip-box {
  width: 480px;
  padding: 20px 26px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(65,197,184,0.15),
    rgba(255,255,255,0.65)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(65,197,184,0.28);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  text-align: left;
  transition: 0.25s ease-in-out;
  min-height: 220px;
}

.wide-zip-box:hover {
  box-shadow: 0 8px 28px rgba(65,197,184,0.25);
  transform: translateY(-2px);
}

.service-check-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b5b63;
  margin-bottom: 10px;
}

/* INPUT */
#zipInput {
  padding: 10px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #bcd9d4;
  background: rgba(255,255,255,0.85);
  font-size: 1rem;
  outline: none;
  transition: 0.25s ease;
}

#zipInput:focus {
  border-color: #41c5b8;
  box-shadow: 0 0 0 3px rgba(65,197,184,0.25);
}

/* CHECK BUTTON */
#zipCheckBtn {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: linear-gradient(135deg, #41c5b8, #36a99e);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.25s ease;
}

#zipCheckBtn:hover {
  background: linear-gradient(135deg, #36a99e, #2b8f83);
  box-shadow: 0 4px 18px rgba(65,197,184,0.32);
}

/* RESULT MESSAGE */
.zip-result {
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 24px;
  line-height: 1.3;
}

/* BOOK NOW BUTTON */
#zipBookBtn {
  display: none;
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  background: linear-gradient(135deg, #4caf50, #388f3d);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

#zipBookBtn:hover {
  background: linear-gradient(135deg, #3e8f42, #2f6f30);
  box-shadow: 0 4px 18px rgba(76,175,80,0.25);
}

/* ===============================
   STATS + REVIEWS SIDE-BY-SIDE
=============================== */
.stats-reviews-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 20px 4%;
  margin-top: 20px;
}

/* LEFT: Stat Bar Image */
.stats-left {
  flex: 0.4;
  display: flex;
  justify-content: center;
}

.statbar-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

/* RIGHT: Reviews */
.reviews-right {
  flex: 0.6;
  max-width: 500px;
}

.reviews-right .section-title {
  text-align: left;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

/* Prevent section titles from hiding under navbar */
#reviews, #services, #pricing, #about {
  scroll-margin-top: 100px;
}

/* ====================================
   PREMIUM REVIEW SECTION STYLING
==================================== */
.reviews-right {
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.7),
    rgba(240,250,250,0.6)
  );
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Floating motion on hover */
.review-card {
  transition: 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Section title more luxurious */
.reviews-right .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b5b63;
  margin-bottom: 22px;
}

/* ===============================
   REVIEW CAROUSEL
=============================== */
.review-carousel {
  position: relative;
  margin-top: 10px;
}

.review-card {
  display: none;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.review-card.active {
  display: block;
  opacity: 1;
}

/* Review Header */
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #41c5b8;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  color: #ffbf47;
  font-size: 1.2rem;
}

/* Text */
.quote {
  font-size: 1rem;
  margin: 6px 0 3px;
  font-style: italic;
}

.author {
  color: #333;
  margin-bottom: 6px;
}

/* Pet Photo */
.review-pet-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 10px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

/* Google Link */
.google-link {
  display: inline-block;
  margin-top: 4px;
  color: #41c5b8;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.google-link:hover {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE (MOBILE)
=============================== */
@media (max-width: 850px) {
  .stats-reviews-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .reviews-right .section-title {
    text-align: center;
  }
  
  .statbar-img {
    max-width: 260px;
  }
  
  .services-bottom-wide {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .wide-zip-box {
    width: 100%;
    max-width: 480px;
  }
  
  .hero-content.glass {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}

/* ===============================
   APPOINTMENT DRAWER
=============================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 900;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.appointment-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 420px;
  max-width: 100%;
  background: #ffffff;
  box-shadow: -4px 0 28px rgba(0,0,0,0.15);
  padding: 34px;
  border-radius: 20px 0 0 20px;
  transition: right 0.35s ease;
  z-index: 10003;
  display: flex;
  flex-direction: column;
  max-height: 100dvh;          /* dynamic height for mobile browsers */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.appointment-drawer.active {
  right: 0;
}

/* keep the close button visible */
.close-drawer {
  position: sticky;
  top: 0;
  align-self: flex-end;
  background: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #555;
  z-index: 2;
}

/* tighten for small screens */
@media (max-width: 480px) {
  .appointment-drawer {
    width: 100%;
    border-radius: 0;
    padding: 24px 20px;
  }
}


.appointment-drawer.active {
  right: 0;
}

.close-drawer {
  position: sticky;
  top: 0;
  align-self: flex-end;
  background: #ffffff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #777;
  margin-bottom: 18px;
  z-index: 1;
}

/* Step bubbles */
.step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.bubble {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  transition: 0.3s ease;
}

.bubble.active {
  background: #41c5b8;
}

/* Step content */
.drawer-step {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.drawer-step.active {
  display: flex;
}

.drawer-step input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.next-step {
  padding: 12px;
  background: #41c5b8;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.25s ease;
}

.next-step:hover {
  background: #2ca798;
}


/* ===============================
   FOOTER
=============================== */
.footer {
  padding: 40px;
  text-align: center;
  background: #f4f4f4;
  color: #666;
  margin-top: 60px;
}

/* ================================
   LUXURY SERVICE SELECT BUTTONS
================================ */
.drawer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.service-btn {
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 14px;
  border: 1px solid #cfd9d8;
  background: #ffffff;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-btn:hover {
  background: #f2fffd;
  border-color: #41c5b8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* When selected */
.service-btn.active {
  background: linear-gradient(135deg, #41c5b8, #2d9c90);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .appointment-drawer {
    width: 100%;
    border-radius: 14px 14px 0 0;
  }
  
  .mobile-menu {
    width: 85%;
  }
  
  .services-title {
    font-size: 2rem;
  }
}

/* ========== Pricing Modal Styles ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 900;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.pricing-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 380px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 901;
}

.pricing-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
  color: #444;
}

.modal-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-sub {
  text-align: center;
  color: #555;
  margin-bottom: 20px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form input,
.modal-form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.modal-submit {
  padding: 12px;
  background: linear-gradient(135deg, #41c5b8, #36a99e);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

.modal-submit:hover {
  background: #2b8f83;
}

.modal-thanks {
  display: none;
  text-align: center;
  margin-top: 20px;
}

/* ==============================
   SERVICES MODAL – PERFECT FIT
============================== */
.services-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10002;
}

.services-modal-overlay.active {
  display: flex;
}

.glass-modal {
  width: 92%;
  max-width: 430px;
  height: auto;
  max-height: 78vh;
  padding: 22px 24px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  animation: modalPop 0.3s ease;
  position: relative;
}

/* Close button */
.close-services {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.9rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
}

/* Title area tighter */
.glass-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.glass-modal p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #444;
}

/* Services List layout */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.service-item {
  background: rgba(255,255,255,0.55);
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Service Title */
.service-item h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

/* Price */
.service-item p {
  font-size: 0.95rem;
  margin: 0;
  color: #333;
}

/* Bottom Buttons */
.services-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
}

.services-modal-buttons button {
  flex: 1;
  padding: 12px 0;
  font-size: 1rem;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.call-btn {
  background: #ff4d4d;
  color: #fff;
}

.book-btn {
  background: #41c5b8;
  color: #fff;
}

/* Soft pop animation */
@keyframes modalPop {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ============================================
   MOBILE FIX FOR "VIEW SERVICES" MODAL
============================================ */
@media (max-width: 600px) {
  .services-modal {
    max-height: 85vh !important;
    padding: 18px !important;
    border-radius: 22px !important;
  }
  
  .services-modal h2 {
    font-size: 1.55rem !important;
    margin-bottom: 8px !important;
  }
  
  .services-modal p {
    font-size: 0.95rem !important;
    line-height: 1.35 !important;
  }
  
  .service-item {
    padding: 14px 16px !important;
    border-radius: 16px !important;
  }
  
  .service-item h3 {
    font-size: 1.05rem !important;
  }
  
  .service-item p {
    font-size: 0.9rem !important;
  }
  
  .services-list {
    gap: 14px !important;
  }
  
  .services-modal-buttons {
    margin-top: 12px !important;
    flex-direction: column;
  }
  
  .services-modal-buttons button {
    padding: 12px !important;
    font-size: 1.05rem !important;
  }
}