/* ==========================================================================
   Page-specific components
   ========================================================================== */

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.38rem 0.95rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(235, 233, 244, 0.75) 0%, rgba(247, 246, 252, 0.85) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--accent);
  font-size: clamp(0.76rem, 2.2vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 1.25rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 2px 8px rgba(13, 12, 61, 0.04);
  line-height: 1.25;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
  display: inline-block;
}
.hero-badge-text {
  display: inline-block;
  white-space: nowrap;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 2rem + 2.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-copy .hero-lead {
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 400;
  margin-bottom: 0.85rem;
  max-width: 54ch;
}
.hero-copy .hero-sub {
  font-size: clamp(0.98rem, 0.95rem + 0.15vw, 1.08rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.hero-actions .btn {
  white-space: nowrap;
}
.hero-stats {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stats-label {
  font-size: var(--step-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 0.25rem;
}
.hero-stats .pill {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  padding: 0.35em 0.85em;
  border-radius: var(--radius-pill);
}

/* Hero portrait — clean, professional presentation with ambient backing */
.hero-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero-portrait-frame {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 24px 48px -12px rgba(13, 12, 61, 0.16),
    0 12px 24px -8px rgba(13, 12, 61, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  background: #fff;
  position: relative;
}
.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-portrait-caption {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.hero-portrait-caption strong { color: var(--ink); font-weight: 600; }
.hero-portrait-caption .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(36, 106, 72, 0.10);
  border: 1px solid rgba(36, 106, 72, 0.22);
  color: #1a5638;
  padding: 0.2em 0.65em;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-badge { margin-inline: auto; }
  .hero-copy .hero-lead, .hero-copy .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-portrait-frame { max-width: 310px; margin-inline: auto; }
}

@media (max-width: 400px) {
  .hero-badge {
    padding: 0.35rem 0.72rem;
    gap: 7px;
    font-size: 0.73rem;
  }
}

/* ---- Trust / Guarantee Strip ---- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.25rem;
  justify-content: center;
  align-items: center;
  padding: 1.15rem 2.5rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2.25rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-soft);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-strip {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
    margin-bottom: 2rem;
    padding: 15px 18px;
    gap: 10px;
    height: auto;
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 246, 253, 0.78) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(13, 12, 61, 0.08);
    box-shadow:
      0 8px 22px -4px rgba(13, 12, 61, 0.06),
      0 2px 6px rgba(13, 12, 61, 0.02),
      inset 0 1px 1.5px rgba(255, 255, 255, 0.95);
  }

  .trust-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    column-gap: 10px;
    align-items: start;
    width: 100%;
    text-align: left;
  }

  .trust-item svg {
    width: 15px;
    height: 15px;
    color: var(--emerald);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .trust-item span {
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.42;
    color: var(--ink);
    letter-spacing: 0.005em;
  }
}

/* ---- Philosophy / Reflective panel ---- */
.reflective-panel {
  padding: clamp(2rem, 5vw, 3.5rem);
}
.philosophy-quote-card {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.1rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
}
.philosophy-quote em {
  font-style: italic;
  color: var(--accent);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}
@media (max-width: 680px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}
.philosophy-col {
  padding: 1.5rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.philosophy-col h4 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.philosophy-col p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ---- Section heading block ---- */
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.75rem; position: relative; }
.section-head h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin-bottom: 0.75rem;
}
.section-head.center h2::before { margin-inline: auto; }
.section-head p { margin-top: 0.75rem; font-size: 1rem; }

/* ---- Specialty grid ---- */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
@media (max-width: 940px) { .specialty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .specialty-grid { grid-template-columns: 1fr; } }

.specialty-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 2.5vw, 1.85rem);
}
.specialty-card-top { margin-bottom: 1.25rem; }
.icon-badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(71, 71, 117, 0.10);
  border: 1px solid var(--glass-border);
  margin-bottom: 1rem;
}
.specialty-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
}
.specialty-card p { font-size: 0.92rem; line-height: 1.6; color: var(--text-muted); }
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.55em 1.1em;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(13, 12, 61, 0.18);
  transition: transform 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft), background 0.25s;
}
.card-cta-arrow { transition: transform 0.25s var(--ease-soft); }
.card-cta:hover { transform: translateY(-2px); background: #000; box-shadow: 0 8px 20px rgba(13, 12, 61, 0.24); }
.card-cta:hover .card-cta-arrow { transform: translateX(3px); }
.card-cta:focus-visible { outline: 2px solid var(--accent-hover); outline-offset: 3px; }

/* ---- CTA banner ---- */
.cta-banner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(235, 233, 245, 0.7) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.cta-banner-top {
  display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
}
.cta-banner-top > div { text-align: left; }
.cta-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: var(--shadow-glass);
}
.panel-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid #fff;
  box-shadow: var(--shadow-glass);
}
.cta-banner h3 { margin-bottom: 0.5rem; font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); }

/* ---- Booking Page Roadmap & Cards ---- */
/* ---- Booking Page Single Focused Composition ---- */
/* ---- Booking Page Single Focused Glass Composition ---- */
.booking-single-card {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 3.75rem) clamp(1.75rem, 4vw, 3.25rem);
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.88);
  outline: 1px solid rgba(13, 12, 61, 0.035);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.82) 0%, rgba(246, 248, 252, 0.68) 52%, rgba(242, 248, 244, 0.60) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 24px 48px -12px rgba(13, 12, 61, 0.05),
    0 6px 20px -4px rgba(71, 71, 117, 0.04),
    0 2px 6px rgba(13, 12, 61, 0.02),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}

.booking-single-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), rgba(36, 106, 72, 0.2), rgba(255, 255, 255, 0.9), transparent);
}

.booking-single-content {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.booking-single-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: var(--ink);
  margin-top: 0.45rem;
  line-height: 1.25;
}

.booking-single-content p.reveal-text {
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0.9rem auto 2rem;
  max-width: 48ch;
}

.booking-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Lightweight Frosted Glass Connect Me Button with Emerald Accent */
.btn-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.92rem 2.6rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(150deg, rgba(236, 247, 241, 0.88) 0%, rgba(255, 255, 255, 0.92) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(36, 106, 72, 0.32);
  color: #1a5638 !important;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow:
    0 8px 22px -4px rgba(36, 106, 72, 0.14),
    0 2px 6px rgba(13, 12, 61, 0.03),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.95);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
  min-height: 52px;
}

.btn-connect:hover {
  will-change: transform;
  transform: translateY(-2px);
  background: linear-gradient(150deg, rgba(226, 243, 233, 0.96) 0%, rgba(252, 254, 253, 0.98) 100%);
  border-color: rgba(36, 106, 72, 0.50);
  color: #14492e !important;
  box-shadow:
    0 12px 28px -4px rgba(36, 106, 72, 0.20),
    0 4px 10px rgba(13, 12, 61, 0.05),
    inset 0 1px 1.5px #ffffff;
}

.btn-connect:active {
  transform: translateY(1px);
  box-shadow: 0 4px 14px -2px rgba(36, 106, 72, 0.16);
  transition-duration: 0.08s;
}

.btn-connect:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(36, 106, 72, 0.3),
    0 8px 24px -4px rgba(36, 106, 72, 0.2);
}

.btn-connect svg {
  width: 20px;
  height: 20px;
  fill: #246a48;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), fill 0.22s ease;
}

.btn-connect:hover svg {
  transform: scale(1.05);
  fill: #1a5638;
}

.btn-connect .arrow {
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
  color: #246a48;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), color 0.22s ease;
}

.btn-connect:hover .arrow {
  transform: translateX(3px);
  color: #1a5638;
}

.reassurance-note {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .booking-single-card {
    padding: 2.25rem 1.25rem 2.25rem;
    border-radius: 24px;
  }
  .btn-connect {
    padding: 0.88rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    gap: 0.65rem;
  }
}

.booking-path-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 900px;
  margin-inline: auto;
}
@media (max-width: 780px) {
  .booking-path-grid { grid-template-columns: 1fr; }
}

.booking-path-card {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--glass-border);
}
.booking-path-card.featured {
  background: linear-gradient(150deg, rgba(255,255,255,0.92) 0%, rgba(240, 238, 248, 0.85) 100%);
  border: 1.5px solid rgba(71, 71, 117, 0.25);
  box-shadow: var(--shadow-soft);
}
.booking-path-card h3 {
  font-size: 1.45rem;
  margin-top: 0.4rem;
  margin-bottom: 0.75rem;
}
.booking-path-card p {
  font-size: 0.94rem;
  line-height: 1.6;
}
.booking-context-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.35em 0.85em;
  border-radius: var(--radius-pill);
  background: var(--mint-soft);
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  background: #25D366;
  border: 1px solid #20ba5a;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}
.btn-whatsapp:hover {
  background: #1eb857;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* 3-Step Roadmap */
.roadmap-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
@media (max-width: 680px) {
  .roadmap-strip { grid-template-columns: 1fr; }
}
.roadmap-step {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--glass-border);
}
.roadmap-step-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.roadmap-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.roadmap-step p {
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ---- Page hero (inner pages) ---- */
.page-hero { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.page-hero .eyebrow { justify-content: center; display: flex; }
.page-hero h1 { margin-top: 0.6rem; }
.page-hero p.lede { margin-inline: auto; margin-top: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.55rem; font-size: 0.85rem; font-weight: 500; color: var(--text-muted); margin-bottom: 1.3rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

/* ---- About page ---- */
.about-section { padding-top: clamp(3rem, 6vw, 5rem); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.about-portrait {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-portrait .frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--glass-border);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* ---- About Page Profile Details Block ---- */
.portrait-details {
  width: 100%;
  max-width: 380px;
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
}

.portrait-header {
  margin-bottom: 1.15rem;
  padding-left: 22px; /* Exactly aligns with credential text column (12px + 10px gap) */
}

.portrait-name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.portrait-role {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.portrait-credential-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.credential-item {
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: 10px; /* 12px + 10px = 22px text start position */
  align-items: start;
  width: 100%;
}

.credential-bullet {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 1.55em;
  user-select: none;
}

.credential-bullet svg {
  display: block;
}

.credential-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-soft);
  word-break: normal;
  overflow-wrap: break-word;
}

.credential-text strong {
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .about-portrait {
    position: static;
    top: auto;
    align-items: center;
    margin-inline: auto;
  }
  .about-portrait .frame {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .portrait-details {
    max-width: 320px;
    margin-inline: auto;
    text-align: left;
  }
}
.about-body p { margin-bottom: 1.2rem; line-height: 1.7; font-size: 1.02rem; }
/* ---- Verified Credentials Expandable Section ---- */
.credentials-section-wrap {
  margin-top: 2.25rem;
  margin-bottom: 2rem;
}

.verify-credentials-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 560px;
  padding: 1.05rem 1.35rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 246, 252, 0.90) 100%);
  border: 1px solid rgba(71, 71, 117, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(13, 12, 61, 0.05), 0 1px 3px rgba(13, 12, 61, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.28s var(--ease-soft);
  position: relative;
  overflow: hidden;
}

.verify-credentials-card:hover {
  border-color: rgba(71, 71, 117, 0.32);
  box-shadow: 0 8px 26px rgba(13, 12, 61, 0.08), 0 2px 6px rgba(13, 12, 61, 0.04);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff 0%, rgba(245, 244, 252, 0.95) 100%);
}

.verify-credentials-card:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(71, 71, 117, 0.22), 0 8px 24px rgba(13, 12, 61, 0.08);
}

.verify-credentials-card.is-active {
  border-color: rgba(36, 106, 72, 0.32);
  background: linear-gradient(135deg, #ffffff 0%, rgba(242, 248, 244, 0.75) 100%);
}

.verify-card-lead {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.verify-badge-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--emerald-soft, #eaf4ee);
  border: 1px solid var(--emerald-border, rgba(36, 106, 72, 0.24));
  color: var(--emerald, #246a48);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-soft);
}

.verify-credentials-card:hover .verify-badge-emerald {
  transform: scale(1.06);
}

.verify-card-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.verify-card-title-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.verify-card-title {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.verify-card-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--emerald, #246a48);
  background: rgba(36, 106, 72, 0.09);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(36, 106, 72, 0.16);
  letter-spacing: 0.02em;
}

.verify-card-subtitle {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.verify-card-action {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  flex-shrink: 0;
  padding-left: 0.5rem;
}

.verify-action-status {
  white-space: nowrap;
}

.verify-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.verify-credentials-card[aria-expanded="true"] .verify-chevron {
  transform: rotate(180deg);
}

/* Collapsible Panel with smooth CSS Grid height transition */
.credentials-expandable-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              visibility 0.42s ease,
              margin 0.3s ease;
  margin-top: 0;
}

.credentials-expandable-panel.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  margin-top: 1.25rem;
}

.credentials-panel-content {
  min-height: 0;
  overflow: hidden;
}

.credentials-panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.95rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.credentials-panel-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-hide-credentials {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(71, 71, 117, 0.08);
  border: 1px solid rgba(71, 71, 117, 0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease-soft);
  font-family: inherit;
}

.btn-hide-credentials:hover {
  background: rgba(71, 71, 117, 0.15);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-hide-credentials:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(71, 71, 117, 0.2);
}

@media (max-width: 560px) {
  .verify-credentials-card {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }
  .verify-card-lead {
    gap: 0.75rem;
  }
  .verify-card-title {
    font-size: 0.96rem;
  }
  .verify-card-pill {
    display: none;
  }
  .verify-card-subtitle {
    font-size: 0.79rem;
    white-space: normal;
  }
  .verify-action-status {
    display: none;
  }
  .credentials-panel-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .btn-hide-credentials {
    align-self: flex-end;
  }
}

.certificate-gallery {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 1.25rem;
}
.certificate-item {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--glass-border);
  background: #fff;
  cursor: pointer;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.certificate-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.certificate-item img {
  height: 180px;
  width: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.3s;
}
.certificate-item:hover img {
  opacity: 0.94;
}
.certificate-item .cert-zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(13, 12, 61, 0.82);
  color: #fff;
  padding: 0.25em 0.65em;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3em;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.certificate-item:hover .cert-zoom-hint {
  opacity: 1;
}
.graduation-photo-wrap {
  position: relative;
  display: inline-block;
  margin-top: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.graduation-photo-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.graduation-photo {
  display: block;
  max-width: 100%;
  width: 440px;
  border-radius: var(--radius-md);
}
.graduation-photo-wrap .cert-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(13, 12, 61, 0.82);
  color: #fff;
  padding: 0.3em 0.75em;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .certificate-gallery { flex-direction: column; width: 100%; }
  .certificate-item { width: 100%; }
  .certificate-item img { height: auto; width: 100%; }
  .graduation-photo-wrap { width: 100%; }
}

/* ---- Services page detail rows ---- */
.service-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 3.5vw, 2.75rem);
  border-radius: var(--radius-lg);
}
@media (max-width: 820px) { .service-detail { grid-template-columns: 1fr; } }
.service-detail + .service-detail { margin-top: 2rem; }
.service-detail .tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.service-detail .helps-with {
  display: flex;
  flex-direction: column;
}
.service-detail .helps-with h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.service-detail ul.check-list { display: flex; flex-direction: column; gap: 0.65rem; }
.service-detail ul.check-list li {
  font-size: 0.94rem;
  color: var(--text-soft);
  display: flex;
  gap: 0.6rem;
  align-items: center;
  line-height: 1.5;
}
.service-detail ul.check-list li .check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--emerald-soft);
  color: var(--emerald);
  border: 1px solid var(--emerald-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.service-detail .gain-line {
  font-size: 0.94rem;
  color: var(--text-soft);
  margin-top: 1.25rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  line-height: 1.55;
}
.service-detail .gain-line strong { color: var(--ink); }
.service-photo-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}
.service-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 1.6em;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(13, 12, 61, 0.22);
  transition: transform 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft), background 0.25s;
  align-self: flex-start;
}
.btn-book:hover { background: #000; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(13, 12, 61, 0.3); }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 0.25rem;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover h4 { color: var(--accent); }
.faq-q h4 {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.faq-toggle-icon,
.faq-q .chev {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--ink);
  border: 1px solid rgba(13, 12, 61, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1;
  transition: background-color 0.25s var(--ease-soft), color 0.25s var(--ease-soft), border-color 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}
.faq-svg {
  width: 16px;
  height: 16px;
  display: block;
  overflow: visible;
  pointer-events: none;
}
.faq-line-v {
  transform-origin: 8px 8px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}
.faq-line-h {
  transform-origin: 8px 8px;
}
.faq-q:hover .faq-toggle-icon,
.faq-q:hover .chev {
  background: #dedcee;
  color: var(--ink);
  border-color: rgba(13, 12, 61, 0.16);
}
.faq-item.is-open .faq-toggle-icon,
.faq-item.is-open .chev {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-item.is-open .faq-q:hover .faq-toggle-icon,
.faq-item.is-open .faq-q:hover .chev {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
.faq-item.is-open .faq-line-v {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-soft); }
.faq-a p { padding-bottom: 1.35rem; padding-right: 1.5rem; line-height: 1.65; }

/* ---- Orientation Form header (editorial marble banner) ---- */
.orientation-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  margin: calc(-1 * clamp(1.5rem, 3vw, 2.5rem)) calc(-1 * clamp(1.5rem, 3vw, 2.5rem)) clamp(1.75rem, 3.5vw, 2.5rem);
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 1px solid var(--glass-border);
}
.orientation-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 140% at 12% 12%, rgba(255,255,255,0.95), transparent 55%),
    radial-gradient(90% 110% at 88% 8%, rgba(134,134,172,0.2), transparent 60%),
    radial-gradient(100% 100% at 78% 92%, rgba(224,224,236,0.5), transparent 55%),
    linear-gradient(150deg, #fcfcfd 0%, #f6f5f9 45%, #eeeef4 100%);
}
.orientation-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.orientation-subtitle {
  margin: clamp(0.75rem, 1.5vw, 1.1rem) auto 0;
  max-width: 44ch;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-soft);
}
.orientation-note {
  margin: 0.75rem auto 0;
  max-width: 34rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.orientation-note strong { font-style: normal; color: var(--ink); }

@media (max-width: 600px) {
  .orientation-header { border-radius: var(--radius-md) var(--radius-md) 0 0; }
}

/* ---- Contact Success Modal Overlay ---- */
.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(13, 12, 61, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.38s ease;
}

.contact-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-card {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: clamp(2.25rem, 4.5vw, 3rem) clamp(1.75rem, 4.5vw, 2.5rem);
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  outline: 1px solid rgba(13, 12, 61, 0.04);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 248, 253, 0.90) 50%, rgba(242, 248, 244, 0.88) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 24px 60px -12px rgba(13, 12, 61, 0.18),
    0 8px 24px -4px rgba(36, 106, 72, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.95);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.38s ease;
}

.contact-modal-backdrop.is-active .contact-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(234, 244, 238, 0.95);
  border: 1.5px solid rgba(36, 106, 72, 0.28);
  color: #246a48;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 18px rgba(36, 106, 72, 0.12);
}

.contact-modal-icon svg {
  display: block;
}

.contact-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.contact-modal-desc {
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 1.6rem;
}

.contact-modal-redirect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: rgba(36, 106, 72, 0.08);
  border: 1px solid rgba(36, 106, 72, 0.22);
  color: #1a5638;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.redirect-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(36, 106, 72, 0.25);
  border-top-color: #246a48;
  border-radius: 50%;
  animation: redirectSpin 0.75s linear infinite;
}

@keyframes redirectSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .redirect-spinner { animation: none; border-color: #246a48; }
  .contact-modal-card { transition: none !important; transform: none !important; }
}

@media (max-width: 480px) {
  .contact-modal-card {
    padding: 2rem 1.35rem 2.25rem;
    max-width: calc(100vw - 2rem);
    border-radius: 24px;
  }
}

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form-card, .contact-info-card { display: flex; flex-direction: column; }
.contact-form-card form { display: flex; flex-direction: column; }
.contact-info-card {
  position: sticky;
  top: calc(var(--header-h) + 15px);
  justify-content: flex-start;
}
@media (max-width: 880px) {
  .contact-info-card { position: static; }
}
.contact-info-card .btn { margin-top: 1.5rem; }
.contact-info-card .info-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--glass-border);
}
.contact-info-card .info-row:last-child { border-bottom: none; }
.contact-whatsapp-quick {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-md);
  text-align: center;
}
.contact-whatsapp-quick p {
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

/* ---- Visually Hidden Utility for A11y ---- */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---- Required Field Indicator ---- */
.required-star {
  color: #d32f2f;
  margin-left: 0.22rem;
  font-weight: 600;
  font-size: 0.95em;
  display: inline-block;
  line-height: 1;
}

/* ---- Field Header & Availability Badge ---- */
.field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}
.field-header label {
  margin-bottom: 0;
}
.slot-availability-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(42, 39, 122, 0.05);
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(42, 39, 122, 0.12);
  line-height: 1.3;
}
.slot-availability-note svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

/* ---- Premium Time Slot Selector ---- */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 3px rgba(13, 12, 61, 0.03);
  min-height: 46px;
}
.custom-select-trigger:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(42, 39, 122, 0.22);
}
.custom-select-trigger:focus-visible,
.custom-select-trigger.is-open {
  outline: none;
  border-color: var(--accent-hover);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(42, 39, 122, 0.12);
}
.custom-select-trigger.has-value {
  color: var(--ink);
  font-weight: 500;
}
.custom-select-icon {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
}
.custom-select-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease-soft);
  flex-shrink: 0;
}
.custom-select-trigger.is-open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(13, 12, 61, 0.12), 0 2px 6px rgba(13, 12, 61, 0.04);
  list-style: none;
  padding: 0.35rem;
  margin: 0;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  max-height: 260px;
  overflow-y: auto;
}
.custom-select-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.custom-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  color: var(--ink);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  user-select: none;
}
.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: rgba(42, 39, 122, 0.06);
  color: var(--accent);
  outline: none;
}
.custom-select-option.is-selected {
  background: rgba(42, 39, 122, 0.09);
  color: var(--accent);
  font-weight: 600;
}
.custom-select-option .opt-check {
  display: none;
  color: var(--accent);
  flex-shrink: 0;
}
.custom-select-option.is-selected .opt-check {
  display: inline-block;
}

/* ---- Subtle Inline Field Validation ---- */
.field.has-error input,
.field.has-error textarea,
.field.has-error select,
.field.has-error .custom-select-trigger {
  border-color: #d32f2f !important;
  background-color: rgba(255, 245, 245, 0.9) !important;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12) !important;
}
.field-error {
  display: none;
  font-size: 0.82rem;
  color: #b71c1c;
  margin-top: 0.35rem;
  line-height: 1.4;
  font-weight: 500;
}
.field.has-error .field-error {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  animation: fieldErrFadeIn 0.2s ease-out;
}
.field-error-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
@keyframes fieldErrFadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .field-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .slot-availability-note {
    font-size: 0.74rem;
    padding: 0.18rem 0.55rem;
  }
  .custom-select-dropdown {
    max-height: 230px;
  }
}

/* Honeypot anti-spam field: invisible to sighted & screen-reader users, off visual flow */
.contact-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
  left: -9999px !important;
}


