/* =============================================
   GOOGLE FONTS IMPORT
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* =============================================
      DESIGN TOKENS — PATHUMAI AESTHETICS
      ============================================= */
:root {
  /* FONT FAMILIES */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* FLUID TYPE SCALE */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* 4PX SPACING SYSTEM */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* BRAND COLORS — PATHUMAI PINK PALETTE */
  --color-pink: #E8578A;
  --color-pink-hover: #C9386A;
  --color-pink-active: #A82558;
  --color-pink-light: #F9E4ED;
  --color-pink-subtle: #FCF0F5;

  /* SURFACES */
  --color-bg: #FFFFFF;
  --color-surface: #FAFAFA;
  --color-surface-2: #F5F5F5;
  --color-divider: #E8E8E8;
  --color-border: #DEDEDE;

  /* TEXT */
  --color-text: #1A1A1A;
  --color-text-muted: #666666;
  --color-text-faint: #AAAAAA;
  --color-text-inverse: #FFFFFF;

  /* PRIMARY ACCENT = PINK */
  --color-primary: var(--color-pink);
  --color-primary-hover: var(--color-pink-hover);
  --color-primary-active: var(--color-pink-active);
  --color-primary-light: var(--color-pink-light);
  --color-primary-subtle: var(--color-pink-subtle);

  /* RADIUS */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* SHADOWS */
  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.06), 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 26, 26, 0.08), 0 2px 4px rgba(26, 26, 26, 0.04);
  --shadow-pink: 0 4px 20px rgba(232, 87, 138, 0.25);

  /* TRANSITIONS */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* CONTENT WIDTHS */
  --content-wide: 1300px;

  /* HEADER HEIGHT */
  --header-height: 100px;
}

/* =============================================
      BASE RESET
      ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
}

::selection {
  background: var(--color-pink-light);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =============================================
      CONTAINER
      ============================================= */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 768px) {
  .container {
    padding-inline: var(--space-4);
  }
}

/* =============================================
      SKIP LINK
      ============================================= */
.skip-link {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 1100;
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}


/* =============================================
   SITE HEADER
============================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-base),
    background-color var(--transition-base),
    backdrop-filter var(--transition-base),
    -webkit-backdrop-filter var(--transition-base);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
  height: var(--header-height);
  position: relative;
  z-index: 2;
}

/* =============================================
   LOGO
============================================= */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-image {
  width: auto;
  height: 90px;
  object-fit: contain;
  display: block;
}

/* =============================================
   DESKTOP NAV
============================================= */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
  background: none;
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
}

/* =============================================
   RIGHT CTA AREA
============================================= */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  justify-self: end;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast);
}

.header-phone:hover {
  color: var(--color-primary);
}

.header-phone i {
  font-size: 15px;
  color: var(--color-primary);
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.btn-book-now:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-pink);
  transform: translateY(-1px);
}

.btn-book-now:active {
  background-color: var(--color-primary-active);
  transform: translateY(0);
  box-shadow: none;
}

.btn-book-now i {
  font-size: 14px;
}

/* =============================================
   HAMBURGER
============================================= */
.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   MOBILE NAV
============================================= */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: 0 var(--space-4) var(--space-4);
  background: white;
  border-bottom: 1px solid rgba(232, 87, 138, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    visibility var(--transition-base);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 1rem;
  background: transparent;
  transition: color var(--transition-fast);
}

.mobile-nav-link i {
  width: 18px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 15px;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-primary);
  background: transparent;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
  color: var(--color-primary);
}

.mobile-nav-link.active {
  font-weight: 700;
}

.mobile-nav-link:focus-visible {
  outline: 2px solid rgba(232, 87, 138, 0.28);
  outline-offset: 2px;
  background: transparent;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--color-divider);
  margin: var(--space-2) 0;
}

.mobile-nav-cta {
  margin-top: var(--space-2);
  padding-top: var(--space-2);
}

.btn-book-now-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-book-now-mobile:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-pink);
}

.btn-book-now-mobile i {
  font-size: 15px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    grid-template-columns: 44px 1fr 44px;
    gap: var(--space-2);
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    justify-self: start;
  }

  .mobile-nav {
    display: flex;
  }

  .header-logo {
    justify-self: center;
  }

  .logo-image {
    height: 60px;
  }

  .header-cta {
    gap: 0;
  }

  .btn-book-now {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
  }

  .btn-book-now-text {
    display: none;
  }

  .btn-book-now i {
    font-size: 15px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: var(--space-1);
  }

  .logo-image {
    height: 60px;
  }

  .mobile-nav {
    padding: 0 var(--space-4) var(--space-4);
  }
}

/* =============================================
      GLOBAL UTILITY CLASSES
      (reuse across all pages for consistent theme)
      ============================================= */
.text-pink {
  color: var(--color-primary);
}

.bg-pink {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.bg-pink-light {
  background-color: var(--color-primary-light);
}

.bg-pink-subtle {
  background-color: var(--color-primary-subtle);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-pink);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: calc(var(--space-3) - 1px) calc(var(--space-8) - 1px);
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.btn-outline:hover {
  background-color: var(--color-primary-subtle);
}

.section {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

.divider {
  height: 1px;
  background: var(--color-divider);
  margin: 0;
}


.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: #e8578a;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #e8578a;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 700;
  line-height: 1.08;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section-subtext {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.72;
  color: #666666;
  margin: 0 0 0.9rem;
  max-width: 60ch;
}

/* =====================================================
   GLOBAL PAGE HEADER COMPONENT
===================================================== */

.page-header {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(260px, 36vw, 420px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #2b1c24;
}

/* page-specific image */
.page-header--services .page-header__bg {
  background-image: url('../images/page-banner.avif');
}

/* shared absolute layers */
.page-header__bg,
.page-header__overlay,
.page-header__tint,
.page-header__edge {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* background image layer */
.page-header__bg {
  z-index: 0;
  background-color: #2b1c24;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

/* dark overlay */
.page-header__overlay {
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(26, 26, 26, 0.72) 0%,
      rgba(26, 26, 26, 0.50) 55%,
      rgba(26, 26, 26, 0.22) 100%);
}

/* pink tint */
.page-header__tint {
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(232, 87, 138, 0.09) 0%,
      rgba(232, 87, 138, 0.04) 100%);
}

/* bottom accent edge */
.page-header__edge {
  top: auto;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--color-primary), transparent 60%);
}

/* content wrapper */
.page-header__content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-block: var(--space-16);
}

/* breadcrumb */
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-header__breadcrumb a:hover {
  color: var(--color-pink-light);
}

.page-header__breadcrumb .sep {
  color: rgba(255, 255, 255, 0.30);
  font-size: 10px;
}

.page-header__breadcrumb .current {
  color: var(--color-pink-light);
}

/* label */
.page-header__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(232, 87, 138, 0.20);
  border: 1px solid rgba(232, 87, 138, 0.45);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #ffd6e8;
  margin-bottom: var(--space-4);
}

.page-header__label i {
  font-size: 11px;
  color: #ffd6e8;
}

/* title */
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
  max-width: 16ch;
}

.page-header__title span {
  color: #ff7db6;
}

/* subtitle */
.page-header__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

/* divider */
.page-header__divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.page-header__divider-line {
  height: 1.5px;
  width: 56px;
  background: var(--color-primary);
  border-radius: 2px;
}

.page-header__divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.page-header__divider-line-sm {
  height: 1.5px;
  width: 24px;
  background: rgba(232, 87, 138, 0.38);
  border-radius: 2px;
}

/* responsive */
@media (max-width: 768px) {
  .page-header__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    max-width: 100%;
  }

  .page-header__subtitle {
    font-size: var(--text-sm);
  }

  .page-header__content {
    padding-block: var(--space-12);
  }
}

@media (max-width: 480px) {
  .page-header__title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .page-header__content {
    padding-block: var(--space-10);
  }
}

.services-intro-image {
  padding-block: clamp(2.75rem, 4.5vw, 5rem);
  background:
    radial-gradient(circle at top left, rgba(232, 87, 138, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcf0f5 100%);
  overflow: hidden;
}

.services-intro-image-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.25rem, 2.8vw, 2.5rem);
  align-items: center;
}

.services-intro-image-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(0rem, 1vw, 1rem);
}

.services-intro-image-content .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: #e8578a;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-intro-image-content .section-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #e8578a;
}

.services-intro-image-content .section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.services-intro-image-content .section-subtext {
  margin: 0;
  max-width: 58ch;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.78;
  color: #666666;
}

.services-intro-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.services-intro-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #ededed;
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.04);
}

.services-intro-point i {
  color: #e8578a;
  font-size: 0.88rem;
  margin-top: 0.16rem;
  flex-shrink: 0;
}

.services-intro-point span {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4f4f4f;
}

.services-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.services-intro-image-wrap {
  position: relative;
  align-self: stretch;
}

.services-intro-image-frame {
  position: relative;
  height: clamp(420px, 58vw, 620px);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(26, 26, 26, 0.08);
  background: #f7f7f7;
}

.services-intro-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(232, 87, 138, 0.12) 100%);
  z-index: 1;
  pointer-events: none;
}

.services-intro-image-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.01);
}

.services-intro-floating-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 87, 138, 0.14);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
  max-width: 280px;
}

.services-intro-floating-card i {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f9e4ed;
  color: #e8578a;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.services-intro-floating-card strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.1rem;
}

.services-intro-floating-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.45;
  color: #666666;
}

@media (max-width: 992px) {
  .services-intro-image-grid {
    grid-template-columns: 1fr;
  }

  .services-intro-image-content .section-title {
    max-width: 100%;
  }

  .services-intro-image-frame {
    height: clamp(320px, 75vw, 460px);
  }
}

@media (max-width: 640px) {
  .services-intro-image {
    padding-block: 2.5rem;
  }

  .services-intro-image-frame {
    height: 320px;
    border-radius: 1.2rem;
  }

  .services-intro-floating-card {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }

  .services-intro-actions .btn-primary,
  .services-intro-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}


.services-section {
  padding-block: clamp(3rem, 5vw, 5.5rem);
  background:
    radial-gradient(circle at top right, rgba(232, 87, 138, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fcf0f5 100%);
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-header .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: #e8578a;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-header .section-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #e8578a;
}

.services-header .section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.services-header .section-subtext {
  margin: 1rem 0 0;
  max-width: 60ch;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.72;
  color: #666666;
}

.services-grid-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-image-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 1.4rem;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.04);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.service-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.08);
  border-color: rgba(232, 87, 138, 0.18);
}

.service-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f7f7f7;
}

.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 35%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.02);
}

.service-image-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #e8578a;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem 1.25rem 1.35rem;
  flex: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #f9e4ed;
  color: #e8578a;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.service-card-body h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}

.service-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666666;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.service-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4f4f4f;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #e8578a;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #f0f0f0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #e8578a;
  text-decoration: none;
}

.service-link i {
  font-size: 0.8rem;
  transition: transform 200ms ease;
}

.service-image-card:hover .service-link i {
  transform: translateX(3px);
}

.service-cta-card {
  background: linear-gradient(145deg, #e8578a 0, #c9386a 100%);
  border: none;
  color: #ffffff;
  padding: 1.4rem;
  justify-content: center;
}

.service-cta-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-cta-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.9vw, 2.1rem);
  line-height: 1.15;
  color: #ffffff;
}

.service-cta-card p {
  color: rgba(255, 255, 255, 0.85);
}

.service-cta-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.service-cta-stats div {
  padding: 0.85rem 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.service-cta-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.service-cta-stats span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}

.service-cta-btn {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  background: #ffffff !important;
  color: #e8578a !important;
}

.service-cta-btn:hover {
  background: #fff0f5 !important;
}

@media (max-width: 992px) {
  .services-grid-image {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid-image {
    grid-template-columns: 1fr;
  }

  .services-header .section-title {
    max-width: 100%;
  }

  .service-image-wrap {
    height: 200px;
  }
}

/* =============================================
   FAQ SECTION — 2-COLUMN ACCORDION
============================================= */

.faq-section {
  padding-block: clamp(3rem, 5vw, 5.5rem);
}

/* ── Header ── */
.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header .section-title {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.faq-header .section-subtext {
  max-width: 60ch;
}

/* ── 2-Column grid ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* ── Individual item ── */
.faq-item {
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 1.15rem;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.04);
  overflow: hidden;
  transition:
    border-color 150ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
}

.faq-item.active {
  border-color: rgba(232, 87, 138, 0.28);
  box-shadow:
    0 0 0 3px rgba(232, 87, 138, 0.06),
    0 10px 28px rgba(232, 87, 138, 0.08);
}

/* ── Question button ── */
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question:hover {
  background: #fcf0f5;
}

.faq-item.active .faq-question {
  background: #fcf0f5;
}

.faq-question span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-question i {
  color: #e8578a;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ── Answer ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Bottom CTA strip ── */
.faq-cta-strip {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fcf0f5 100%);
  border: 1px solid rgba(232, 87, 138, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.06);
}

.faq-cta-strip p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

@media (max-width: 640px) {
  .faq-question {
    padding: 1rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
  }

  .faq-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
  }

  .faq-cta-strip .btn-primary {
    width: 100%;
    justify-content: center;
  }
}


.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #128C7E;
  box-shadow: 0 18px 34px rgba(18, 140, 126, 0.34);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.whatsapp-float i {
  line-height: 1;
}

@media (max-width: 768px) {
  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    font-size: 27px;
  }
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7db6 0%, #e8578a 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(232, 87, 138, 0.28);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #e8578a 0%, #d93d76 100%);
  box-shadow: 0 18px 34px rgba(232, 87, 138, 0.34);
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.back-to-top i {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .back-to-top i {
    font-size: 16px;
  }
}

/* =============================================
   FLOATING CTA ABOVE FOOTER
============================================= */

.footer-cta-wrap {
  position: relative;
  z-index: 5;
  margin-bottom: -42px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.footer-cta {
  pointer-events: auto;
  max-width: 1300px;
  width: calc(100% - 30px);
  background: #e8578a;
  border-radius: 24px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 3.1rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  max-width: 22ch;
}

.footer-cta-text p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  max-width: 580px;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer-cta-actions .btn-primary {
  background: #ffffff;
  color: #e8578a;
  border: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 30px;
}

.footer-cta-actions .btn-primary:hover {
  background: #fff0f5;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
  color: #e8578a;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-cta-link i {
  font-size: 0.82rem;
  transition: transform 200ms ease;
}

.footer-cta-link:hover {
  color: #ffffff;
}

.footer-cta-link:hover i {
  transform: translateX(3px);
}

/* =============================================
   FOOTER
============================================= */

.footer {
  background: #0b0d10;
  color: #f5f5f5;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 58px 64px 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.95fr 1.05fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-about-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
  margin: 0;
  max-width: 34ch;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social:hover {
  background: #e8578a;
  border-color: #e8578a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-links li a {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms ease, gap 200ms ease;
}

.footer-links li a::before {
  content: '›';
  font-size: 16px;
  color: #e8578a;
  line-height: 1;
}

.footer-links li a:hover {
  color: #f3b8cf;
  gap: 10px;
}

/* Contact */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list li i {
  color: #e8578a;
  font-size: 0.98rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}

.footer-contact-list li span,
.footer-contact-list li a {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  text-decoration: none;
}

.footer-contact-list li a:hover {
  color: #e8578a;
}

/* Bottom */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 64px 24px;
  margin-top: 10px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-cta {
    width: calc(100% - 48px);
    padding: 26px 28px;
  }

  .footer-main {
    padding: 48px 36px 36px;
  }

  .footer-bottom {
    padding: 16px 36px 20px;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-cta-wrap {
    margin-bottom: -30px;
  }

  .footer-cta {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-cta-actions .btn-primary,
  .footer-cta-link {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding-top: 56px;
  }

  .footer-main {
    padding: 32px 24px 28px;
  }

  .footer-bottom {
    padding: 14px 24px 18px;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding: 28px 16px 24px;
  }

  .footer-bottom {
    padding: 12px 16px 16px;
  }
}