/* =============================================
   DESIGN TOKENS — identical to home page
============================================= */
:root {
  --rose: #f2a7b8;
  --rose-light: #fad7df;
  --rose-deep: #c4627a;
  --peach: #f5c5a3;
  --peach-light: #fae8d8;
  --lav: #c5bce8;
  --lav-light: #eae7f8;
  --sage: #9ecba0;
  --sage-light: #daf0db;
  --gold: #e8b86d;
  --gold-light: #faf0d7;
  --ivory: #fafaf6;
  --ivory-2: #f4f1ea;
  --charcoal: #2e2a35;
  --charcoal-2: #3d3847;
  --muted: #8a8098;
  --white: #ffffff;

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-heading: "DM Serif Display", Georgia, serif;
  --ff-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-rose: 0 20px 60px rgba(194, 98, 122, 0.18);
  --shadow-soft: 0 8px 40px rgba(46, 42, 53, 0.1);
  --shadow-card: 0 2px 20px rgba(46, 42, 53, 0.07);
}

/* =============================================
   RESET & BASE
============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
}
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--rose-deep), var(--peach));
  display: block;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-deep), #d4426a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-rose {
  background: var(--rose-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(194, 98, 122, 0.3);
  border-radius: 30px;
}
.btn-rose:hover {
  background: #b0566d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(194, 98, 122, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(46, 42, 53, 0.2);
  border-radius: 25px;
}
.btn-outline:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  border-radius: 25px;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* petal divider */
.petal-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.petal-divider::before,
.petal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rose),
    var(--peach),
    transparent
  );
  opacity: 0.5;
}
.petal-divider span {
  color: var(--rose-deep);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-l {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-l.in {
  opacity: 1;
  transform: translateX(0);
}
.reveal-r {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-r.in {
  opacity: 1;
  transform: translateX(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}
.d6 {
  transition-delay: 0.6s;
}

/* =============================================
   SCROLL PROGRESS
============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--rose-deep),
    var(--peach),
    var(--rose-deep)
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  z-index: 999;
  transition: width 0.1s;
  width: 0%;
}
@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* =============================================
   ANNOUNCEMENT STRIP
============================================= */
.strip {
  background: linear-gradient(
    90deg,
    var(--rose),
    var(--rose-deep),
    var(--rose-light)
  );
  background-size: 200% auto;
  animation: gradShift 6s ease infinite;
  padding: 0.52rem 0;
  overflow: hidden;
}

@keyframes gradShift {
  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.strip-t {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.strip-t:hover {
  animation-play-state: paused;
}

.si {
  font-family: var(--ff-b);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.95);
  white-space: nowrap;
  padding: 0 2.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sd {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =============================================
   NAVIGATION
============================================= */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 246, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(242, 167, 184, 0.15);
  transition: box-shadow 0.3s;
}
.nav-wrap.scrolled {
  box-shadow: 0 4px 40px rgba(46, 42, 53, 0.1);
  background: rgba(250, 250, 246, 0.97);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  text-decoration: none;
}
.logo-aica {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-aica span {
  color: var(--rose-deep);
}
.logo-tag {
  font-family: var(--ff-body);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links > li {
  position: relative;
}
.nav-links a,
.nav-links button {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal-2);
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  background: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links button:hover {
  color: var(--rose-deep);
  background: var(--rose-light);
}
.nav-links .active-link {
  color: var(--rose-deep);
  font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid rgba(242, 167, 184, 0.2);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(46, 42, 53, 0.12);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s var(--ease);
  z-index: 200;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.72rem;
  color: var(--charcoal-2);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.nav-dropdown a:hover {
  background: var(--rose-light);
  color: var(--rose-deep);
}
.nav-dropdown-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-phone {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}
.nav-phone:hover {
  color: var(--rose-deep);
}
.nav-phone-icon {
  width: 28px;
  height: 28px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  display: block;
  transition: 0.3s;
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-overlay.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-overlay a {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  transition: color 0.2s;
}
.mobile-overlay a:hover {
  color: var(--rose-deep);
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--charcoal);
  cursor: pointer;
}
.mob-phone-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.mob-phone-cta a.mob-book {
  background: var(--rose-deep);
  color: var(--white);
  padding: 0.75rem 2.5rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mob-phone-cta a.mob-phone {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

/* j-colors for icons */
.j1 {
  background: var(--rose-light);
}
.j2 {
  background: var(--peach-light);
}
.j3 {
  background: var(--lav-light);
}
.j4 {
  background: var(--gold-light);
}
.j5 {
  background: var(--sage-light);
}
.j6 {
  background: var(--peach-light);
}
.j7 {
  background: var(--rose-light);
}

/* =============================================
   PAGE HERO (services-specific)
============================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  padding: 7rem 0 5rem;
  min-height: 52vh;
  display: flex;
  align-items: center;
}
/* blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.blob-1 {
  width: 520px;
  height: 520px;
  background: var(--rose-light);
  top: -100px;
  right: -80px;
  opacity: 0.5;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob-2 {
  width: 340px;
  height: 340px;
  background: var(--peach-light);
  bottom: -60px;
  left: 10%;
  opacity: 0.4;
  animation: blobFloat 15s ease-in-out infinite reverse;
}
.blob-3 {
  width: 240px;
  height: 240px;
  background: var(--lav-light);
  top: 20%;
  left: -60px;
  opacity: 0.35;
  animation: blobFloat 10s ease-in-out infinite 3s;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 15px) scale(0.97);
  }
}

/* Paisley watermark */
.hero-watermark {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 580px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.hero-watermark svg {
  width: 100%;
  height: auto;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose-deep);
  opacity: 0.6;
}
.page-hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
.page-hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-deep), #e8567a, var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
  margin-bottom: 2rem;
}
.page-hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
.page-hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}
.ph-stat {
  text-align: center;
}
.ph-stat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
  display: block;
}
.ph-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}
.breadcrumb a {
  color: var(--rose-deep);
}
.breadcrumb span {
  opacity: 0.4;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   CATEGORY ANCHOR NAV
============================================= */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(194, 98, 122, 0.1);
  position: sticky;
  top: 62px;
  z-index: 90;
  box-shadow: 0 2px 20px rgba(46, 42, 53, 0.05);
}
.cat-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-nav-inner::-webkit-scrollbar {
  display: none;
}
.cat-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.cat-nav-item:hover {
  color: var(--rose-deep);
  border-bottom-color: rgba(194, 98, 122, 0.3);
}
.cat-nav-item.active {
  color: var(--rose-deep);
  border-bottom-color: var(--rose-deep);
  background: var(--rose-light);
}
.cat-nav-icon {
  font-size: 1rem;
}

/* =============================================
   SERVICE CATEGORIES SECTIONS
============================================= */
.services-page {
  padding: 5rem 0 2rem;
}

/* Category header */
.cat-section {
  padding: 4rem 0 3rem;
}
.cat-section:nth-child(even) {
  background: var(--ivory-2);
}
.cat-section:nth-child(odd) {
  background: var(--ivory);
}

/* Override for specific sections */
.cat-sec-baby {
  background: var(--rose-light) !important;
  background: linear-gradient(135deg, #fef0f3, var(--ivory)) !important;
}
.cat-sec-birthday {
  background: linear-gradient(
    135deg,
    var(--peach-light),
    var(--ivory)
  ) !important;
}
.cat-sec-corp {
  background: linear-gradient(
    135deg,
    var(--lav-light),
    var(--ivory)
  ) !important;
}
.cat-sec-ethnic {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--ivory)
  ) !important;
}
.cat-sec-special {
  background: linear-gradient(
    135deg,
    var(--sage-light),
    var(--ivory)
  ) !important;
}
.cat-sec-wedding {
  background: linear-gradient(
    135deg,
    var(--rose-light),
    var(--ivory)
  ) !important;
}

.cat-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.cat-number {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(194, 98, 122, 0.08);
  line-height: 1;
  user-select: none;
}

.cat-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.4rem;
  display: block;
}
.cat-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
}
.cat-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-deep), #e8567a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cat-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 680px;
  margin-top: 0.8rem;
}

/* Service cards grid */
.services-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.services-grid-page.two-col {
  grid-template-columns: repeat(2, 1fr);
}
.services-grid-page.four-col {
  grid-template-columns: repeat(4, 1fr);
}

/* Service card */
.svc-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-rose);
}
.svc-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.07);
}
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46, 42, 53, 0.65) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover .svc-card-overlay {
  opacity: 1;
}

/* Category badge */
.svc-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.24rem 0.8rem;
  border-radius: 20px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* Included badge */
.svc-incl {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  padding: 0.24rem 0.8rem;
  border-radius: 20px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: none;
}
.svc-card:hover .svc-incl {
  display: block;
}

.svc-card-body {
  padding: 1.4rem 1.6rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}
.svc-name {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.svc-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex: 1;
}
.svc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.svc-feat-tag {
  padding: 0.22rem 0.7rem;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--ivory-2);
  color: var(--charcoal-2);
}
.svc-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(194, 98, 122, 0.1);
}
.svc-price {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}
.svc-price strong {
  font-size: 0.95rem;
  color: var(--rose-deep);
  font-weight: 700;
}
.svc-enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  transition: gap 0.3s;
}
.svc-card:hover .svc-enquire {
  gap: 0.6rem;
}

/* FEATURED card (spans 2 cols) */
.svc-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.svc-card.featured .svc-card-img {
  height: 100%;
  min-height: 280px;
}
.svc-card.featured .svc-name {
  font-size: 1.5rem;
}
.svc-card.featured .svc-desc {
  font-size: 0.88rem;
}

@media (max-width: 768px) {

  /* 1. Make all cards full width */
  .services-grid-page {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* 2. Force ALL cards to stack */
  .svc-card {
    display: flex !important;
    flex-direction: column !important;
  }

  /* 3. Kill featured grid layout */
  .svc-card.featured {
    display: flex !important;
    flex-direction: column !important;
    grid-column: span 1 !important;
  }

  /* 4. Image on top */
  .svc-card-img {
    width: 100% !important;
    height: 220px !important;
  }

  /* 5. Content below */
  .svc-card-body {
    width: 100% !important;
  }
}



/* =============================================
   PROCESS MINI STRIP (between categories)
============================================= */
.process-strip {
  background: var(--charcoal);
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
}
.process-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(194, 98, 122, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(232, 184, 109, 0.08) 0%,
      transparent 60%
    );
}
.ps-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.ps-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
  min-width: 160px;
}
.ps-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-deep);
  /* opacity: 0.35; */
  line-height: 1;
  flex-shrink: 0;
}
.ps-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.ps-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.1rem;
}
.ps-arrow {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .ps-arrow {
    display: none;
  }
  .ps-item {
    min-width: 120px;
  }
}

/* =============================================
   WHY CHOOSE STRIP
============================================= */
.why-strip {
  padding: 6rem 0;
  background: var(--sage-light);
}
.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-strip-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-strip-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rose);
  border-radius: 2px;
  transform: scaleY(0);
  transition: transform 0.3s var(--ease);
}
.why-strip-card:hover::before {
  transform: scaleY(1);
}
.why-strip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-rose);
}
.wsc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.wsc-title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.wsc-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   PACKAGES / PRICING TEASER
============================================= */
.packages {
  padding: 6rem 0;
  background: var(--ivory);
}
.packages-header {
  text-align: center;
  margin-bottom: 4rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.pkg-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.pkg-card.popular {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(46, 42, 53, 0.25);
  transform: scale(1.03);
}
.pkg-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}
.pkg-popular-tag {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: var(--rose-deep);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}
.pkg-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.pkg-name {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.pkg-card.popular .pkg-name {
  color: var(--white);
}
.pkg-tagline {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.pkg-card.popular .pkg-tagline {
  color: rgba(255, 255, 255, 0.5);
}
.pkg-price {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pkg-card.popular .pkg-price {
  color: var(--gold);
}
.pkg-price span {
  font-size: 1rem;
  font-weight: 400;
}
.pkg-features {
  flex: 1;
  margin-bottom: 2rem;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--charcoal-2);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(46, 42, 53, 0.06);
}
.pkg-features li:last-child {
  border-bottom: none;
}
.pkg-card.popular .pkg-features li {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
}
.pkg-check {
  color: var(--sage);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pkg-card.popular .pkg-check {
  color: var(--gold);
}
.pkg-cta {
  width: 100%;
  padding: 0.85rem;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rose-deep);
  color: var(--white);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(194, 98, 122, 0.3);
}
.pkg-cta:hover {
  background: #b0566d;
  transform: translateY(-2px);
}
.pkg-card.popular .pkg-cta {
  background: var(--rose-deep);
  box-shadow: 0 4px 20px rgba(194, 98, 122, 0.5);
}

/* =============================================
   TESTIMONIAL MINI
============================================= */
.testi-mini {
  padding: 5rem 0;
  background: var(--peach-light);
}
.testi-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.tm-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.3s var(--ease);
}
.tm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.tm-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--rose-light);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  opacity: 0.8;
}
.tm-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.85rem;
}
.tm-text {
  font-family: var(--ff-heading);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--charcoal-2);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.tm-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.tm-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.tm-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
}
.tm-event {
  font-size: 0.67rem;
  color: var(--rose-deep);
  font-weight: 500;
}

/* =============================================
   CTA BAND
============================================= */
.cta-band {
  padding: 7rem 0;
  background: var(--rose-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(194, 98, 122, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(245, 197, 163, 0.2) 0%,
      transparent 50%
    );
}
.bokeh {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bok-1 {
  width: 200px;
  height: 200px;
  background: rgba(194, 98, 122, 0.07);
  top: -40px;
  left: 5%;
}
.bok-2 {
  width: 140px;
  height: 140px;
  background: rgba(245, 197, 163, 0.12);
  bottom: 10%;
  right: 8%;
}
.bok-3 {
  width: 80px;
  height: 80px;
  background: rgba(197, 188, 232, 0.15);
  top: 20%;
  left: 30%;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-title em {
  font-style: italic;
  color: var(--rose-deep);
}
.cta-sub {
  font-size: 0.95rem;
  color: var(--charcoal-2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.75;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 25px;
}
.btn-call:hover {
  background: var(--charcoal-2);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--charcoal);
}
.footer-main {
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 4rem;
}
.footer-logo-wrap .logo-aica {
  color: var(--white);
}
.footer-logo-wrap .logo-tag {
  color: rgba(255, 255, 255, 0.35);
}
.footer-brand-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  margin: 1rem 0 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--rose-deep);
  color: var(--white);
  border-color: var(--rose-deep);
}
.footer-col-title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--rose);
}
.footer-links li {
  margin-bottom: 0.55rem;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--rose-light);
}
.footer-office {
  margin-bottom: 1.5rem;
}
.footer-office-city {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.footer-office-addr {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}
.footer-office-phone {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
  font-weight: 500;
}
.footer-office-phone a {
  color: inherit;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-copy strong {
  color: var(--rose-light);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--rose-light);
}

/* =============================================
   FLOATING ELEMENTS
============================================= */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.wa-tooltip {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waWag 4s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.3s;
}
.wa-btn:hover {
  transform: scale(1.1);
}
.wa-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.18);
    opacity: 0;
  }
}
@keyframes waWag {
  0%,
  100%,
  50% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-12deg);
  }
  20% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-6deg);
  }
  40% {
    transform: rotate(6deg);
  }
}

.book-tab {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(90deg) translateX(calc(100% - 32px));
  transform-origin: right center;
  background: var(--rose-deep);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 0 0 8px 8px;
  cursor: pointer;
  z-index: 400;
  transition: transform 0.3s;
  border: none;
  box-shadow: -2px 0 16px rgba(194, 98, 122, 0.3);
}
.book-tab:hover {
  transform: translateY(-50%) rotate(90deg) translateX(calc(100% - 44px));
}

/* Sticky mobile CTA bar */
.mob-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 450;
  background: var(--white);
  border-top: 1px solid rgba(194, 98, 122, 0.15);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 24px rgba(46, 42, 53, 0.12);
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  align-items: center;
}
.mob-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.mob-cta-bar .mob-cta-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}
.mob-cta-bar .mob-cta-call {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 2px 10px rgba(194, 98, 122, 0.3);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .services-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-page.four-col {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .packages-grid {
    gap: 1.2rem;
  }
  .pkg-card.popular {
    transform: scale(1);
  }
  .pkg-card.popular:hover {
    transform: translateY(-8px);
  }
}
@media (max-width: 900px) {
  .nav-links,
  .nav-phone {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid-page {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid-page.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-card.featured {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
  }
  .svc-card.featured .svc-card-img {
    height: 220px;
  }
  .why-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .testi-mini-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cat-header {
    gap: 1rem;
  }
  .cat-number {
    font-size: 3.5rem;
  }
  .mob-cta-bar {
    display: grid;
  }
  .wa-float {
    bottom: 5.5rem;
  }
  .book-tab {
    display: none;
  }
  .cat-nav {
    top: 56px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  .container,
  .container-sm {
    padding: 0 1rem;
  }
  .strip-links {
    display: none;
  }
  .strip {
    text-align: center;
  }
  .page-hero {
    padding: 5rem 0 3rem;
    min-height: auto;
  }
  .page-hero-h1 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }
  .page-hero-stats {
    gap: 1.5rem;
    justify-content: center;
  }
  .page-hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero-btns .btn {
    justify-content: center;
  }
  .cat-nav-item {
    padding: 0.8rem 1rem;
    font-size: 0.62rem;
  }
  .services-grid-page,
  .services-grid-page.two-col,
  .services-grid-page.four-col {
    grid-template-columns: 1fr;
  }
  .svc-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    border-radius: 14px;
  }
  .svc-card.featured {
    display: flex;
    flex-direction: column;
  }
  .svc-card .svc-card-img {
    height: 100%;
    min-height: 110px;
    border-radius: 0;
  }
  .svc-card .svc-card-body {
    padding: 1rem;
  }
  .svc-card .svc-icon {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  .svc-card .svc-name {
    font-size: 1rem;
  }
  .svc-card .svc-features {
    display: none;
  }
  .svc-card.featured {
    grid-template-columns: 1fr;
  }
  .svc-card.featured .svc-card-img {
    height: 200px;
  }
  .svc-card.featured .svc-features {
    display: flex;
  }
  .why-strip {
    padding: 4rem 0;
  }
  .why-strip-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testi-mini-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-main {
    padding: 3.5rem 0 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .footer-bottom {
    padding-bottom: 5rem;
  }
  .cta-band {
    padding: 4rem 0;
  }
  .cta-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .btn-wa,
  .btn-call {
    justify-content: center;
  }
  .cat-header {
    grid-template-columns: 1fr;
  }
  .cat-number {
    display: none;
  }
  .mob-cta-bar {
    padding: 0.6rem 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
@media (max-width: 400px) {
  .page-hero-h1 {
    font-size: 1.9rem;
  }
}
@media (hover: none) {
  .svc-card:hover {
    transform: none;
    box-shadow: var(--shadow-card);
  }
  .btn:hover {
    transform: none;
  }
  .btn-rose:hover {
    background: var(--rose-deep);
  }
}
a,
button {
  -webkit-tap-highlight-color: rgba(194, 98, 122, 0.15);
}
@media (max-width: 900px) {
  .btn {
    min-height: 48px;
    margin-top: 8px;
  }
  .form-ctrl {
    font-size: 16px;
    min-height: 48px;
  }
}
