/* ============================================================
   SECTIONS — Hero, About, Services, Why, Testimonials, Contact
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--bg);
  display: flex; align-items: center; padding-top: var(--nav-h);
}
.hero-wrap {
  max-width: 1440px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-trust-badges {
  display: flex; align-items: center; gap: 20px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-body);
  margin-bottom: 24px; flex-wrap: wrap;
}
.trust-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--red); margin-right: 4px;
}
.trust-dot.teal  { background: var(--red); }
.trust-dot.cyan  { background: var(--red-light); }
.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 20px;
}
.hero-p    { font-size: 1rem; color: var(--text-body); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { position: relative; }
.hero-img-card { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.hero-photo {
  width: 100%; height: auto; max-height: 480px; object-fit: contain;
  border-radius: var(--radius-xl); display: block; box-shadow: var(--shadow-lg);
}
.hero-badge-tl, .hero-badge-bl {
  position: absolute; background: #fff;
  border-radius: var(--radius-md); padding: 10px 16px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
}
.hero-badge-tl { top: 16px; right: -16px; }
.hero-badge-bl { bottom: 24px; left: -16px; }
.badge-icon   { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; border-radius: 8px; }
.badge-text   { display: flex; flex-direction: column; gap: 1px; }
.badge-num    { font-size: 1.4rem; font-weight: 900; color: var(--text-dark); line-height: 1; }
.badge-lbl    { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
body.dark .hero-badge-tl,
body.dark .hero-badge-bl { background: var(--bg-white); }

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--bg-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-left .sec-h2 { margin-bottom: 8px; }
.about-left p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.astat { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.astat-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(232,0,14,0.08); border: 1.5px solid rgba(232,0,14,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--red); margin-bottom: 4px;
}
.astat-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.astat-lbl { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.about-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.about-img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.iso-badge {
  position: absolute; bottom: 20px; right: -16px;
  background: #fff; border-radius: var(--radius-md);
  padding: 12px 18px; box-shadow: var(--shadow-md); text-align: center;
}
.iso-badge strong { display: block; font-size: 1.1rem; font-weight: 900; color: var(--red); }
.iso-badge span   { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
body.dark .iso-badge { background: var(--bg-white); }

/* ── SERVICES ── */
.services { padding: 100px 0; background: var(--bg); }
.services-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  cursor: none;
}
.filter-btn:hover {
  border-color: rgba(232,0,14,0.3);
  color: var(--red);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}
body.dark .filter-btn {
  background: var(--bg-white);
  border-color: var(--border);
}
body.dark .filter-btn.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 48px;
}
.svc-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 28px 22px; border: 1px solid var(--border);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default; text-align: center;
  will-change: opacity, transform;
  opacity: 1;
  transform: scale(1);
}
.svc-card:hover { box-shadow: var(--shadow-md); border-color: rgba(232,0,14,0.3); transform: translateY(-4px) scale(1.02); }
.svc-card.featured { border-color: rgba(232,0,14,0.4); box-shadow: var(--shadow-sm); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--red); margin: 0 auto 16px;
  background: rgba(232,0,14,0.08); border: 1px solid rgba(232,0,14,0.15);
  transition: var(--transition);
}
.svc-icon.cyan-bg { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; border-color: transparent; }
.svc-card:hover .svc-icon { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; border-color: transparent; }
.svc-title { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.svc-card p { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; }
.svc-cta {
  text-align: center; padding: 32px;
  background: var(--bg-white); border-radius: var(--radius-xl); border: 1px solid var(--border);
}
.svc-cta p { font-size: 0.95rem; color: var(--text-body); margin-bottom: 20px; }
.svc-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── WHY CHOOSE US ── */
.why { padding: 100px 0; background: var(--bg-white); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 56px; align-items: start;
}
.why-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(232,0,14,0.2); }
.why-card.why-featured {
  background: var(--bg-white); border: 1.5px solid rgba(232,0,14,0.4);
  box-shadow: 0 8px 32px rgba(232,0,14,0.12); transform: translateY(-6px);
}
.why-card.why-featured:hover { box-shadow: 0 14px 44px rgba(232,0,14,0.2); transform: translateY(-10px); }
.why-card.why-featured::before {
  content: 'Our Strength';
  position: absolute; top: -13px; left: 28px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-full);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.why-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px; transition: var(--transition);
}
.why-icon.icon-soft  { background: #F5F5F5; color: var(--charcoal-mid); }
.why-icon.icon-red   { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; }
.why-icon.icon-light { background: rgba(232,0,14,0.08); color: var(--red); border: 1px solid rgba(232,0,14,0.15); }
.why-card:hover .why-icon.icon-soft  { background: #EBEBEB; }
.why-card:hover .why-icon.icon-light { background: rgba(232,0,14,0.14); }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

.why-cta-banner {
  background: linear-gradient(135deg, #FAFAFA, #FFF0F0);
  border: 1px solid rgba(232,0,14,0.2); border-radius: var(--radius-xl);
  padding: 48px 56px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
body.dark .why-cta-banner { background: linear-gradient(135deg, #1A0505, #200808); }
.why-cta-text h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.why-cta-text p  { font-size: 0.92rem; color: var(--text-body); max-width: 480px; line-height: 1.7; }
.why-cta-btns    { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── TESTIMONIALS & CONTINUOUS FLOATING MARQUEE ── */
.testimonials { padding: 100px 0; background: var(--bg); overflow: hidden; }

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 0;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  z-index: 5;
}

/* Beautiful fading masks on the left and right sides */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  transition: var(--transition);
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* Ensure masks are dark on dark mode */
body.dark .marquee-container::before {
  background: linear-gradient(to right, #141414 0%, transparent 100%);
}
body.dark .marquee-container::after {
  background: linear-gradient(to left, #141414 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
}

.marquee-content {
  display: flex;
  gap: 24px;
  will-change: transform;
}

/* Infinite Scrolling Animations */
.marquee-track-left .marquee-content {
  animation: scroll-left 55s linear infinite;
}

.marquee-track-right .marquee-content {
  animation: scroll-right 55s linear infinite;
}

/* Pause marquee on hover */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 24px)); }
}

@keyframes scroll-right {
  0% { transform: translateX(calc(-100% - 24px)); }
  100% { transform: translateX(0); }
}

/* Premium Card Design for Marquee */
.testi-card {
  width: 440px; /* Fixed width for consistent horizontal scrolling layout */
  flex-shrink: 0;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Card hover effect inside marquee */
.testi-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(232, 0, 14, 0.25);
  box-shadow: var(--shadow-md);
  z-index: 15;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.testi-quote {
  font-size: 1.6rem;
  color: rgba(232, 0, 14, 0.18);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
}

.testi-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

.testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Initials Avatar Letter Style */
.testi-avatar-letter {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  user-select: none;
}

.testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testi-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  padding: 4px 10px;
  background: rgba(232, 0, 14, 0.06);
  border-radius: var(--radius-full);
  border: 1px solid rgba(232, 0, 14, 0.1);
}

.testi-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 20px 28px;
  background: var(--bg-white);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  width: fit-content;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.proof-avatars { display: flex; align-items: center; }
.proof-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -8px;
}
.proof-avatars img:first-child { margin-left: 0; }

.proof-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border: 2px solid #fff;
}

.proof-text strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text-dark); }
.proof-text span   { font-size: 0.78rem; color: var(--text-muted); }

/* Responsive Adjustments for Marquee */
@media (max-width: 900px) {
  .marquee-container::before,
  .marquee-container::after { width: 120px; }
  .testi-card { width: 350px; }
}

@media (max-width: 640px) {
  .marquee-container::before,
  .marquee-container::after { width: 60px; }
  .testi-card { width: 300px; }
}

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--bg-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }

.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.cinfo-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 24px 20px; border: 1px solid var(--border); transition: var(--transition);
}
.cinfo-card:hover { border-color: rgba(232,0,14,0.3); box-shadow: var(--shadow-sm); }
.cinfo-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(232,0,14,0.1); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 12px;
}
.cinfo-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.cinfo-card p  { font-size: 0.82rem; color: var(--text-body); line-height: 1.65; }

.map-card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px;
  text-align: center; position: relative;
}
.map-pin-label {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.75rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 4px;
}
.map-pin-label i { color: #ef4444; }
.map-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(232,0,14,0.1); border: 2px solid rgba(232,0,14,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.map-big-icon { font-size: 2rem; color: var(--red); }
.map-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.map-sub   { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.btn-map {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.btn-map:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,0,14,0.35); }

.booking-card {
  background: var(--bg-white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); padding: 40px 36px; box-shadow: var(--shadow-md);
}
.booking-card h3  { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.booking-card > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }

.appt-contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.appt-contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 18px; border-radius: var(--radius-md);
  background: var(--bg); border: 1px solid var(--border); transition: var(--transition);
}
.appt-contact-item:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.appt-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--red-soft); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.appt-detail { display: flex; flex-direction: column; gap: 3px; }
.appt-label  { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.appt-value  { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
a.appt-value { color: var(--red); }
a.appt-value:hover { text-decoration: underline; }
.appt-cta-btns { display: flex; gap: 12px; }

.btn-book-submit {
  flex: 1; padding: 13px 20px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 0.92rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); box-shadow: 0 4px 14px rgba(232,0,14,0.35);
}
.btn-book-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,0,14,0.45); }
.btn-wa {
  padding: 13px 20px; border-radius: var(--radius-full);
  background: transparent; border: 1.5px solid #25d366;
  color: #25d366; font-size: 0.92rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.btn-wa:hover { background: #25d366; color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-wrap      { padding: 60px 36px; gap: 40px; }
  .services-grid  { grid-template-columns: repeat(3, 1fr); }
  .about-grid     { gap: 48px; }
  .why-grid       { grid-template-columns: repeat(3, 1fr); }
  .testi-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-cta-banner { padding: 40px 40px; }
}

@media (max-width: 900px) {
  /* Hero */
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 48px 36px; }
  .hero-p    { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust-badges { justify-content: center; }
  .hero-img-card { overflow: hidden; }
  .hero-badge-tl { top: 12px; right: 12px; }
  .hero-badge-bl { bottom: 12px; left: 12px; }
  .hero-photo    { max-height: 380px; }
  /* About */
  .about { padding: 72px 0; }
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { justify-content: center; gap: 32px; }
  .about-img-wrap { overflow: hidden; }
  .iso-badge   { right: 12px; bottom: 12px; }
  .about-img   { height: 340px; }
  /* Services */
  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* Why */
  .why { padding: 72px 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card.why-featured { transform: none; }
  .why-cta-banner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .why-cta-text p { margin: 0 auto; }
  .why-cta-btns   { justify-content: center; }
  /* Testimonials */
  .testimonials { padding: 72px 0; }
  .testi-grid   { grid-template-columns: 1fr; }
  .testi-social-proof { flex-wrap: wrap; justify-content: center; border-radius: var(--radius-xl); }
  /* Contact */
  .contact { padding: 72px 0; }
  .contact-grid  { grid-template-columns: 1fr; }
  .appt-cta-btns { flex-direction: column; }
  .btn-book-submit, .btn-wa { justify-content: center; }
}

@media (max-width: 640px) {
  /* Hero */
  .hero-wrap { padding: 40px 18px; gap: 32px; }
  .hero-h1   { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-p    { font-size: 0.92rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .hero-photo { max-height: 280px; }
  .hero-badge-tl { top: 10px; right: 10px; }
  .hero-badge-bl { bottom: 10px; left: 10px; }
  .hero-badge-tl, .hero-badge-bl { padding: 8px 12px; gap: 8px; }
  .badge-num  { font-size: 1.1rem; }
  .badge-icon { width: 32px; height: 32px; }
  /* About */
  .about { padding: 60px 0; }
  .about-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .astat       { min-width: 80px; }
  .about-img   { height: 240px; }
  .iso-badge   { right: 8px; bottom: 8px; padding: 10px 14px; }
  /* Services */
  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-card      { padding: 20px 14px; }
  .sec-header    { margin-bottom: 36px; }
  /* Why */
  .why { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-cta-banner { padding: 28px 20px; }
  .why-cta-text h3 { font-size: 1.15rem; }
  .why-cta-btns { flex-direction: column; width: 100%; }
  .why-cta-btns .btn-primary,
  .why-cta-btns .btn-outline { width: 100%; justify-content: center; }
  /* Testimonials */
  .testimonials { padding: 60px 0; }
  .testi-card   { padding: 24px 18px; }
  .testi-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  /* Contact */
  .contact { padding: 60px 0; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .booking-card      { padding: 24px 18px; }
  .appt-cta-btns     { flex-direction: column; }
}

@media (max-width: 420px) {
  .hero-h1 { font-size: 1.75rem; }
  .hero-badge-tl { top: 8px; right: 8px; }
  .hero-badge-bl { bottom: 8px; left: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card      { padding: 18px 14px; }
  .about-stats   { gap: 16px; }
  .astat-num     { font-size: 1.6rem; }
  .hero-badge-tl, .hero-badge-bl { padding: 6px 10px; gap: 6px; }
  .badge-num     { font-size: 1rem; }
  .testi-social-proof { padding: 16px 18px; }
  .sec-h2        { font-size: 1.6rem; }
}

@media (hover: none) {
  .svc-card:hover,
  .why-card:hover,
  .testi-card:hover,
  .cinfo-card:hover { transform: none; }
}
