/**
 * HT Mega 2025 — Hero Widget Styles
 * File: assets/css/widgets/htm25-hero.css
 *
 * All values pull from htm25-tokens.css custom properties.
 * Apply .htm25-style--{style} on the section to switch themes.
 * No !important, no hardcoded colors, no Bootstrap.
 */

/* =========================================================
   SECTION WRAPPER
   ========================================================= */

.htm25-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--htm25-section-py);
  padding-inline: var(--htm25-section-px);
  background-color: var(--htm25-bg-section);
}

/* =========================================================
   BACKGROUND LAYERS
   ========================================================= */

/* Gradient background for glass + aurora */
.htm25-hero.htm25-style--glass,
.htm25-hero.htm25-style--aurora {
  background: var(--htm25-gradient-hero);
}

/* Animated gradient blobs */
.htm25-hero__bg-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: var(--htm25-z-below);
}

.htm25-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: htm25-blob-drift 12s ease-in-out infinite alternate;
}

.htm25-style--glass .htm25-hero__blob--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(120, 110, 255, 0.45), transparent 70%);
  animation-duration: 14s;
}

.htm25-style--glass .htm25-hero__blob--2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 70%);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

.htm25-style--aurora .htm25-hero__blob--1 {
  width: 700px;
  height: 700px;
  top: -250px;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 60, 172, 0.40), transparent 70%);
  animation-duration: 16s;
}

.htm25-style--aurora .htm25-hero__blob--2 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(43, 134, 197, 0.35), transparent 70%);
  animation-duration: 20s;
  animation-direction: alternate-reverse;
}

.htm25-style--aurora .htm25-hero__blob--3 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: 30%;
  background: radial-gradient(circle, rgba(120, 75, 160, 0.30), transparent 70%);
  animation-duration: 22s;
}

@keyframes htm25-blob-drift {
  from {
    transform: translate(0, 0) scale(1.0);
  }

  to {
    transform: translate(40px, 30px) scale(1.1);
  }
}


/* =========================================================
   INNER LAYOUT
   ========================================================= */

.htm25-hero__inner {
  position: relative;
  z-index: var(--htm25-z-base);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--htm25-space-10);
  align-items: center;
  max-width: var(--htm25-container-xl);
  margin-inline: auto;
}

/* Split layouts: two columns */
.htm25-hero--split-left .htm25-hero__inner,
.htm25-hero--split-right .htm25-hero__inner {
  grid-template-columns: 1fr 1fr;
}

/* Centered layout: single column, text centered */
.htm25-hero--centered .htm25-hero__content {
  text-align: center;
  margin-inline: auto;
  max-width: 700px;
}

.htm25-hero--centered .htm25-hero__actions {
  justify-content: center;
}

.htm25-hero--centered .htm25-hero__social-proof {
  justify-content: center;
}

.htm25-hero--centered .htm25-hero__description {
  margin-inline: auto;
}

/* =========================================================
   BADGE / EYEBROW
   ========================================================= */

.htm25-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--htm25-space-2);
  padding: var(--htm25-space-1) var(--htm25-space-3);
  font-size: var(--htm25-text-xs);
  font-weight: var(--htm25-weight-semibold);
  letter-spacing: var(--htm25-tracking-wider);
  text-transform: uppercase;
  border-radius: var(--htm25-badge-radius);
  background-color: var(--htm25-badge-bg);
  color: var(--htm25-badge-text);
  border: 1px solid var(--htm25-badge-border, transparent);
  margin-bottom: var(--htm25-space-6);
}

.htm25-hero__badge-icon {
  display: flex;
  align-items: center;
  line-height: 1;
}

.htm25-hero__badge-icon svg,
.htm25-hero__badge-icon i,
.htm25-hero__badge-icon span,
.htm25-hero__badge-icon img {
  width: 0.85em;
  height: 0.85em;
  font-size: 0.85em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Custom-uploaded SVG icon (rendered as <img>, not inline <svg>) —
   scale to box instead of stretching, and fill currentColor when
   the SVG itself doesn't hardcode a fill */
.htm25-hero__badge-icon img {
  object-fit: contain;
}

.htm25-hero__badge-icon svg {
  fill: currentColor;
}

/* Neo badge gets hard border */
.htm25-style--neo .htm25-hero__badge {
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
}

/* =========================================================
   HEADLINE
   ========================================================= */

/* Parent scope (0,2,0) beats theme .editor-styles-wrapper h1 (0,1,1) */
.htm25-hero .htm25-hero__headline {
    white-space: pre-line;

  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-5xl);
  font-weight: var(--htm25-weight-heading, var(--htm25-weight-bold));
  line-height: var(--htm25-leading-heading, var(--htm25-leading-tight));
  letter-spacing: var(--htm25-tracking-heading, var(--htm25-tracking-tight));
  color: var(--htm25-text-heading);
  margin: 0 0 var(--htm25-space-6);
}

/* Highlighted accent word — always use background-clip:text so Elementor gradient/color controls render as text color not a box */
.htm25-hero .htm25-hero__headline-accent {
  background-color: var(--htm25-accent-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Glass + aurora: swap in gradient */
.htm25-style--glass .htm25-hero__headline-accent,
.htm25-style--aurora .htm25-hero__headline-accent {
  background-color: transparent;
  background-image: var(--htm25-gradient-btn);
}

/* Elementor: full headline gradient text (set via Style → Headline → Text Gradient) */
.htm25-headline--gradient-text {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Dark: lime accent */
.htm25-style--dark .htm25-hero__headline-accent {
  background-color: var(--htm25-accent-primary);
  background-image: none;
}

/* Neo: accent word — dark text + underline */
.htm25-style--neo .htm25-hero__headline-accent {
  background-color: var(--htm25-text-heading);
  background-image: none;
  text-decoration: underline;
  text-decoration-color: var(--htm25-neo-yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.htm25-hero .htm25-hero__description {
  font-size: var(--htm25-text-lg);
  line-height: var(--htm25-leading-normal);
  color: var(--htm25-text-body);
  margin: 0 0 var(--htm25-space-8);
  max-width: 52ch;
}

/* =========================================================
   CTA ACTIONS
   ========================================================= */

.htm25-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--htm25-space-3);
  margin-bottom: var(--htm25-space-8);
}

/* Smooth transitions — tokens only cover background/box-shadow/transform; add color + border-color */
.htm25-hero .htm25-btn--primary,
.htm25-hero .htm25-btn--outline {
  transition: background 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

/* Secondary button play-icon circle */
.htm25-hero__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75em;
  height: 1.75em;
  border-radius: 50%;
  background-color: var(--htm25-accent-primary);
  flex-shrink: 0;
  transition: background-color 0.2s ease, background-image 0.2s ease;
}

/* Icon color — covers FA4 <span class="fa fa-*"> and dashicons <span class="dashicons ..."> */
.htm25-hero__play-icon i,
.htm25-hero__play-icon svg,
.htm25-hero__play-icon span:not(.htm25-hero__play-icon) {
  color: #fff;
  transition: color 0.2s ease;
}

.htm25-hero__play-icon svg path {
  transition: fill 0.2s ease;
}

/* FA4 / dashicon span inside play circle */
.htm25-hero__play-icon span.fa,
.htm25-hero__play-icon span[class*="dashicons"],
.htm25-hero__play-icon svg{
  font-size: 1em;
  width: 1em;
  height: 1em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glass + aurora: secondary button play icon uses gradient bg */
.htm25-style--glass .htm25-hero__play-icon,
.htm25-style--aurora .htm25-hero__play-icon {
  background: var(--htm25-gradient-btn);
}

/* Dark: lime play icon, dark text */
.htm25-style--dark .htm25-hero__play-icon {
  background: var(--htm25-accent-primary);
}

.htm25-style--dark .htm25-hero__play-icon i,
.htm25-style--dark .htm25-hero__play-icon svg {
  color: var(--htm25-text-inverse);
}

/* =========================================================
   SOCIAL PROOF
   ========================================================= */

.htm25-hero__social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--htm25-space-2);
  font-size: var(--htm25-text-sm);
  color: var(--htm25-text-muted);
}

.htm25-hero__stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  /* star amber — intentionally not a token, always amber */
}

.htm25-hero__rating {
  font-weight: var(--htm25-weight-semibold);
  color: var(--htm25-text-body);
}

.htm25-hero__social-text {
  color: var(--htm25-text-muted);
}

/* =========================================================
   MEDIA COLUMN (split layouts)
   ========================================================= */

.htm25-hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.htm25-hero__media img {
  width: 100%;
  height: auto;
  border-radius: var(--htm25-radius-card);
  display: block;
  object-fit: cover;
}

/* Bento: card shadow on image */
.htm25-style--bento .htm25-hero__media img {
  box-shadow: var(--htm25-shadow-lg);
  border: var(--htm25-border-width) solid var(--htm25-border-color);
}

/* Neo: hard shadow on image */
.htm25-style--neo .htm25-hero__media img {
  border: 2px solid #000;
  box-shadow: var(--htm25-shadow-lg);
  border-radius: 0;
}

/* Glass + aurora: soft glow around image */
.htm25-style--glass .htm25-hero__media img {
  box-shadow: var(--htm25-shadow-glow), 0 0 0 1px var(--htm25-border-color);
  border-radius: var(--htm25-radius-2xl);
}

.htm25-style--aurora .htm25-hero__media img {
  box-shadow: var(--htm25-shadow-glow-pink);
  border-radius: var(--htm25-radius-2xl);
}

/* =========================================================
   FLOATING STAT BADGE
   ========================================================= */

.htm25-hero__float-badge {
  position: absolute;
  bottom: var(--htm25-space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--htm25-space-4) var(--htm25-space-6);
  border-radius: var(--htm25-radius-xl);
  background-color: var(--htm25-bg-card);
  border: var(--htm25-border-width) solid var(--htm25-border-color);
  box-shadow: var(--htm25-shadow-card);
  text-align: center;
  min-width: 120px;
  white-space: nowrap;
}

.htm25-style--glass .htm25-hero__float-badge,
.htm25-style--aurora .htm25-hero__float-badge {
  background: var(--htm25-glass-bg, var(--htm25-bg-card));
  -webkit-backdrop-filter: var(--htm25-glass-blur, none);
  backdrop-filter: var(--htm25-glass-blur, none);
  border-color: var(--htm25-border-color);
}

.htm25-style--neo .htm25-hero__float-badge {
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  border-radius: 0;
}

.htm25-hero__float-number {
  font-size: var(--htm25-text-2xl);
  font-weight: var(--htm25-weight-bold);
  line-height: 1;
  color: var(--htm25-text-heading);
  margin-bottom: var(--htm25-space-1);
}

.htm25-hero__float-label {
  font-size: var(--htm25-text-xs);
  color: var(--htm25-text-muted);
  letter-spacing: var(--htm25-tracking-wide);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {

  .htm25-hero--split-left .htm25-hero__inner,
  .htm25-hero--split-right .htm25-hero__inner {
    grid-template-columns: 1fr;
  }

  /* On tablet, always show media below content */
  .htm25-hero--split-right .htm25-hero__media {
    order: 1;
  }

  .htm25-hero--split-right .htm25-hero__content {
    order: 2;
  }
}

@media (max-width: 640px) {
  .htm25-hero .htm25-hero__headline {
    font-size: var(--htm25-text-3xl);
  }

  .htm25-hero .htm25-hero__description {
    font-size: var(--htm25-text-base);
  }

  .htm25-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .htm25-hero__actions .htm25-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   IMAGE PLACEHOLDER
   ========================================================= */

.htm25-hero__media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--htm25-radius-card);
  border: 2px dashed var(--htm25-border-color, rgba(0,0,0,.2));
  color: var(--htm25-text-muted, rgba(0,0,0,.35));
  background-color: var(--htm25-surface-alt, rgba(0,0,0,.03));
  pointer-events: none;
  user-select: none;
}

.htm25-hero__media-placeholder svg {
  opacity: .5;
  flex-shrink: 0;
}

.htm25-hero__media-placeholder span {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: .6;
}

/* Glass / Aurora — frosted */
.htm25-style--glass .htm25-hero__media-placeholder,
.htm25-style--aurora .htm25-hero__media-placeholder {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

/* Dark — lime-tinted dashed border */
.htm25-style--dark .htm25-hero__media-placeholder {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(163, 230, 53, 0.25);
  color: rgba(255, 255, 255, 0.35);
}

/* Neo — solid thick border, offset shadow, sharp corners */
.htm25-style--neo .htm25-hero__media-placeholder {
  border-radius: 0;
  border: 2px solid var(--htm25-border-color);
  border-style: solid;
  box-shadow: 4px 4px 0 var(--htm25-border-color);
  background-color: var(--htm25-surface-alt, #f5f5f5);
}

/* =========================================================
   ACCESSIBILITY + REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .htm25-hero__blob {
    animation: none;
  }
}/**
 * HT Mega 2026 — Services Section
 * BEM component: .htm25-services
 *
 * All token names match htm25-tokens.css exactly:
 *   font sizes   → --htm25-text-*
 *   font weights → --htm25-weight-*
 *   line heights → --htm25-leading-*
 *   tracking     → --htm25-tracking-*
 *   surfaces     → --htm25-bg-*
 *   borders      → --htm25-border-*
 *   radius       → --htm25-radius-*
 *   shadows      → --htm25-shadow-*
 *   buttons      → --htm25-btn-*  (py / px / primary-text)
 *   spacing      → --htm25-space-*
 *   sections     → --htm25-section-py / --htm25-section-px
 *
 * Design styles applied via: .htm25-style--{bento|glass|dark|aurora|neo}
 * Layouts applied via: .htm25-services--{grid|list|centered}
 */

/* ── Base wrapper ─────────────────────────────────────────────── */

.htm25-services {
    position: relative;
    overflow: hidden;
    padding-block: var(--htm25-section-py);
    padding-inline: var(--htm25-section-px);
    background-color: var(--htm25-bg-section);
    color: var(--htm25-text-body);
}

/* Glass / Aurora get their full gradient hero background */
.htm25-services.htm25-style--glass,
.htm25-services.htm25-style--aurora {
    background: var(--htm25-gradient-hero);
}

/* ── Background decorations ───────────────────────────────────── */

.htm25-services__bg-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: var(--htm25-z-below, -1);
}

.htm25-services__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: htm25-blob-drift 14s ease-in-out infinite alternate;
    will-change: transform;
}

/* Glass blobs */
.htm25-style--glass .htm25-services__blob--1 {
    width: 520px; height: 520px;
    top: -160px; right: -60px;
    background: radial-gradient(circle, rgba(120,110,255,0.40), transparent 70%);
    animation-duration: 18s;
}
.htm25-style--glass .htm25-services__blob--2 {
    width: 440px; height: 440px;
    bottom: -100px; left: -80px;
    background: radial-gradient(circle, rgba(6,182,212,0.30), transparent 70%);
    animation-duration: 22s;
    animation-direction: alternate-reverse;
}

/* Aurora blobs */
.htm25-style--aurora .htm25-services__blob--1 {
    width: 580px; height: 580px;
    top: -200px; left: -100px;
    background: radial-gradient(circle, rgba(255,60,172,0.35), transparent 70%);
    animation-duration: 20s;
}
.htm25-style--aurora .htm25-services__blob--2 {
    width: 480px; height: 480px;
    bottom: -120px; right: -80px;
    background: radial-gradient(circle, rgba(43,134,197,0.28), transparent 70%);
    animation-duration: 24s;
    animation-direction: alternate-reverse;
}

@keyframes htm25-blob-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 20px) scale(1.08); }
}


/* ── Inner container ──────────────────────────────────────────── */

.htm25-services__inner {
    position: relative;
    z-index: var(--htm25-z-base, 0);
    max-width: var(--htm25-container-xl, 1280px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--htm25-space-12, 3rem);
}

/* ── Section header ───────────────────────────────────────────── */

.htm25-services__header {
    display: flex;
    flex-direction: column;
    gap: var(--htm25-space-4, 1rem);
    max-width: 52ch;
}

/* Centered layout: centre the header */
.htm25-services--centered .htm25-services__header {
    align-items: center;
    text-align: center;
    max-width: 60ch;
    margin-inline: auto;
}

.htm25-services--centered .htm25-services__section-label {
    align-self: center;
}

/* ── Section label ────────────────────────────────────────────── */

.htm25-services .htm25-services__section-label {
    margin: 0;
    font-size: var(--htm25-text-xs);
    font-weight: var(--htm25-weight-semibold);
    letter-spacing: var(--htm25-tracking-wider);
    text-transform: uppercase;
    color: var(--htm25-section-label-color, var(--htm25-accent-primary));
}

/* ── Headline ─────────────────────────────────────────────────── */

.htm25-services .htm25-services__headline {
    white-space: pre-line;

    margin: 0;
    font-size: var(--htm25-text-3xl);
    font-weight: var(--htm25-weight-bold);
    line-height: var(--htm25-leading-tight);
    letter-spacing: var(--htm25-tracking-tight);
    color: var(--htm25-text-heading);
}

/* Base — always clip to text so Elementor gradient/color controls render as text, not a box */
.htm25-services .htm25-services__headline-accent {
    background-color: var(--htm25-accent-primary);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Glass + Aurora: gradient text */
.htm25-style--glass .htm25-services__headline-accent,
.htm25-style--aurora .htm25-services__headline-accent {
    background-color: transparent;
    background-image: var(--htm25-gradient-text, var(--htm25-gradient-btn));
}

/* ── Description ──────────────────────────────────────────────── */

.htm25-services .htm25-services__description {
    margin: 0;
    font-size: var(--htm25-text-lg);
    line-height: var(--htm25-leading-normal);
    color: var(--htm25-text-muted);
    max-width: 52ch;
}

.htm25-services--centered .htm25-services__description {
    max-width: 60ch;
}

/* ── Cards container ──────────────────────────────────────────── */

.htm25-services .htm25-services__cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--htm25-space-6, 1.5rem);
}

/* Grid layout columns */
.htm25-services--grid.htm25-services--grid .htm25-services__cards--cols-2 { grid-template-columns: repeat(2, 1fr); }
.htm25-services--grid.htm25-services--grid .htm25-services__cards--cols-3 { grid-template-columns: repeat(3, 1fr); }
.htm25-services--grid.htm25-services--grid .htm25-services__cards--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Centered layout: auto-fill wrapping grid */
.htm25-services--centered .htm25-services__cards {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* List layout: single column stack */
.htm25-services--list .htm25-services__cards {
    grid-template-columns: 1fr;
    gap: var(--htm25-space-4, 1rem);
}

/* ── Individual service card ──────────────────────────────────── */

.htm25-services__card {
    display: flex;
    flex-direction: column;
    gap: var(--htm25-space-4, 1rem);
    padding: var(--htm25-space-8, 2rem);
    border-radius: var(--htm25-radius-card);
    background: var(--htm25-bg-card);
    border: var(--htm25-border-width) var(--htm25-border-style) var(--htm25-border-color);
    box-shadow: var(--htm25-shadow-card);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.htm25-services__card:hover {
    box-shadow: var(--htm25-shadow-card-hover);
    transform: translateY(-3px);
}

/* List layout: horizontal card */
.htm25-services--list .htm25-services__card {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--htm25-space-6, 1.5rem);
    padding: var(--htm25-space-6, 1.5rem);
    transform: none;   /* no lift on list cards */
}

.htm25-services--list .htm25-services__card:hover {
    transform: none;
}

/* Centered layout: centre-align card content */
.htm25-services--centered .htm25-services__card {
    align-items: center;
    text-align: center;
}

/* Glass card */
.htm25-style--glass .htm25-services__card {
    background: var(--htm25-glass-bg);
    -webkit-backdrop-filter: var(--htm25-glass-blur);
            backdrop-filter: var(--htm25-glass-blur);
    border-color: var(--htm25-border-color);
}

/* Dark card */
.htm25-style--dark .htm25-services__card {
    background: var(--htm25-bg-card);
    border-color: var(--htm25-border-color);
}

/* Aurora card */
.htm25-style--aurora .htm25-services__card {
    background: var(--htm25-bg-card);
    border-color: var(--htm25-border-color);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
}

/* Neo-Brutalist card */
.htm25-style--neo .htm25-services__card {
    border-width: 2px;
    border-color: var(--htm25-border-color);
    box-shadow: 3px 3px 0 var(--htm25-border-color);
    border-radius: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.htm25-style--neo .htm25-services__card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--htm25-border-color);
}

/* Neo: list layout re-override (no translate on hover) */
.htm25-style--neo.htm25-services--list .htm25-services__card:hover {
    transform: none;
    box-shadow: 5px 5px 0 var(--htm25-border-color);
}

/* Neo: solid yellow wrap + black icon */
.htm25-style--neo .htm25-services__card-icon-wrap {
    background: #FFE500;
    border: 2px solid #000000;
    border-radius: 0;
}
.htm25-style--neo.htm25-services .htm25-services__card-icon,
.htm25-style--neo.htm25-services .htm25-services__card-icon svg,
.htm25-style--neo.htm25-services .htm25-services__card-icon i {
    color: #000000;
}
.htm25-style--neo.htm25-services .htm25-services__card-icon svg path {
    fill: #000000;
}

/* ── Icon wrapper ─────────────────────────────────────────────── */

.htm25-services__card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: var(--htm25-radius-icon, var(--htm25-radius-md));
    background: var(--htm25-accent-primary-lt);
}

/* Slightly larger icon box in grid layout */
.htm25-services--grid .htm25-services__card-icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
}

/* List layout: don't shrink the icon box */
.htm25-services--list .htm25-services__card-icon-wrap {
    margin-top: 0.125rem; /* optical alignment with title text */
}

/* ── Icon itself ──────────────────────────────────────────────── */

.htm25-services .htm25-services__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    color: var(--htm25-accent-primary);
}

.htm25-services .htm25-services__card-icon svg,
.htm25-services .htm25-services__card-icon i {
    display: block;
    color: var(--htm25-accent-primary);
}

.htm25-services .htm25-services__card-icon svg {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
}

/* ── Card body ────────────────────────────────────────────────── */

.htm25-services__card-body {
    display: flex;
    flex-direction: column;
    gap: var(--htm25-space-2, 0.5rem);
    flex: 1;
}

/* Centered layout: centre the body text */
.htm25-services--centered .htm25-services__card-body {
    align-items: center;
}

/* ── Card title ───────────────────────────────────────────────── */

.htm25-services .htm25-services__card-title {
    margin: 0;
    font-size: var(--htm25-text-lg);
    font-weight: var(--htm25-weight-semibold);
    line-height: var(--htm25-leading-snug);
    color: var(--htm25-text-heading);
}

/* ── Card description ─────────────────────────────────────────── */

.htm25-services .htm25-services__card-description {
    margin: 0;
    font-size: var(--htm25-text-sm);
    line-height: var(--htm25-leading-normal);
    color: var(--htm25-text-muted);
}

/* ── Card link ────────────────────────────────────────────────── */

.htm25-services__card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--htm25-space-1, 0.25rem);
    margin-top: var(--htm25-space-2, 0.5rem);
    font-size: var(--htm25-text-sm);
    font-weight: var(--htm25-weight-semibold);
    color: var(--htm25-text-link);
    text-decoration: none;
    transition: color 0.15s ease, gap 0.15s ease;
}

.htm25-services__card-link:hover {
    color: var(--htm25-text-link-hover);
    gap: var(--htm25-space-2, 0.5rem);
}

.htm25-services__card-link-arrow {
    display: inline-flex;
    transition: transform 0.15s ease;
}

.htm25-services__card-link:hover .htm25-services__card-link-arrow {
    transform: translateX(3px);
}

/* ── Bottom CTA ───────────────────────────────────────────────── */

.htm25-services__cta-wrap {
    display: flex;
    justify-content: center;
    padding-top: var(--htm25-space-4, 1rem);
}

.htm25-services__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--htm25-space-2, 0.5rem);
    padding: var(--htm25-btn-py) var(--htm25-btn-px);
    font-size: var(--htm25-btn-font-size, var(--htm25-text-sm));
    font-weight: var(--htm25-btn-font-weight, var(--htm25-weight-semibold));
    line-height: 1;
    border-radius: var(--htm25-btn-radius);
    background: var(--htm25-btn-primary-bg);
    color: var(--htm25-btn-primary-text);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.htm25-services__cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: var(--htm25-shadow-btn);
}

.htm25-services__cta-icon {
    display: inline-flex;
    align-items: center;
    font-size: 0.875em;
    transition: transform 0.15s ease;
}

.htm25-services__cta-icon i   { display: block; line-height: 1; }
.htm25-services__cta-icon svg { display: block; width: 1em; height: 1em; fill: currentColor; }

.htm25-services__cta:hover .htm25-services__cta-icon {
    transform: translateX(3px);
}

/* ── Responsive ───────────────────────────────────────────────── */

/* 4-col → 2-col on large tablet */
@media (max-width: 1200px) {
    .htm25-services--grid .htm25-services__cards--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3-col → 2-col on tablet */
@media (max-width: 1024px) {
    .htm25-services--grid .htm25-services__cards--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* All grids → 1-col on small tablet, list stays row */
@media (max-width: 640px) {
    .htm25-services--grid .htm25-services__cards--cols-2,
    .htm25-services--grid .htm25-services__cards--cols-3,
    .htm25-services--grid .htm25-services__cards--cols-4 {
        grid-template-columns: 1fr;
    }

    /* List: stack vertically on mobile */
    .htm25-services--list .htm25-services__card {
        flex-direction: column;
    }

    .htm25-services__cta {
        width: 100%;
        justify-content: center;
    }
}

/* ── Reduced motion ───────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .htm25-services__blob {
        animation: none;
    }

    .htm25-services__card,
    .htm25-services__cta,
    .htm25-services__cta-icon,
    .htm25-services__card-link,
    .htm25-services__card-link-arrow {
        transition: none;
    }
}
/**
 * HT Mega 2026 — Team Section Widget
 * File: assets/css/widgets/htm25-team.css
 *
 * BEM component: .htm25-team
 * Requires htm25-tokens.css (design token system)
 * Zero hardcoded colours — all values via var(--htm25-*)
 */

/* =========================================================
   SECTION WRAPPER
   ========================================================= */
.htm25-team {
  position: relative;
  overflow: hidden;
  padding-block: var(--htm25-section-py);
  padding-inline: var(--htm25-section-px);
  background-color: var(--htm25-bg-section);
}

/* ── Background decoration (glass + aurora) ── */
.htm25-team__bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.htm25-team__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.40;
  animation: htm25-teamblob-drift 18s ease-in-out infinite alternate;
}

.htm25-team__blob--1 {
  width: 55vw;
  height: 40vw;
  max-width: 800px;
  max-height: 600px;
  top: -15%;
  right: -5%;
  background: radial-gradient(circle, var(--htm25-accent-primary) 0%, transparent 70%);
  animation-delay: 0s;
}

.htm25-team__blob--2 {
  width: 45vw;
  height: 35vw;
  max-width: 680px;
  max-height: 520px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, var(--htm25-accent-secondary, var(--htm25-accent-primary)) 0%, transparent 70%);
  animation-delay: -7s;
}

@keyframes htm25-teamblob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-3%, 4%) scale(1.06); }
  100% { transform: translate(3%, -3%) scale(0.96); }
}

/* =========================================================
   INNER WRAPPER
   ========================================================= */
.htm25-team__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--htm25-container-xl);
  margin-inline: auto;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */
.htm25-team__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--htm25-space-16);
}

.htm25-team .htm25-team__section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--htm25-space-2);
  font-size: var(--htm25-text-xs);
  font-weight: var(--htm25-weight-semibold);
  letter-spacing: var(--htm25-tracking-wider);
  text-transform: uppercase;
  color: var(--htm25-section-label-color, var(--htm25-accent-primary));
  margin-bottom: var(--htm25-space-5);
}

.htm25-team .htm25-team__headline {
    white-space: pre-line;

  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-4xl);
  font-weight: var(--htm25-weight-heading, var(--htm25-weight-bold));
  line-height: var(--htm25-leading-heading, var(--htm25-leading-tight));
  letter-spacing: var(--htm25-tracking-heading, var(--htm25-tracking-tight));
  color: var(--htm25-section-title-color, var(--htm25-text-heading));
  margin-top: 0;
  margin-bottom: var(--htm25-space-5);
}

/* Base — always clip to text so Elementor gradient/color controls render as text, not a box */
.htm25-team .htm25-team__headline-accent {
  background-color: var(--htm25-accent-primary);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Glass + Aurora: gradient text */
.htm25-style--glass .htm25-team__headline-accent,
.htm25-style--aurora .htm25-team__headline-accent {
  background-color: transparent;
  background-image: var(--htm25-gradient-text, var(--htm25-gradient-btn));
}

.htm25-team .htm25-team__description {
  font-size: var(--htm25-text-lg);
  line-height: var(--htm25-leading-normal);
  color: var(--htm25-section-body-color, var(--htm25-text-muted));
  margin: 0;
  max-width: 56ch;
  margin-inline: auto;
}

/* =========================================================
   GRID
   ========================================================= */
.htm25-team__grid {
  display: grid;
  gap: var(--htm25-space-8);
}

.htm25-team__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.htm25-team__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.htm25-team__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Featured layout: first card spans full width ── */
.htm25-team--featured .htm25-team__card--hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--htm25-space-10);
  align-items: center;
}

.htm25-team--featured .htm25-team__card--hero .htm25-team__card-photo-wrap {
  aspect-ratio: 1 / 1;
  max-height: 360px;
}

.htm25-team--featured .htm25-team__card--hero .htm25-team__card-photo {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.htm25-team--featured .htm25-team__card--hero .htm25-team__card-bio {
  font-size: var(--htm25-text-base);
  max-width: 54ch;
}

/* ── List layout ── */
.htm25-team--list .htm25-team__grid {
  grid-template-columns: 1fr;
  gap: var(--htm25-space-4);
}

.htm25-team--list .htm25-team__card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--htm25-space-6);
  align-items: center;
}

.htm25-team--list .htm25-team__card-photo-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.htm25-team--list .htm25-team__card-photo,
.htm25-team--list .htm25-team__card-photo-placeholder {
  width: 80px;
  height: 80px;
}

.htm25-team--list .htm25-team__card-social-overlay {
  display: none; /* overlay not useful in list layout */
}

/* =========================================================
   CARD BASE
   ========================================================= */
.htm25-team__card {
  background-color: var(--htm25-bg-card);
  border: var(--htm25-border-width) var(--htm25-border-style) var(--htm25-border-color);
  border-radius: var(--htm25-radius-2xl);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.htm25-team__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--htm25-shadow-lg);
}

/* ── Featured card highlight ── */
.htm25-team__card--featured {
  border-color: var(--htm25-accent-primary);
  box-shadow: 0 0 0 1px var(--htm25-accent-primary),
              var(--htm25-shadow-md);
}

/* =========================================================
   PHOTO AREA
   ========================================================= */
.htm25-team__card-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--htm25-bg-subtle);
}

/* list layout overrides aspect-ratio via explicit px above */
.htm25-team--list .htm25-team__card-photo-wrap {
  aspect-ratio: unset;
  border-radius: 50%;
  flex-shrink: 0;
}

.htm25-team__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.htm25-team__card:hover .htm25-team__card-photo {
  transform: scale(1.04);
}

/* ── Avatar placeholder ── */
.htm25-team__card-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--htm25-accent-primary-lt, var(--htm25-bg-subtle));
  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-3xl);
  font-weight: var(--htm25-weight-bold);
  color: var(--htm25-accent-primary);
  letter-spacing: var(--htm25-tracking-tight);
  user-select: none;
}

.htm25-team--list .htm25-team__card-photo-placeholder {
  font-size: var(--htm25-text-xl);
  border-radius: 50%;
}

/* ── Social overlay (hover reveal on grid/featured) ── */
.htm25-team__card-social-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--htm25-space-3);
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.htm25-team__card:hover .htm25-team__card-social-overlay {
  opacity: 1;
}

.htm25-team__card-social-overlay .htm25-team__card-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: background 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}

.htm25-team__card-social-overlay .htm25-team__card-social-link:hover {
  background: var(--htm25-accent-primary);
  border-color: var(--htm25-accent-primary);
  transform: scale(1.1);
}

/* =========================================================
   CARD BODY
   ========================================================= */
.htm25-team__card-body {
  padding: var(--htm25-space-6);
}

.htm25-team--featured .htm25-team__card--hero .htm25-team__card-body {
  padding: var(--htm25-space-8) var(--htm25-space-8) var(--htm25-space-8) 0;
}

.htm25-team--list .htm25-team__card-body {
  padding: var(--htm25-space-4) 0;
}

.htm25-team__card-department {
  display: inline-block;
  font-size: var(--htm25-text-xs);
  font-weight: var(--htm25-weight-semibold);
  letter-spacing: var(--htm25-tracking-wider);
  text-transform: uppercase;
  color: var(--htm25-accent-primary);
  background-color: var(--htm25-accent-primary-lt, var(--htm25-bg-subtle));
  padding: var(--htm25-space-1) var(--htm25-space-3);
  border-radius: var(--htm25-radius-full);
  margin-bottom: var(--htm25-space-3);
}

.htm25-team .htm25-team__card-name {
  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-lg);
  font-weight: var(--htm25-weight-bold);
  color: var(--htm25-text-heading);
  margin: 0 0 var(--htm25-space-1) 0;
  line-height: var(--htm25-leading-tight);
}

.htm25-team .htm25-team__card-role {
  font-size: var(--htm25-text-sm);
  color: var(--htm25-accent-primary);
  font-weight: var(--htm25-weight-medium);
  margin: 0 0 var(--htm25-space-3) 0;
}

.htm25-team .htm25-team__card-bio {
  font-size: var(--htm25-text-sm);
  line-height: var(--htm25-leading-normal);
  color: var(--htm25-text-muted);
  margin: 0 0 var(--htm25-space-4) 0;
}

/* ── Social links row (below card body, not overlay) ── */
.htm25-team__card-social {
  display: flex;
  align-items: center;
  gap: var(--htm25-space-3);
  margin-top: var(--htm25-space-4);
}

.htm25-team__card-social .htm25-team__card-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--htm25-bg-subtle);
  border: var(--htm25-border-width) var(--htm25-border-style) var(--htm25-border-color);
  color: var(--htm25-text-muted);
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease,
              border-color 0.15s ease, transform 0.15s ease;
}

.htm25-team__card-social .htm25-team__card-social-link:hover {
  color: var(--htm25-accent-primary);
  background-color: var(--htm25-accent-primary-lt, var(--htm25-bg-subtle));
  border-color: var(--htm25-accent-primary);
  transform: scale(1.1);
}

.htm25-team__card-social .htm25-team__card-social-link:focus-visible {
  outline: 2px solid var(--htm25-accent-primary);
  outline-offset: 2px;
}

/* =========================================================
   STYLE: BENTO — card lift
   ========================================================= */
.htm25-style--bento .htm25-team__card {
  box-shadow: var(--htm25-shadow-md);
}

.htm25-style--bento .htm25-team__card:hover {
  box-shadow: var(--htm25-shadow-xl);
}

/* =========================================================
   STYLE: DARK
   ========================================================= */
.htm25-style--dark .htm25-team__card-name {
  color: var(--htm25-text-heading);
}

.htm25-style--dark .htm25-team__card-social .htm25-team__card-social-link:hover {
  color: var(--htm25-accent-primary);
}

/* =========================================================
   STYLE: GLASS + AURORA — frosted card
   ========================================================= */
.htm25-team.htm25-style--glass,
.htm25-team.htm25-style--aurora {
  background: var(--htm25-gradient-hero);
}

.htm25-style--glass .htm25-team__card,
.htm25-style--aurora .htm25-team__card {
  background: var(--htm25-glass-bg, var(--htm25-bg-card));
  -webkit-backdrop-filter: var(--htm25-glass-blur, none);
          backdrop-filter: var(--htm25-glass-blur, none);
}

/* =========================================================
   STYLE: NEO-BRUTALIST
   ========================================================= */
.htm25-style--neo .htm25-team__card {
  border: var(--htm25-border-width-thick, 3px) solid var(--htm25-border-color);
  border-radius: 0;
  box-shadow: var(--htm25-shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.htm25-style--neo .htm25-team__card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--htm25-shadow-btn);
}

.htm25-style--neo .htm25-team__card--featured {
  background-color: var(--htm25-swatch-yellow, #fef08a);
  color: var(--htm25-swatch-black, #000);
}

.htm25-style--neo .htm25-team__card--featured .htm25-team__card-name,
.htm25-style--neo .htm25-team__card--featured .htm25-team__card-bio {
  color: var(--htm25-swatch-black, #000);
}

.htm25-style--neo .htm25-team__card-photo-placeholder {
  border-radius: 0;
  background: #FFE500;
  border: 2px solid #000000;
  color: #000000;
}

.htm25-style--neo .htm25-team--list .htm25-team__card-photo-placeholder {
  border-radius: 0;
}

.htm25-style--neo .htm25-team__card-department {
  border-radius: 0;
  color: var(--htm25-swatch-black, #000);
  background-color: var(--htm25-accent-primary);
  border: 1px solid var(--htm25-swatch-black, #000);
  box-shadow: 1px 1px 0 var(--htm25-swatch-black, #000);
}

.htm25-style--neo .htm25-team__card-role {
  color: var(--htm25-swatch-black, #000);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .htm25-team__grid--cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .htm25-team__grid--cols-3,
  .htm25-team__grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .htm25-team--featured .htm25-team__card--hero {
    grid-template-columns: 240px 1fr;
    gap: var(--htm25-space-8);
  }
}

@media (max-width: 768px) {
  .htm25-team__grid--cols-2,
  .htm25-team__grid--cols-3,
  .htm25-team__grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .htm25-team--featured .htm25-team__card--hero {
    grid-template-columns: 1fr;
  }

  .htm25-team--featured .htm25-team__card--hero .htm25-team__card-photo-wrap {
    max-height: 280px;
  }

  .htm25-team--featured .htm25-team__card--hero .htm25-team__card-body {
    padding: var(--htm25-space-6);
  }

  .htm25-team .htm25-team__headline {
    font-size: var(--htm25-text-3xl);
  }
}

@media (max-width: 540px) {
  .htm25-team__grid--cols-2,
  .htm25-team__grid--cols-3,
  .htm25-team__grid--cols-4 {
    grid-template-columns: 1fr;
  }

  .htm25-team--list .htm25-team__card {
    grid-template-columns: 64px 1fr;
    gap: var(--htm25-space-4);
  }

  .htm25-team--list .htm25-team__card-photo-wrap {
    width: 64px;
    height: 64px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .htm25-team__blob {
    animation: none;
  }

  .htm25-team__card,
  .htm25-team__card-photo,
  .htm25-team__card-social-overlay,
  .htm25-team__card-social .htm25-team__card-social-link {
    transition: none;
  }
}
/**
 * HT Mega 2026 — Stats / Counter Widget
 * File: assets/css/widgets/htm25-stats.css
 *
 * BEM component: .htm25-stats
 * Requires htm25-tokens.css (design token system)
 * Zero hardcoded colours — all values via var(--htm25-*)
 */

/* =========================================================
   SECTION WRAPPER
   ========================================================= */
.htm25-stats {
  position: relative;
  overflow: hidden;
  padding-block: var(--htm25-section-py);
  padding-inline: var(--htm25-section-px);
  background-color: var(--htm25-bg-section);
}

/* ── Background decoration (glass + aurora) ── */
.htm25-stats__bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.htm25-stats__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: htm25-stblob-drift 20s ease-in-out infinite alternate;
}

.htm25-stats__blob--1 {
  width: 50vw;
  height: 40vw;
  max-width: 720px;
  max-height: 560px;
  top: -20%;
  right: -5%;
  background: radial-gradient(circle, var(--htm25-accent-primary) 0%, transparent 70%);
  animation-delay: 0s;
}

.htm25-stats__blob--2 {
  width: 40vw;
  height: 30vw;
  max-width: 600px;
  max-height: 440px;
  bottom: -15%;
  left: -5%;
  background: radial-gradient(circle, var(--htm25-accent-secondary, var(--htm25-accent-primary)) 0%, transparent 70%);
  animation-delay: -9s;
}

@keyframes htm25-stblob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-3%, 5%) scale(1.07); }
  100% { transform: translate(2%, -3%) scale(0.96); }
}


/* =========================================================
   INNER WRAPPER
   ========================================================= */
.htm25-stats__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--htm25-container-xl);
  margin-inline: auto;
}

/* =========================================================
   SECTION HEADER (optional — Grid / Bento layouts)
   ========================================================= */
.htm25-stats__header {
  text-align: center;
  margin-bottom: var(--htm25-space-12);
}

.htm25-stats .htm25-stats__section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--htm25-space-2);
  font-size: var(--htm25-text-xs);
  font-weight: var(--htm25-weight-semibold);
  letter-spacing: var(--htm25-tracking-wider);
  text-transform: uppercase;
  color: var(--htm25-section-label-color, var(--htm25-accent-primary));
  margin-bottom: var(--htm25-space-4);
}

.htm25-stats .htm25-stats__headline {
    white-space: pre-line;

  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-4xl);
  font-weight: var(--htm25-weight-heading, var(--htm25-weight-bold));
  line-height: var(--htm25-leading-heading, var(--htm25-leading-tight));
  letter-spacing: var(--htm25-tracking-heading, var(--htm25-tracking-tight));
  color: var(--htm25-section-title-color, var(--htm25-text-heading));
  margin-top: 0;
  margin-bottom: var(--htm25-space-5);
}

/* Base — always clip to text so Elementor gradient/color controls render as text, not a box */
.htm25-stats .htm25-stats__headline-accent {
  background-color: var(--htm25-accent-primary);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Glass + Aurora: gradient text */
.htm25-style--glass .htm25-stats__headline-accent,
.htm25-style--aurora .htm25-stats__headline-accent {
  background-color: transparent;
  background-image: var(--htm25-gradient-text, var(--htm25-gradient-btn));
}

/* Neo: black accent text (readable on neo bg); user gradient clips to text same as other styles */
.htm25-style--neo .htm25-stats__headline-accent {
  background-color: var(--htm25-swatch-black, #000);
  background-image: none;
}

.htm25-stats .htm25-stats__description {
  font-size: var(--htm25-text-lg);
  line-height: var(--htm25-leading-normal);
  color: var(--htm25-section-body-color, var(--htm25-text-muted));
  max-width: 52ch;
  margin-inline: auto;
  margin-top: 0;
  margin-bottom: 0;
}

/* =========================================================
   GRID — shared across layouts
   ========================================================= */
.htm25-stats__grid {
  display: grid;
  gap: var(--htm25-space-6);
}

/* ─── ROW layout — all items in one horizontal strip ─── */
.htm25-stats--row .htm25-stats__grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: var(--htm25-border-width) var(--htm25-border-style) var(--htm25-border-color);
  border-radius: var(--htm25-radius-card);
  overflow: hidden;
  background-color: var(--htm25-bg-card);
  box-shadow: var(--htm25-shadow-card);
}

.htm25-style--glass .htm25-stats--row .htm25-stats__grid,
.htm25-style--aurora .htm25-stats--row .htm25-stats__grid {
  background: var(--htm25-glass-bg, var(--htm25-bg-card));
  -webkit-backdrop-filter: var(--htm25-glass-blur, none);
          backdrop-filter: var(--htm25-glass-blur, none);
}

.htm25-style--neo .htm25-stats--row .htm25-stats__grid {
  border-width: var(--htm25-border-width-thick, 3px);
  box-shadow: var(--htm25-shadow-card);
  border-radius: 0;
}

/* ─── GRID layout — card-based ─── */
.htm25-stats--grid .htm25-stats__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.htm25-stats--grid .htm25-stats__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.htm25-stats--grid .htm25-stats__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── BENTO layout — first item spans 2 cols ─── */
.htm25-stats--bento .htm25-stats__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.htm25-stats--bento .htm25-stats__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.htm25-stats--bento .htm25-stats__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.htm25-stats--bento .htm25-stats__item--featured {
  grid-column: span 2;
}

/* =========================================================
   STAT ITEM — shared base
   ========================================================= */
.htm25-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--htm25-space-3);
  padding: var(--htm25-space-8) var(--htm25-space-6);
  position: relative;
}

/* ─── ROW item: vertical divider between items ─── */
.htm25-stats--row .htm25-stats__item {
  padding: var(--htm25-space-10) var(--htm25-space-8);
}

.htm25-stats__item-divider {
  display: none;
}

.htm25-stats--row .htm25-stats__item-divider {
  display: block;
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: var(--htm25-divider-width);
  background-color: var(--htm25-divider-color);
}

/* Hide divider on last child */
.htm25-stats--row .htm25-stats__item:last-child .htm25-stats__item-divider {
  display: none;
}

/* ─── GRID / BENTO item: card style ─── */
.htm25-stats--grid .htm25-stats__item,
.htm25-stats--bento .htm25-stats__item {
  background-color: var(--htm25-bg-card);
  border: var(--htm25-border-width) var(--htm25-border-style) var(--htm25-border-color);
  border-radius: var(--htm25-radius-card);
  box-shadow: var(--htm25-shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.htm25-stats--grid .htm25-stats__item:hover,
.htm25-stats--bento .htm25-stats__item:hover {
  box-shadow: var(--htm25-shadow-card-hover);
  transform: translateY(-2px);
}

/* Glass / Aurora card backgrounds */
.htm25-style--glass .htm25-stats--grid .htm25-stats__item,
.htm25-style--glass .htm25-stats--bento .htm25-stats__item,
.htm25-style--aurora .htm25-stats--grid .htm25-stats__item,
.htm25-style--aurora .htm25-stats--bento .htm25-stats__item {
  background: var(--htm25-glass-bg, var(--htm25-bg-card));
  -webkit-backdrop-filter: var(--htm25-glass-blur, none);
          backdrop-filter: var(--htm25-glass-blur, none);
}

.htm25-style--glass .htm25-stats--grid .htm25-stats__item:hover,
.htm25-style--glass .htm25-stats--bento .htm25-stats__item:hover,
.htm25-style--aurora .htm25-stats--grid .htm25-stats__item:hover,
.htm25-style--aurora .htm25-stats--bento .htm25-stats__item:hover {
  background: var(--htm25-glass-bg-hover, var(--htm25-bg-card-alt));
}

/* Neo card */
.htm25-style--neo .htm25-stats--grid .htm25-stats__item,
.htm25-style--neo .htm25-stats--bento .htm25-stats__item {
  border-width: var(--htm25-border-width-thick, 3px);
  border-radius: 0;
  box-shadow: var(--htm25-shadow-card);
}

.htm25-style--neo .htm25-stats--grid .htm25-stats__item:hover,
.htm25-style--neo .htm25-stats--bento .htm25-stats__item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--htm25-shadow-card-hover);
}

/* ─── Featured item (bento first) ─── */
.htm25-stats--bento .htm25-stats__item--featured {
  background-color: var(--htm25-accent-primary-lt, var(--htm25-bg-card));
  border-color: var(--htm25-accent-primary);
}

.htm25-style--dark .htm25-stats--bento .htm25-stats__item--featured {
  background-color: var(--htm25-accent-primary-lt);
  border-color: var(--htm25-accent-primary);
}

.htm25-style--glass .htm25-stats--bento .htm25-stats__item--featured,
.htm25-style--aurora .htm25-stats--bento .htm25-stats__item--featured {
  background: var(--htm25-accent-primary-lt, rgba(255,255,255,0.08));
  box-shadow: var(--htm25-shadow-card),
              0 0 32px var(--htm25-accent-glow, var(--htm25-accent-primary-lt));
}

.htm25-style--neo .htm25-stats--bento .htm25-stats__item--featured {
  background-color: var(--htm25-swatch-yellow);
  border-color: var(--htm25-swatch-black, #000);
  box-shadow: 6px 6px 0 var(--htm25-swatch-black, #000);
}

/* Featured item enlarged number */
.htm25-stats--bento .htm25-stats__item--featured .htm25-stats__item-number {
  font-size: var(--htm25-text-5xl);
}

.htm25-stats--bento .htm25-stats__item--featured .htm25-stats__item-prefix,
.htm25-stats--bento .htm25-stats__item--featured .htm25-stats__item-suffix {
  font-size: var(--htm25-text-3xl);
}

/* =========================================================
   ICON
   ========================================================= */
.htm25-stats__item-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: var(--htm25-radius-icon, var(--htm25-radius-md));
  background-color: var(--htm25-accent-primary-lt, var(--htm25-bg-subtle));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--htm25-space-2);
}

.htm25-stats__item-icon {
  font-size: var(--htm25-text-lg);
  color: var(--htm25-accent-primary);
  line-height: 1;
}
.htm25-stats__item-icon svg {
  width: var(--htm25-text-lg);
}

.htm25-style--neo .htm25-stats__item-icon-wrap {
  border: 2px solid var(--htm25-swatch-black, #000);
  border-radius: 0;
  background-color: var(--htm25-swatch-yellow);
}
.htm25-style--neo.htm25-stats .htm25-stats__item-icon,
.htm25-style--neo.htm25-stats .htm25-stats__item-icon svg,
.htm25-style--neo.htm25-stats .htm25-stats__item-icon i {
  color: #000000;
}
.htm25-style--neo.htm25-stats .htm25-stats__item-icon svg path {
  fill: #000000;
}

/* =========================================================
   VALUE ROW (prefix + number + suffix)
   ========================================================= */
.htm25-stats__item-value-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--htm25-space-1);
  line-height: var(--htm25-leading-tight);
}

.htm25-stats__item-number {
  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-4xl);
  font-weight: var(--htm25-weight-black, var(--htm25-weight-bold));
  letter-spacing: var(--htm25-tracking-tight);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  /* Always clip so Elementor gradient control renders as text gradient, not a box */
  background-color: var(--htm25-text-heading);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: background-color 0.2s ease;
}

/* Style-specific number colours */
.htm25-style--dark .htm25-stats__item-number {
  background-color: var(--htm25-accent-primary);
}

.htm25-style--glass .htm25-stats__item-number,
.htm25-style--aurora .htm25-stats__item-number {
  background-image: var(--htm25-gradient-text, var(--htm25-gradient-btn));
  background-color: transparent;
}

.htm25-style--neo .htm25-stats__item-number {
  font-size: var(--htm25-text-4xl);
  background-color: var(--htm25-text-heading);
}

.htm25-stats__item-prefix,
.htm25-stats__item-suffix {
  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-2xl);
  font-weight: var(--htm25-weight-bold);
  color: var(--htm25-accent-primary);
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 0.1em;
}

.htm25-style--glass .htm25-stats__item-prefix,
.htm25-style--glass .htm25-stats__item-suffix,
.htm25-style--aurora .htm25-stats__item-prefix,
.htm25-style--aurora .htm25-stats__item-suffix {
  color: var(--htm25-text-muted);
}

.htm25-style--neo .htm25-stats__item-prefix,
.htm25-style--neo .htm25-stats__item-suffix {
  color: var(--htm25-text-heading);
}

/* =========================================================
   LABEL + DESCRIPTION
   ========================================================= */
.htm25-stats .htm25-stats__item-label {
  font-family: var(--htm25-font-body);
  font-size: var(--htm25-text-sm);
  font-weight: var(--htm25-weight-semibold);
  color: var(--htm25-text-body);
  letter-spacing: var(--htm25-tracking-wide);
  text-transform: uppercase;
  margin: 0;
  line-height: var(--htm25-leading-snug);
}

.htm25-style--dark .htm25-stats__item-label {
  color: var(--htm25-text-muted);
}

.htm25-style--neo .htm25-stats--bento .htm25-stats__item--featured .htm25-stats__item-label {
  color: var(--htm25-text-heading);
}

.htm25-stats .htm25-stats__item-description {
  font-size: var(--htm25-text-xs);
  color: var(--htm25-text-muted);
  line-height: var(--htm25-leading-normal);
  margin: 0;
}

/* =========================================================
   ROW LAYOUT — hover accent line on items
   ========================================================= */
.htm25-stats--row .htm25-stats__item::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--htm25-accent-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--htm25-duration-normal) var(--htm25-ease-out);
}

.htm25-stats--row .htm25-stats__item:hover::before {
  transform: scaleX(1);
}

.htm25-style--neo .htm25-stats--row .htm25-stats__item::before {
  height: 4px;
  background: var(--htm25-swatch-yellow);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Row layout: stack at mobile */
@media (max-width: 768px) {
  .htm25-stats--row .htm25-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Re-show dividers as bottom borders in 2-col row */
  .htm25-stats--row .htm25-stats__item-divider {
    display: block;
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: var(--htm25-divider-width);
    background-color: var(--htm25-divider-color);
  }

  /* Hide right-column divider */
  .htm25-stats--row .htm25-stats__item:nth-child(even) .htm25-stats__item-divider {
    display: none;
  }
}

/* Grid/Bento: 4-col → 2-col at 1100px */
@media (max-width: 1100px) {
  .htm25-stats--grid .htm25-stats__grid--cols-4,
  .htm25-stats--bento .htm25-stats__grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .htm25-stats--bento .htm25-stats__grid--cols-4 .htm25-stats__item--featured {
    grid-column: span 2;
  }
}

/* Grid/Bento: 3-col → 2-col at 900px, bento featured still spans 2 */
@media (max-width: 900px) {
  .htm25-stats--grid .htm25-stats__grid--cols-3,
  .htm25-stats--bento .htm25-stats__grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .htm25-stats--bento .htm25-stats__grid--cols-3 .htm25-stats__item--featured {
    grid-column: span 2;
  }
}

/* All → 1-col at 480px */
@media (max-width: 480px) {
  .htm25-stats--row .htm25-stats__grid {
    grid-template-columns: 1fr;
  }

  .htm25-stats--row .htm25-stats__item-divider {
    display: none;
  }

  .htm25-stats--row .htm25-stats__item::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: var(--htm25-divider-width);
    background-color: var(--htm25-divider-color);
  }

  .htm25-stats--grid .htm25-stats__grid--cols-2,
  .htm25-stats--grid .htm25-stats__grid--cols-3,
  .htm25-stats--grid .htm25-stats__grid--cols-4,
  .htm25-stats--bento .htm25-stats__grid--cols-2,
  .htm25-stats--bento .htm25-stats__grid--cols-3,
  .htm25-stats--bento .htm25-stats__grid--cols-4 {
    grid-template-columns: 1fr;
  }

  .htm25-stats--bento .htm25-stats__item--featured {
    grid-column: span 1;
  }

  .htm25-stats--bento .htm25-stats__item--featured .htm25-stats__item-number {
    font-size: var(--htm25-text-4xl);
  }

  .htm25-stats--bento .htm25-stats__item--featured .htm25-stats__item-prefix,
  .htm25-stats--bento .htm25-stats__item--featured .htm25-stats__item-suffix {
    font-size: var(--htm25-text-2xl);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .htm25-stats__blob {
    animation: none;
  }

  .htm25-stats--grid .htm25-stats__item,
  .htm25-stats--bento .htm25-stats__item {
    transition: none;
  }

  .htm25-stats--grid .htm25-stats__item:hover,
  .htm25-stats--bento .htm25-stats__item:hover {
    transform: none;
  }

  .htm25-stats--row .htm25-stats__item::before {
    transition: none;
  }

  /* Number count-up is disabled via JS when prefers-reduced-motion is set */
}
/**
 * HT Mega 2026 — Testimonials Widget
 * File: assets/css/widgets/htm25-testimonials.css
 *
 * BEM component: .htm25-testimonials
 * Requires htm25-tokens.css (design token system)
 * Zero hardcoded colours — all values via var(--htm25-*)
 */

/* =========================================================
   SECTION WRAPPER
   ========================================================= */
.htm25-testimonials {
  position: relative;
  overflow: hidden;
  padding-block: var(--htm25-section-py);
  padding-inline: var(--htm25-section-px);
  background-color: var(--htm25-bg-section);
}

/* ── Background decoration (glass + aurora) ── */
.htm25-testimonials__bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.htm25-testimonials__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: htm25-tmblob-drift 18s ease-in-out infinite alternate;
}

.htm25-testimonials__blob--1 {
  width: 55vw;
  height: 40vw;
  max-width: 800px;
  max-height: 580px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, var(--htm25-accent-primary) 0%, transparent 70%);
  animation-delay: 0s;
}

.htm25-testimonials__blob--2 {
  width: 45vw;
  height: 35vw;
  max-width: 680px;
  max-height: 480px;
  bottom: -15%;
  right: -8%;
  background: radial-gradient(circle, var(--htm25-accent-secondary, var(--htm25-accent-primary)) 0%, transparent 70%);
  animation-delay: -7s;
}

@keyframes htm25-tmblob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, 4%) scale(1.06); }
  100% { transform: translate(-2%, 2%) scale(0.97); }
}


/* =========================================================
   INNER WRAPPER
   ========================================================= */
.htm25-testimonials__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--htm25-container-xl);
  margin-inline: auto;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */
.htm25-testimonials__header {
  text-align: center;
  margin-bottom: var(--htm25-space-12);
}

.htm25-testimonials .htm25-testimonials__section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--htm25-space-2);
  font-size: var(--htm25-text-xs);
  font-weight: var(--htm25-weight-semibold);
  letter-spacing: var(--htm25-tracking-wider);
  text-transform: uppercase;
  color: var(--htm25-section-label-color, var(--htm25-accent-primary));
  margin-bottom: var(--htm25-space-4);
}

.htm25-testimonials .htm25-testimonials__headline {
    white-space: pre-line;

  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-4xl);
  font-weight: var(--htm25-weight-heading, var(--htm25-weight-bold));
  line-height: var(--htm25-leading-heading, var(--htm25-leading-tight));
  letter-spacing: var(--htm25-tracking-heading, var(--htm25-tracking-tight));
  color: var(--htm25-section-title-color, var(--htm25-text-heading));
  margin-top: 0;
  margin-bottom: var(--htm25-space-5);
}

/* Base — always clip to text so Elementor gradient/color controls render as text, not a box */
.htm25-testimonials .htm25-testimonials__headline-accent {
  background-color: var(--htm25-accent-primary);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Glass + Aurora: gradient text */
.htm25-style--glass .htm25-testimonials__headline-accent,
.htm25-style--aurora .htm25-testimonials__headline-accent {
  background-color: transparent;
  background-image: var(--htm25-gradient-text, var(--htm25-gradient-btn));
}

.htm25-testimonials .htm25-testimonials__description {
  font-size: var(--htm25-text-lg);
  line-height: var(--htm25-leading-normal);
  color: var(--htm25-section-body-color, var(--htm25-text-muted));
  max-width: 56ch;
  margin-inline: auto;
  margin-top: 0;
  margin-bottom: 0;
}

/* =========================================================
   GRID
   ========================================================= */
.htm25-testimonials__grid {
  display: grid;
  gap: var(--htm25-space-6);
  align-items: start;
}

/* Grid layout: explicit columns */
.htm25-testimonials--grid .htm25-testimonials__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.htm25-testimonials--grid .htm25-testimonials__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.htm25-testimonials--grid .htm25-testimonials__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Masonry layout — two structures share this stylesheet right now:
   1. Round-robin flex columns (Elementor): PHP pre-distributes cards into
      real .htm25-testimonials__masonry-col divs, plain flex layout, no
      CSS fragmentation — nothing for Safari to get wrong. This is the
      fixed version.
   2. Legacy CSS column-count (Gutenberg testimonials-2025 block, not yet
      migrated): cards are direct children of .grid, no column-count
      recalculation. Kept working as before — the block still has known
      Safari rendering bugs (splitting / ghost paint at column
      boundaries) that this legacy path cannot fully avoid.
   The two are distinguished structurally (:has() / direct-child
   selector) so fixing one doesn't touch the other. */

.htm25-testimonials__masonry-col {
  display: flex;
  flex-direction: column;
  gap: var(--htm25-space-6);
  flex: 1 1 0;
  min-width: 0;
}

.htm25-testimonials--masonry .htm25-testimonials__grid:has(.htm25-testimonials__masonry-col) {
  display: flex;
  align-items: flex-start;
  gap: var(--htm25-space-6);
}

/* Legacy column-count path only (grid with no .masonry-col children) */
.htm25-testimonials--masonry .htm25-testimonials__grid:not(:has(.htm25-testimonials__masonry-col)) {
  display: block;
}
.htm25-testimonials--masonry .htm25-testimonials__grid--cols-2:not(:has(.htm25-testimonials__masonry-col)) { column-count: 2; column-gap: var(--htm25-space-6); }
.htm25-testimonials--masonry .htm25-testimonials__grid--cols-3:not(:has(.htm25-testimonials__masonry-col)) { column-count: 3; column-gap: var(--htm25-space-6); }
.htm25-testimonials--masonry .htm25-testimonials__grid--cols-4:not(:has(.htm25-testimonials__masonry-col)) { column-count: 4; column-gap: var(--htm25-space-6); }

/* Safari doesn't reliably honor break-inside: avoid on flex containers
   inside CSS multi-column layout (cards split/duplicate across columns),
   and separately fails to repaint transformed elements correctly inside
   column fragmentation (hover leaves a ghost/duplicate render until the
   next reflow). Mitigate both for the legacy path only — direct-child
   selector so this never touches cards inside a .masonry-col. */
.htm25-testimonials--masonry .htm25-testimonials__grid > .htm25-testimonials__card {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: var(--htm25-space-6);
  isolation: isolate;
}

.htm25-testimonials--masonry .htm25-testimonials__grid > .htm25-testimonials__card .htm25-testimonials__card-quote {
  margin-bottom: var(--htm25-space-6);
}

.htm25-testimonials--masonry .htm25-testimonials__grid > .htm25-testimonials__card:hover,
.htm25-testimonials--masonry.htm25-style--neo .htm25-testimonials__grid > .htm25-testimonials__card:hover {
  transform: none;
}

/* Centered layout: single centered column */
.htm25-testimonials--centered .htm25-testimonials__grid {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin-inline: auto;
}

/* =========================================================
   CARD
   ========================================================= */
.htm25-testimonials__card {
  background-color: var(--htm25-bg-card);
  border: var(--htm25-border-width) var(--htm25-border-style) var(--htm25-border-color);
  border-radius: var(--htm25-radius-card);
  box-shadow: var(--htm25-shadow-card);
  padding: var(--htm25-space-8);
  display: flex;
  flex-direction: column;
  gap: var(--htm25-space-6);
  transition: box-shadow var(--htm25-duration-normal) var(--htm25-ease-out),
              transform var(--htm25-duration-normal) var(--htm25-ease-out);
}

.htm25-testimonials__card:hover {
  box-shadow: var(--htm25-shadow-card-hover);
  transform: translateY(-2px);
}

/* ── Featured card ── */
.htm25-testimonials__card--featured {
  border-color: var(--htm25-accent-primary);
  box-shadow: var(--htm25-shadow-card),
              0 0 0 2px var(--htm25-accent-primary);
}

.htm25-style--glass .htm25-testimonials__card--featured {
  border-color: var(--htm25-border-color-glow, var(--htm25-accent-primary));
  box-shadow: var(--htm25-shadow-card),
              0 0 32px var(--htm25-accent-glow, rgba(120,110,255,0.25));
}

.htm25-style--aurora .htm25-testimonials__card--featured {
  border-color: var(--htm25-accent-primary);
  box-shadow: var(--htm25-shadow-card),
              0 0 40px var(--htm25-accent-glow-pink, rgba(255,60,172,0.25));
}

.htm25-style--dark .htm25-testimonials__card--featured {
  border-color: var(--htm25-accent-primary);
  box-shadow: var(--htm25-shadow-card),
              var(--htm25-shadow-glow-accent);
}

.htm25-style--neo .htm25-testimonials__card--featured {
  background-color: var(--htm25-swatch-yellow);
  box-shadow: 6px 6px 0 var(--htm25-swatch-black, #000);
}

.htm25-style--neo .htm25-testimonials__card--featured:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--htm25-swatch-black, #000);
}

/* ── Glass / Aurora card backgrounds ── */
.htm25-style--glass .htm25-testimonials__card,
.htm25-style--aurora .htm25-testimonials__card {
  background: var(--htm25-glass-bg, var(--htm25-bg-card));
  -webkit-backdrop-filter: var(--htm25-glass-blur, none);
          backdrop-filter: var(--htm25-glass-blur, none);
}

.htm25-style--glass .htm25-testimonials__card:hover,
.htm25-style--aurora .htm25-testimonials__card:hover {
  background: var(--htm25-glass-bg-hover, var(--htm25-bg-card-alt));
}

/* ── Neo card ── */
.htm25-style--neo .htm25-testimonials__card {
  border-width: var(--htm25-border-width-thick, 3px);
  box-shadow: var(--htm25-shadow-card);
}

.htm25-style--neo .htm25-testimonials__card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--htm25-shadow-card-hover);
}

/* =========================================================
   QUOTE SECTION
   ========================================================= */
.htm25-testimonials__card-quote {
  display: flex;
  flex-direction: column;
  gap: var(--htm25-space-4);
  flex: 1;
}

.htm25-testimonials__card-quote-icon {
  color: var(--htm25-accent-primary);
  opacity: 0.25;
  line-height: 0;
}

.htm25-style--dark .htm25-testimonials__card-quote-icon {
  opacity: 0.40;
}

.htm25-style--neo .htm25-testimonials__card-quote-icon {
  opacity: 1;
  color: var(--htm25-swatch-black, #000);
}

.htm25-style--neo .htm25-testimonials__card--featured .htm25-testimonials__card-quote-icon {
  color: var(--htm25-swatch-black, #000);
}

/* ── Star rating ── */
.htm25-testimonials__card-rating {
  display: flex;
  gap: var(--htm25-space-1);
  align-items: center;
}

.htm25-testimonials__star {
  color: var(--htm25-accent-warning, #D97706);
  flex-shrink: 0;
}

.htm25-style--dark .htm25-testimonials__star--filled {
  color: var(--htm25-accent-primary);   /* electric lime in dark mode */
}

.htm25-style--neo .htm25-testimonials__star--filled {
  color: var(--htm25-swatch-orange, #FF6D00);
}

.htm25-testimonials__star--empty {
  opacity: 0.25;
}

/* ── Quote text ── */
.htm25-testimonials .htm25-testimonials__card-text {
  font-family: var(--htm25-font-body);
  font-size: var(--htm25-text-base);
  line-height: var(--htm25-leading-loose);
  color: var(--htm25-text-body);
  margin: 0;
  font-style: italic;
}

.htm25-style--neo .htm25-testimonials__card--featured .htm25-testimonials__card-text {
  color: var(--htm25-text-heading);
}

/* =========================================================
   AUTHOR
   ========================================================= */
.htm25-testimonials__card-author {
  display: flex;
  align-items: center;
  gap: var(--htm25-space-4);
  margin-top: auto;
  padding-top: var(--htm25-space-5);
  border-top: var(--htm25-divider-width) solid var(--htm25-divider-color);
}

/* ── Avatar ── */
.htm25-testimonials__card-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--htm25-radius-full);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--htm25-border-color);
}

.htm25-testimonials__card-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--htm25-radius-full);
  background-color: var(--htm25-accent-primary-lt, var(--htm25-bg-subtle));
  color: var(--htm25-accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-lg);
  font-weight: var(--htm25-weight-bold);
  flex-shrink: 0;
  border: 2px solid var(--htm25-border-color);
  text-transform: uppercase;
}

.htm25-style--neo .htm25-testimonials__card-avatar,
.htm25-style--neo .htm25-testimonials__card-avatar-placeholder {
  border-width: 3px;
  border-color: var(--htm25-swatch-black, #000);
  border-radius: 0;
}

/* ── Author info ── */
.htm25-testimonials__card-author-info {
  display: flex;
  flex-direction: column;
  gap: var(--htm25-space-1);
  min-width: 0;
}

.htm25-testimonials .htm25-testimonials__card-name {
  font-family: var(--htm25-font-heading);
  font-size: var(--htm25-text-sm);
  font-weight: var(--htm25-weight-semibold);
  color: var(--htm25-text-heading);
  line-height: var(--htm25-leading-tight);
  display: block;
}

.htm25-style--neo .htm25-testimonials__card--featured .htm25-testimonials__card-name {
  color: var(--htm25-text-heading);
}

.htm25-testimonials__card-meta {
  font-size: var(--htm25-text-xs);
  color: var(--htm25-text-muted);
  line-height: var(--htm25-leading-normal);
}

.htm25-testimonials__card-role {
  color: var(--htm25-text-muted);
}

.htm25-testimonials__card-sep {
  color: var(--htm25-text-faint);
  margin-inline: var(--htm25-space-1);
}

.htm25-testimonials__card-company {
  font-weight: var(--htm25-weight-medium);
  color: var(--htm25-accent-primary);
}

.htm25-style--neo .htm25-testimonials__card-company {
  color: var(--htm25-text-heading);
  font-weight: var(--htm25-weight-black, 900);
}

/* =========================================================
   CENTERED LAYOUT OVERRIDES
   ========================================================= */
.htm25-testimonials--centered .htm25-testimonials__card {
  padding: var(--htm25-space-10) var(--htm25-space-12);
}

.htm25-testimonials--centered .htm25-testimonials__card-quote-icon svg {
  width: 56px;
  height: 44px;
}

.htm25-testimonials--centered .htm25-testimonials__card-text {
  font-size: var(--htm25-text-xl);
  line-height: var(--htm25-leading-snug);
  text-align: center;
}

.htm25-testimonials--centered .htm25-testimonials__card-author {
  justify-content: center;
}

.htm25-testimonials--centered .htm25-testimonials__card-quote-icon {
  text-align: center;
}

.htm25-testimonials--centered .htm25-testimonials__card-rating {
  justify-content: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* 4-col → 2-col at 1200px */
@media (max-width: 1200px) {
  .htm25-testimonials--grid .htm25-testimonials__grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .htm25-testimonials--masonry .htm25-testimonials__grid--cols-4:not(:has(.htm25-testimonials__masonry-col)) {
    column-count: 2;
  }
}

/* 3-col → 2-col at 1024px */
@media (max-width: 1024px) {
  .htm25-testimonials--grid .htm25-testimonials__grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .htm25-testimonials--masonry .htm25-testimonials__grid--cols-3:not(:has(.htm25-testimonials__masonry-col)) {
    column-count: 2;
  }

  /* Round-robin flex columns are fixed server-side, so they can't
     dynamically regroup into fewer columns at this breakpoint — collapse
     straight to a single natural-order column. display:contents unwraps
     each column div so cards resume normal DOM order. */
  .htm25-testimonials--masonry .htm25-testimonials__grid:has(.htm25-testimonials__masonry-col) {
    flex-direction: column;
  }
  .htm25-testimonials__masonry-col {
    display: contents;
  }
}

/* All → 1-col at 640px */
@media (max-width: 640px) {
  .htm25-testimonials__header {
    margin-bottom: var(--htm25-space-8);
  }

  .htm25-testimonials--grid .htm25-testimonials__grid--cols-2,
  .htm25-testimonials--grid .htm25-testimonials__grid--cols-3,
  .htm25-testimonials--grid .htm25-testimonials__grid--cols-4 {
    grid-template-columns: 1fr;
  }

  .htm25-testimonials--masonry .htm25-testimonials__grid--cols-2:not(:has(.htm25-testimonials__masonry-col)),
  .htm25-testimonials--masonry .htm25-testimonials__grid--cols-3:not(:has(.htm25-testimonials__masonry-col)),
  .htm25-testimonials--masonry .htm25-testimonials__grid--cols-4:not(:has(.htm25-testimonials__masonry-col)) {
    column-count: 1;
  }

  .htm25-testimonials--centered .htm25-testimonials__card {
    padding: var(--htm25-space-8) var(--htm25-space-6);
  }

  .htm25-testimonials--centered .htm25-testimonials__card-text {
    font-size: var(--htm25-text-base);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .htm25-testimonials__blob {
    animation: none;
  }

  .htm25-testimonials__card,
  .htm25-testimonials__card--featured,
  .htm25-style--neo .htm25-testimonials__card,
  .htm25-style--neo .htm25-testimonials__card--featured {
    transition: none;
  }

  .htm25-testimonials__card:hover,
  .htm25-style--neo .htm25-testimonials__card:hover,
  .htm25-style--neo .htm25-testimonials__card--featured:hover {
    transform: none;
  }
}
/**
 * HT Mega 2026 — Contact Section Widget
 * File: assets/css/widgets/htm25-contact.css
 *
 * BEM component: .htm25-contact
 * Requires htm25-tokens.css (design token system).
 * Five style presets themed by the .htm25-style--{bento|glass|dark|aurora|neo}
 * wrapper class. Zero hardcoded colours except documented preset accents.
 *
 * Markup map (htmega_2025_contact.php → render_contact):
 *   .htm25-style--X
 *     .htm25-contact[--split|--centered|--info-only]
 *       .htm25-contact__bg-blobs > .htm25-contact__blob--1/2/3
 *       .htm25-contact__inner
 *         .htm25-contact__header
 *           .htm25-contact__section-label > .htm25-contact__label-dot
 *           .htm25-contact__headline > .htm25-contact__headline-accent
 *           .htm25-contact__description
 *         .htm25-contact__body
 *           .htm25-contact__form-col.htm25-contact__tile--form
 *           .htm25-contact__info-col
 *             .htm25-contact__tile--info  > __info-list > __info-item …
 *             .htm25-contact__minicards
 *               .htm25-contact__tile--hours  > __hours-list / __badge-open
 *               .htm25-contact__tile--social > __social-grid > __social-link
 *             .htm25-contact__tile--map    > iframe.htm25-contact__map
 *             .htm25-contact__tile--trust  > __trust-num / __trust-stars …
 */

/* =========================================================
   SECTION WRAPPER
   ========================================================= */
.htm25-contact {
	position: relative;
	overflow: hidden;
	padding-block: var(--htm25-section-py, 5rem);
	padding-inline: var(--htm25-section-px, 1.5rem);
	background-color: var(--htm25-bg-section, var(--htm25-bg-page, #f7f8fa));
	color: var(--htm25-text-body, #475467);
	font-family: var(--htm25-font-body, system-ui, sans-serif);
	line-height: var(--htm25-leading-normal, 1.6);
	/* ── Form field tokens (bento/default values) ── */
	--c-field-bg:            var(--htm25-bg-page, #fafbfc);
	--c-field-border:        var(--htm25-border-color, #e4e7ec);
	--c-field-border-width:  var(--htm25-border-width, 1px);
	--c-field-radius:        var(--htm25-radius-input, 0.75rem);
	--c-field-text:          var(--htm25-text-heading, #0f1117);
	--c-field-label:         var(--htm25-text-heading, #0f1117);
	--c-field-placeholder:   var(--htm25-text-muted, #a9b0bd);
	--c-field-focus-border:  var(--htm25-accent-primary, #3b6fff);
	--c-field-focus-shadow:  0 0 0 4px var(--htm25-accent-primary-lt, rgba(59, 111, 255, 0.12));
	/* ── Submit button tokens ── */
	--c-btn-bg:              var(--htm25-btn-primary-bg, var(--htm25-accent-primary, #3b6fff));
	--c-btn-text:            var(--htm25-btn-primary-text, #fff);
	--c-btn-hover-bg:        var(--htm25-btn-primary-bg-hover, var(--htm25-accent-primary-dk, #2953cc));
	--c-btn-radius:          var(--htm25-radius-btn, 0.75rem);
	--c-btn-border-width:    0px;
	--c-btn-shadow:          none;
	--c-btn-hover-shadow:    var(--htm25-btn-shadow-hover, 0 10px 22px rgba(59, 111, 255, 0.3));
	--c-btn-hover-transform: translateY(-2px);
}
.htm25-contact * { box-sizing: border-box; }

.htm25-contact__inner {
	position: relative;
	z-index: var(--htm25-z-raised, 1);
	max-width: var(--htm25-container-xl, 1200px);
	margin-inline: auto;
}

/* =========================================================
   HEADER
   ========================================================= */
.htm25-contact__header {
	max-width: 680px;
	margin: 0 auto var(--htm25-space-12, 3rem);
	text-align: center;
}
.htm25-contact .htm25-contact__section-label {
	display: inline-flex;
	align-items: center;
	gap: var(--htm25-space-2, 0.5rem);
	margin: 0 0 var(--htm25-space-4, 1rem);
	font-size: var(--htm25-text-xs, 0.75rem);
	font-weight: var(--htm25-weight-semibold, 600);
	letter-spacing: var(--htm25-tracking-wide, 0.08em);
	text-transform: uppercase;
	color: var(--htm25-accent-primary, #3b6fff);
	background: var(--htm25-accent-primary-lt, rgba(59, 111, 255, 0.1));
	padding: var(--htm25-space-1, 0.25rem) var(--htm25-space-3, 0.75rem);
	border-radius: var(--htm25-radius-full, 999px);
}
.htm25-contact__label-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--htm25-accent-primary, #3b6fff);
	box-shadow: 0 0 0 4px var(--htm25-accent-primary-lt, rgba(59, 111, 255, 0.18));
}
.htm25-contact .htm25-contact__headline {
	font-family: var(--htm25-font-heading, system-ui, sans-serif);
	font-size: var(--htm25-text-4xl, clamp(2.2rem, 1.8rem + 2vw, 3.4rem));
	font-weight: var(--htm25-weight-bold, 800);
	line-height: var(--htm25-leading-tight, 1.08);
	letter-spacing: var(--htm25-tracking-tight, -0.03em);
	color: var(--htm25-text-heading, #0f1117);
	margin: 0 0 var(--htm25-space-4, 1rem);
}
/* Base — always clip to text so Elementor gradient/color controls render as text, not a box */
.htm25-contact .htm25-contact__headline-accent {
	background-color: var(--htm25-accent-primary, #3b6fff);
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Glass + Aurora: gradient text */
.htm25-style--glass .htm25-contact__headline-accent,
.htm25-style--aurora .htm25-contact__headline-accent {
	background-color: transparent;
	background-image: var(--htm25-gradient-text, var(--htm25-gradient-btn));
}
.htm25-contact .htm25-contact__description {
	font-size: var(--htm25-text-lg, 1.15rem);
	color: var(--htm25-text-muted, #667085);
	margin: 0;
}

/* =========================================================
   BODY LAYOUTS
   ========================================================= */
.htm25-contact__body {
	display: grid;
	gap: var(--htm25-space-6, 1.5rem);
	align-items: start;
}
.htm25-contact--centered .htm25-contact__body {
	max-width: 680px;
	margin-inline: auto;
	grid-template-columns: 1fr;
}
.htm25-contact--info-only .htm25-contact__info-col {
	width: 100%;
}
.htm25-contact--split .htm25-contact__form-col,
.htm25-contact--split .htm25-contact__info-col,
.htm25-contact--split .htm25-contact__tile { min-width: 0; }

@media (max-width: 900px) {
	.htm25-contact.htm25-contact--split .htm25-contact__body {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   TILE — shared card surface for every block
   ========================================================= */
.htm25-contact__tile {
	background: var(--htm25-bg-card, #fff);
	border: var(--htm25-border-width, 1px) var(--htm25-border-style, solid) var(--htm25-border-color, #e4e7ec);
	border-radius: var(--htm25-radius-2xl, 1.5rem);
	box-shadow: var(--htm25-shadow-card, 0 4px 12px rgba(16, 24, 40, 0.05));
	padding: clamp(1.4rem, 1rem + 1.5vw, 1.9rem);
	transition:
		transform var(--htm25-duration-normal, 0.25s) var(--htm25-ease-out, ease),
		box-shadow var(--htm25-duration-normal, 0.25s) var(--htm25-ease-out, ease),
		border-color var(--htm25-duration-normal, 0.25s) var(--htm25-ease-out, ease);
}
.htm25-contact__tile--form { padding: clamp(1.6rem, 1rem + 2vw, 2.4rem); }

.htm25-contact__info-col {
	display: flex;
	flex-direction: column;
	gap: var(--htm25-space-6, 1.5rem);
}

/* Mini cards (hours + social) sit side-by-side */
.htm25-contact__minicards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--htm25-space-6, 1.5rem);
}
.htm25-contact__minicards:empty { display: none; }
@media (max-width: 520px) {
	.htm25-contact__minicards { grid-template-columns: 1fr; }
}

.htm25-contact__tile-label {
	display: block;
	font-size: var(--htm25-text-xs, 0.72rem);
	font-weight: var(--htm25-weight-semibold, 700);
	letter-spacing: var(--htm25-tracking-wide, 0.1em);
	text-transform: uppercase;
	color: var(--htm25-text-muted, #8a91a0);
	margin-bottom: var(--htm25-space-4, 1.1rem);
}

/* =========================================================
   INFO LIST
   ========================================================= */
.htm25-contact .htm25-contact__info-list { list-style: none; margin: 0; padding: 0; }
.htm25-contact__info-item {
	display: flex;
	align-items: flex-start;
	gap: var(--htm25-space-3, 0.9rem);
	padding: var(--htm25-space-3, 0.75rem) 0;
}
.htm25-contact__info-item + .htm25-contact__info-item {
	border-top: 1px solid var(--htm25-border-color, #e6e8ec);
}
.htm25-contact__info-icon {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: var(--htm25-radius-icon, 0.75rem);
	background: var(--htm25-accent-primary-lt, rgba(59, 111, 255, 0.1));
	color: var(--htm25-accent-primary, #3b6fff);
	display: grid;
	place-items: center;
}
.htm25-contact__info-icon svg { width: 20px; height: 20px; }
.htm25-contact__info-content { flex: 1; min-width: 0; }
.htm25-contact__info-label {
	display: block;
	font-size: var(--htm25-text-xs, 0.72rem);
	font-weight: var(--htm25-weight-semibold, 600);
	letter-spacing: var(--htm25-tracking-wide, 0.06em);
	text-transform: uppercase;
	color: var(--htm25-text-muted, #8a91a0);
	margin-bottom: 2px;
}
.htm25-contact__info-value {
	display: block;
	font-size: var(--htm25-text-base, 0.98rem);
	font-weight: var(--htm25-weight-medium, 500);
	color: var(--htm25-text-heading, #0f1117);
	line-height: var(--htm25-leading-snug, 1.4);
	word-break: break-word;
	text-decoration: none;
}
a.htm25-contact__info-value:hover { color: var(--htm25-accent-primary, #3b6fff); }

/* =========================================================
   WORKING HOURS
   ========================================================= */
.htm25-contact .htm25-contact__hours-list { list-style: none; margin: 0; padding: 0; }
.htm25-contact__hours-row {
	display: flex;
	justify-content: space-between;
	gap: var(--htm25-space-2, 0.5rem);
	padding: var(--htm25-space-2, 0.5rem) 0;
	font-size: var(--htm25-text-sm, 0.9rem);
	border-bottom: 1px solid var(--htm25-border-color, #e6e8ec);
}
.htm25-contact__hours-row:last-child { border-bottom: 0; }
.htm25-contact__hours-row span:last-child {
	color: var(--htm25-text-heading, #0f1117);
	font-weight: var(--htm25-weight-semibold, 600);
}
.htm25-contact__badge-open {
	display: inline-flex;
	align-items: center;
	gap: var(--htm25-space-1, 0.4rem);
	margin-top: var(--htm25-space-3, 0.8rem);
	font-size: var(--htm25-text-xs, 0.75rem);
	font-weight: var(--htm25-weight-semibold, 600);
	color: var(--htm25-accent-success, #16a34a);
	background: rgba(22, 163, 74, 0.12);
	padding: var(--htm25-space-1, 0.3rem) var(--htm25-space-3, 0.7rem);
	border-radius: var(--htm25-radius-full, 999px);
}
.htm25-contact__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--htm25-accent-success, #16a34a);
	animation: htm25-contact-pulse 2s infinite;
}
@keyframes htm25-contact-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@media (prefers-reduced-motion: reduce) { .htm25-contact__badge-dot { animation: none; } }

/* =========================================================
   SOCIAL
   ========================================================= */
.htm25-contact__social-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--htm25-space-2, 0.6rem);
}
.htm25-contact__social-link {
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	border: 1px solid var(--htm25-border-color, #e6e8ec);
	border-radius: var(--htm25-radius-md, 0.75rem);
	color: var(--htm25-text-body, #475467);
	transition: var(--htm25-duration-normal, 0.2s) var(--htm25-ease-out, ease);
}
.htm25-contact__social-link:hover {
	background: var(--htm25-accent-primary, #3b6fff);
	color: var(--htm25-text-inverse, #fff);
	border-color: var(--htm25-accent-primary, #3b6fff);
	transform: translateY(-2px);
}
.htm25-contact__social-link svg { width: 19px; height: 19px; }

/* =========================================================
   MAP
   ========================================================= */
.htm25-contact__tile--map { padding: 0; overflow: hidden; }
.htm25-contact__map {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 230px;
	border: 0;
}
.htm25-contact__map-wrap--full {
	margin-top: var(--htm25-space-10, 2.5rem);
	max-width: var(--htm25-container-xl, 1200px);
	margin-inline: auto;
}
.htm25-contact__map-wrap--full .htm25-contact__map { aspect-ratio: 21 / 7; min-height: 280px; }

/* =========================================================
   TRUST BLOCK
   ========================================================= */
.htm25-contact__tile--trust {
	background: linear-gradient(135deg, var(--htm25-accent-primary, #3b6fff), var(--htm25-accent-secondary, #7c3aed));
	border: none;
	color: var(--htm25-text-inverse, #fff);
}
.htm25-contact__tile--trust .htm25-contact__tile-label { color: rgba(255, 255, 255, 0.7); }
.htm25-contact__trust-num {
	font-size: var(--htm25-text-4xl, 2.4rem);
	font-weight: var(--htm25-weight-bold, 800);
	letter-spacing: var(--htm25-tracking-tight, -0.02em);
	line-height: 1;
	color: #fff;
}
.htm25-contact__trust-sub {
	font-size: var(--htm25-text-sm, 0.9rem);
	color: rgba(255, 255, 255, 0.85);
	margin-top: 4px;
}
.htm25-contact__trust-stars {
	color: #ffd600;
	letter-spacing: 2px;
	margin-top: var(--htm25-space-3, 0.9rem);
}
.htm25-contact__trust-foot {
	font-size: var(--htm25-text-xs, 0.82rem);
	color: rgba(255, 255, 255, 0.8);
	margin-top: 4px;
}

/* =========================================================
   BACKGROUND BLOBS (glass + aurora)
   ========================================================= */
.htm25-contact__bg-blobs {
	position: absolute;
	inset: 0;
	z-index: var(--htm25-z-base, 0);
	pointer-events: none;
	overflow: hidden;
}
.htm25-contact__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.5;
	animation: htm25-contactblob-drift 18s ease-in-out infinite alternate;
}
.htm25-contact__blob--1 {
	width: 55vw; height: 45vw; max-width: 760px; max-height: 600px;
	top: -18%; left: -12%;
	background: radial-gradient(circle, var(--htm25-accent-primary, #786eff) 0%, transparent 70%);
}
.htm25-contact__blob--2 {
	width: 48vw; height: 42vw; max-width: 680px; max-height: 560px;
	bottom: -20%; right: -10%;
	background: radial-gradient(circle, var(--htm25-accent-secondary, #06b6d4) 0%, transparent 70%);
	animation-delay: -7s;
}
.htm25-contact__blob--3 {
	width: 40vw; height: 40vw; max-width: 560px; max-height: 560px;
	top: 30%; left: 40%;
	background: radial-gradient(circle, var(--htm25-accent-tertiary, #7c3aed) 0%, transparent 70%);
	animation-delay: -12s;
}
@keyframes htm25-contactblob-drift {
	0%   { transform: translate(0, 0) scale(1); }
	100% { transform: translate(5%, 4%) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) { .htm25-contact__blob { animation: none; } }

/* =========================================================
   FORM HEADING / SUBHEADING
   ========================================================= */
.htm25-contact__form-heading {
	font-size: var(--htm25-text-xl, 1.4rem);
	font-weight: var(--htm25-weight-bold, 700);
	color: var(--htm25-text-heading, #0f1117);
	line-height: var(--htm25-leading-tight, 1.15);
	margin: 0 0 4px;
}
.htm25-contact__form-subheading {
	font-size: var(--htm25-text-sm, 0.95rem);
	color: var(--htm25-text-muted, #667085);
	margin: 0 0 var(--htm25-space-6, 1.5rem);
}

/* =========================================================
   FORM FIELD TOKENS — per-preset overrides
   All form colours reference the --c-field-* / --c-btn-*
   tokens defined on .htm25-contact, so swapping the preset
   class automatically repaints every external plugin form.
   ========================================================= */
.htm25-contact.htm25-style--glass {
	--c-field-bg:           rgba(255, 255, 255, 0.05);
	--c-field-border:       rgba(255, 255, 255, 0.14);
	--c-field-text:         #fff;
	--c-field-label:        rgba(255, 255, 255, 0.85);
	--c-field-placeholder:  rgba(255, 255, 255, 0.45);
	--c-btn-bg:             var(--htm25-gradient-btn, var(--htm25-accent-primary, #3b6fff));
	--c-btn-hover-bg:       var(--htm25-gradient-btn, var(--htm25-accent-primary, #3b6fff));
}
.htm25-contact.htm25-style--dark {
	--c-field-bg:           #0c0c0e;
	--c-field-border:       rgba(255, 255, 255, 0.12);
	--c-field-text:         #fafafa;
	--c-field-label:        rgba(255, 255, 255, 0.7);
	--c-field-placeholder:  rgba(255, 255, 255, 0.35);
	--c-btn-hover-shadow:   0 10px 22px rgba(228, 255, 60, 0.3);
}
.htm25-contact.htm25-style--aurora {
	--c-field-bg:           rgba(255, 255, 255, 0.05);
	--c-field-border:       rgba(255, 255, 255, 0.12);
	--c-field-text:         #fff;
	--c-field-label:        rgba(255, 255, 255, 0.85);
	--c-field-placeholder:  rgba(255, 255, 255, 0.45);
	--c-btn-bg:             var(--htm25-gradient-btn, var(--htm25-accent-primary, #3b6fff));
	--c-btn-hover-bg:       var(--htm25-gradient-btn, var(--htm25-accent-primary, #3b6fff));
}
.htm25-contact.htm25-style--neo {
	--c-field-bg:            #fff;
	--c-field-border:        #000;
	--c-field-border-width:  2px;
	--c-field-radius:        0;
	--c-field-text:          #111;
	--c-field-label:         #000;
	--c-field-focus-border:  var(--htm25-accent-tertiary, #0038ff);
	--c-field-focus-shadow:  4px 4px 0 var(--htm25-accent-tertiary, #0038ff);
	--c-btn-bg:              var(--htm25-accent-primary, #ffe500);
	--c-btn-text:            #000;
	--c-btn-hover-bg:        var(--htm25-accent-tertiary, #00e0a4);
	--c-btn-radius:          0;
	--c-btn-border-width:    3px;
	--c-btn-shadow:          5px 5px 0 #000;
	--c-btn-hover-shadow:    7px 7px 0 #000;
	--c-btn-hover-transform: translate(-2px, -2px);
}

/* =========================================================
   THIRD-PARTY FORM NORMALISATION
   ========================================================= */
.htm25-contact .htm25-contact__form-col h2,
.htm25-contact .htm25-contact__form-col .htm25-contact__form-title {
	font-size: var(--htm25-text-xl, 1.4rem);
	font-weight: var(--htm25-weight-bold, 700);
	color: var(--htm25-text-heading, #0f1117);
	margin-bottom: var(--htm25-space-4, 1rem);
}
/* Double-class selector (0,2,1+) beats most external plugin CSS (0,1,1–0,2,1).
   Colours resolve from --c-field-* tokens set on .htm25-contact, so switching
   the preset class automatically repaints every external plugin form. */
.htm25-contact .htm25-contact__form-col input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.htm25-contact .htm25-contact__form-col select,
.htm25-contact .htm25-contact__form-col textarea {
	width: 100%;
	padding: var(--htm25-space-3, 0.8rem) var(--htm25-space-4, 1rem);
	font-family: inherit;
	font-size: var(--htm25-text-base, 0.95rem);
	color: var(--c-field-text);
	background-color: var(--c-field-bg);
	border: var(--c-field-border-width) solid var(--c-field-border);
	border-radius: var(--c-field-radius);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}
.htm25-contact .htm25-contact__form-col textarea { min-height: 120px; resize: vertical; }
.htm25-contact .htm25-contact__form-col input:focus,
.htm25-contact .htm25-contact__form-col select:focus,
.htm25-contact .htm25-contact__form-col textarea:focus {
	border-color: var(--c-field-focus-border);
	box-shadow: var(--c-field-focus-shadow);
}
.htm25-contact .htm25-contact__form-col input::placeholder,
.htm25-contact .htm25-contact__form-col textarea::placeholder { color: var(--c-field-placeholder); }
.htm25-contact .htm25-contact__form-col label {
	font-size: var(--htm25-text-sm, 0.82rem);
	font-weight: var(--htm25-weight-medium, 600);
	color: var(--c-field-label);
}
.htm25-contact .htm25-contact__form-col input[type="submit"],
.htm25-contact .htm25-contact__form-col button[type="submit"],
.htm25-contact .htm25-contact__form-col .wpcf7-submit,
.htm25-contact .htm25-contact__form-col .ff-btn-submit,
.htm25-contact .htm25-contact__form-col .wpforms-submit,
.htm25-contact .htm25-contact__form-col .gform_button,
.htm25-contact .htm25-contact__form-col .nf-field-submit input {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: var(--htm25-space-2, 0.5rem);
	padding: var(--htm25-btn-py, 0.95rem) var(--htm25-btn-px, 1.5rem);
	font-family: inherit;
	font-size: var(--htm25-btn-font-size, 1rem);
	font-weight: var(--htm25-btn-font-weight, 700);
	color: var(--c-btn-text);
	background: var(--c-btn-bg);
	border: var(--c-btn-border-width) solid var(--c-field-border);
	border-radius: var(--c-btn-radius);
	box-shadow: var(--c-btn-shadow);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.htm25-contact .htm25-contact__form-col input[type="submit"]:hover,
.htm25-contact .htm25-contact__form-col button[type="submit"]:hover,
.htm25-contact .htm25-contact__form-col .wpcf7-submit:hover,
.htm25-contact .htm25-contact__form-col .ff-btn-submit:hover,
.htm25-contact .htm25-contact__form-col .wpforms-submit:hover,
.htm25-contact .htm25-contact__form-col .gform_button:hover,
.htm25-contact .htm25-contact__form-col .nf-field-submit input:hover {
	background: var(--c-btn-hover-bg);
	transform: var(--c-btn-hover-transform);
	box-shadow: var(--c-btn-hover-shadow);
}
.htm25-contact__form-placeholder {
	border-radius: var(--htm25-radius-2xl, 1.5rem) !important;
	border-color: var(--htm25-border-color, #e4e7ec) !important;
	color: var(--htm25-text-muted, #667085) !important;
}

/* =========================================================
   PRESET: BENTO — light tiles, hover lift
   ========================================================= */
.htm25-style--bento .htm25-contact__tile:hover {
	transform: translateY(-3px);
	box-shadow: var(--htm25-shadow-card-hover, 0 12px 24px rgba(16, 24, 40, 0.08));
}
.htm25-style--bento .htm25-contact__tile--form:hover,
.htm25-style--bento .htm25-contact__tile--map:hover,
.htm25-style--bento .htm25-contact__tile--trust:hover { transform: none; }

/* ── SPLIT LAYOUT: BENTO — 12-col mosaic ── */
@media (min-width: 901px) {
	.htm25-style--bento .htm25-contact--split .htm25-contact__body {
		grid-template-columns: repeat(12, 1fr);
		grid-auto-rows: min-content;
		gap: 18px;
		align-items: stretch;
	}
	.htm25-style--bento .htm25-contact--split .htm25-contact__info-col { display: contents; }
	.htm25-style--bento .htm25-contact--split .htm25-contact__minicards { display: contents; }
	.htm25-style--bento .htm25-contact--split .htm25-contact__form-col {
		grid-column: 1 / span 7;
		grid-row: 1 / span 2;
	}
	.htm25-style--bento .htm25-contact--split .htm25-contact__tile--map {
		grid-column: 8 / span 5;
		grid-row: 1;
	}
	.htm25-style--bento .htm25-contact--split .htm25-contact__tile--info {
		grid-column: 8 / span 5;
		grid-row: 2;
	}
	.htm25-style--bento .htm25-contact--split .htm25-contact__tile--hours {
		grid-column: 1 / span 4;
		grid-row: 3;
	}
	.htm25-style--bento .htm25-contact--split .htm25-contact__tile--social {
		grid-column: 5 / span 4;
		grid-row: 3;
	}
	.htm25-style--bento .htm25-contact--split .htm25-contact__tile--trust {
		grid-column: 9 / span 4;
		grid-row: 3;
	}
}
@media (min-width: 901px) {
	.htm25-style--bento .htm25-contact--split.htm25-contact--no-map .htm25-contact__tile--info {
		grid-row: 1 / span 2;
	}
}

/* ── SPLIT LAYOUT: GLASS / AURORA / NEO — 2-col (form | flex aside) ── */
@media (min-width: 901px) {
	.htm25-style--glass .htm25-contact--split .htm25-contact__body,
	.htm25-style--aurora .htm25-contact--split .htm25-contact__body,
	.htm25-style--neo .htm25-contact--split .htm25-contact__body {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 24px;
		align-items: start;
	}
}

/* ── SPLIT LAYOUT: DARK — centered form + 3-col info + map/trust strip ── */
@media (min-width: 901px) {
	.htm25-style--dark .htm25-contact--split .htm25-contact__body {
		display: block;
	}
	.htm25-style--dark .htm25-contact--split .htm25-contact__form-col {
		max-width: 660px;
		margin-inline: auto;
		margin-bottom: 18px;
	}
	.htm25-style--dark .htm25-contact--split .htm25-contact__info-col {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
	.htm25-style--dark .htm25-contact--split .htm25-contact__minicards { display: contents; }
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--info  { grid-column: 1; grid-row: 1; }
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--hours { grid-column: 2; grid-row: 1; }
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--social { grid-column: 3; grid-row: 1; }
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--map {
		grid-column: 1 / span 2;
		grid-row: 2;
	}
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--trust {
		grid-column: 3;
		grid-row: 2;
	}
}

/* ── SPLIT LAYOUT: ≤900px restore ── */
@media (max-width: 900px) {
	.htm25-contact--split .htm25-contact__info-col {
		display: flex;
		flex-direction: column;
	}
	.htm25-contact--split .htm25-contact__minicards {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--info,
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--hours,
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--social,
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--map,
	.htm25-style--dark .htm25-contact--split .htm25-contact__tile--trust {
		grid-column: unset;
		grid-row: unset;
	}
}
@media (max-width: 520px) {
	.htm25-contact--split .htm25-contact__minicards {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   PRESET: GLASS — frosted panels over gradient + glow
   ========================================================= */
.htm25-contact.htm25-style--glass { background: var(--htm25-gradient-hero, var(--htm25-bg-page)); }
.htm25-style--glass .htm25-contact__tile {
	background: var(--htm25-glass-bg, var(--htm25-bg-card));
	-webkit-backdrop-filter: var(--htm25-glass-blur, blur(20px));
	        backdrop-filter: var(--htm25-glass-blur, blur(20px));
	border-color: var(--htm25-border-color, rgba(255, 255, 255, 0.12));
	box-shadow: var(--htm25-shadow-card, 0 8px 32px rgba(0, 0, 0, 0.3));
}
.htm25-style--glass .htm25-contact__tile:hover {
	background: var(--htm25-glass-bg-hover, var(--htm25-glass-bg));
}
.htm25-style--glass .htm25-contact__tile--trust {
	background: linear-gradient(135deg, rgba(120, 110, 255, 0.25), rgba(6, 182, 212, 0.18));
	border: var(--htm25-border-width, 1px) var(--htm25-border-style, solid) var(--htm25-border-color);
	-webkit-backdrop-filter: var(--htm25-glass-blur, blur(20px));
	        backdrop-filter: var(--htm25-glass-blur, blur(20px));
}
.htm25-style--aurora .htm25-contact__tile--trust {
	background: linear-gradient(135deg, rgba(255, 60, 172, 0.22), rgba(124, 58, 237, 0.18));
	border: var(--htm25-border-width, 1px) var(--htm25-border-style, solid) var(--htm25-border-color);
	-webkit-backdrop-filter: var(--htm25-glass-blur, blur(20px));
	        backdrop-filter: var(--htm25-glass-blur, blur(20px));
}
.htm25-style--glass .htm25-contact__map,
.htm25-style--aurora .htm25-contact__map {
	filter: invert(0.92) hue-rotate(190deg) saturate(0.75) brightness(0.88);
}

/* =========================================================
   PRESET: DARK — minimal surface, lime accent
   ========================================================= */
.htm25-style--dark .htm25-contact__tile { box-shadow: none; }
.htm25-style--dark .htm25-contact__tile:hover {
	border-color: var(--htm25-border-color-strong, #3f3f46);
	transform: translateY(-3px);
}
.htm25-style--dark .htm25-contact__tile--form:hover { transform: none; }
.htm25-style--dark .htm25-contact__info-icon {
	background: rgba(228, 255, 60, 0.1);
	color: var(--htm25-accent-primary, #e4ff3c);
}
.htm25-style--dark .htm25-contact__social-link:hover {
	background: var(--htm25-accent-primary, #e4ff3c);
	color: #09090b;
	border-color: var(--htm25-accent-primary, #e4ff3c);
}
.htm25-style--dark .htm25-contact__badge-open {
	color: var(--htm25-accent-primary, #e4ff3c);
	background: rgba(228, 255, 60, 0.1);
}
.htm25-style--dark .htm25-contact__badge-dot {
	background: var(--htm25-accent-primary, #e4ff3c);
	box-shadow: 0 0 8px var(--htm25-accent-primary, #e4ff3c);
}
.htm25-style--dark .htm25-contact__section-label {
	background: transparent;
	color: var(--htm25-accent-primary, #e4ff3c);
	border-radius: 0;
	padding: 0;
	gap: 0.75rem;
}
.htm25-style--dark .htm25-contact__label-dot { display: none; }
.htm25-style--dark .htm25-contact__section-label::before,
.htm25-style--dark .htm25-contact__section-label::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: currentColor;
}
.htm25-style--dark .htm25-contact__map { filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.85); }
.htm25-style--dark .htm25-contact__tile--trust {
	background: var(--htm25-bg-card, #111113);
	border: var(--htm25-border-width, 1px) var(--htm25-border-style, solid) var(--htm25-border-color, #27272a);
}
.htm25-style--dark .htm25-contact__trust-num { color: var(--htm25-accent-primary, #e4ff3c); }
.htm25-style--dark .htm25-contact__tile--trust .htm25-contact__tile-label,
.htm25-style--dark .htm25-contact__trust-sub,
.htm25-style--dark .htm25-contact__trust-foot { color: var(--htm25-text-body, #a1a1aa); }
.htm25-style--dark .htm25-contact__trust-stars { color: var(--htm25-accent-primary, #e4ff3c); }

/* =========================================================
   PRESET: AURORA — vivid mesh, elevated glass
   ========================================================= */
.htm25-contact.htm25-style--aurora { background: var(--htm25-gradient-hero, var(--htm25-bg-page)); }
.htm25-style--aurora .htm25-contact__tile {
	background: var(--htm25-glass-bg, var(--htm25-bg-card));
	-webkit-backdrop-filter: var(--htm25-glass-blur, blur(22px));
	        backdrop-filter: var(--htm25-glass-blur, blur(22px));
	border-color: var(--htm25-border-color, rgba(255, 255, 255, 0.1));
	box-shadow: var(--htm25-shadow-lg, 0 20px 60px rgba(0, 0, 0, 0.4));
}
/* =========================================================
   PRESET: NEO-BRUTALIST — hard borders, offset shadows
   ========================================================= */
.htm25-style--neo .htm25-contact__tile {
	border: var(--htm25-border-width-thick, 3px) solid var(--htm25-border-color, #000);
	border-radius: 0;
	box-shadow: 7px 7px 0 var(--htm25-border-color, #000);
}
.htm25-style--neo .htm25-contact__tile:hover {
	transform: translate(-2px, -2px);
	box-shadow: 9px 9px 0 var(--htm25-border-color, #000);
}
.htm25-style--neo .htm25-contact__tile--form:hover,
.htm25-style--neo .htm25-contact__tile--map:hover { transform: none; box-shadow: 7px 7px 0 var(--htm25-border-color, #000); }
.htm25-style--neo .htm25-contact__section-label {
	border-radius: 0;
	border: var(--htm25-border-width-thick, 2px) solid var(--htm25-border-color, #000);
	box-shadow: 4px 4px 0 var(--htm25-border-color, #000);
	color: var(--htm25-text-heading, #000);
	background: var(--htm25-accent-primary, #ffe500);
}
.htm25-style--neo .htm25-contact__label-dot { background: var(--htm25-border-color, #000); box-shadow: none; border-radius: 0; }
.htm25-style--neo .htm25-contact__tile-label {
	display: inline-block;
	color: var(--htm25-text-heading, #000);
	background: var(--htm25-accent-tertiary, #00e0a4);
	border: var(--htm25-border-width-thick, 2px) solid var(--htm25-border-color, #000);
	box-shadow: 3px 3px 0 var(--htm25-border-color, #000);
	padding: 0.25rem 0.6rem;
}
.htm25-style--neo .htm25-contact__info-icon {
	border-radius: 0;
	border: var(--htm25-border-width-thick, 2px) solid var(--htm25-border-color, #000);
	background: var(--htm25-accent-secondary, #ff2d78);
	color: #fff;
}
.htm25-style--neo .htm25-contact__info-item + .htm25-contact__info-item { border-top: 2px dashed var(--htm25-border-color, #000); }
.htm25-style--neo .htm25-contact__social-link {
	border-radius: 0;
	border: var(--htm25-border-width-thick, 2px) solid var(--htm25-border-color, #000);
}
.htm25-style--neo .htm25-contact__social-link:hover {
	background: var(--htm25-accent-secondary, #ff2d78);
	transform: translate(-2px, -2px);
	box-shadow: 3px 3px 0 var(--htm25-border-color, #000);
}
.htm25-style--neo .htm25-contact__badge-open {
	border-radius: 0;
	color: var(--htm25-text-heading, #000);
	background: var(--htm25-accent-tertiary, #00e0a4);
	border: var(--htm25-border-width-thick, 2px) solid var(--htm25-border-color, #000);
	box-shadow: 3px 3px 0 var(--htm25-border-color, #000);
}
.htm25-style--neo .htm25-contact__badge-dot { border-radius: 0; background: var(--htm25-border-color, #000); animation: none; }
.htm25-style--neo .htm25-contact__tile--hours {
	background: #0038FF;
	color: #fff;
}
.htm25-style--neo .htm25-contact__tile--hours .htm25-contact__tile-label {
	background: var(--htm25-accent-primary, #ffe500);
	color: #000;
	box-shadow: 3px 3px 0 #000;
}
.htm25-style--neo .htm25-contact__tile--hours .htm25-contact__hours-row {
	color: rgba(255, 255, 255, 0.85);
	border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
}
.htm25-style--neo .htm25-contact__tile--hours .htm25-contact__hours-row:last-child { border-bottom: 0; }
.htm25-style--neo .htm25-contact__tile--hours .htm25-contact__hours-row span:last-child { color: #fff; }
.htm25-style--neo .htm25-contact__tile--hours .htm25-contact__badge-open {
	background: var(--htm25-accent-primary, #ffe500);
	color: #000;
	border-color: #000;
	box-shadow: 3px 3px 0 #000;
}
.htm25-style--neo .htm25-contact__tile--hours .htm25-contact__badge-dot { background: #000; border-radius: 0; }
.htm25-style--neo .htm25-contact__hours-row { border-bottom: 2px dashed var(--htm25-border-color, #000); font-weight: var(--htm25-weight-medium, 700); }
.htm25-style--neo .htm25-contact__map { filter: grayscale(1) contrast(1.2); }
.htm25-style--neo .htm25-contact__tile--trust {
	background: var(--htm25-accent-secondary, #ff2d78);
	color: #fff;
}
.htm25-style--neo .htm25-contact__tile--trust .htm25-contact__tile-label {
	background: var(--htm25-accent-primary, #ffe500);
	color: var(--htm25-text-heading, #000);
}
.htm25-style--neo .htm25-contact__trust-stars { color: var(--htm25-accent-primary, #ffe500); -webkit-text-stroke: 1px var(--htm25-border-color, #000); }

/* =========================================================
   HEADLINE ACCENT — per-preset overrides
   ========================================================= */
/* Neo: pink accent text; user gradient clips to text same as other styles */
.htm25-style--neo .htm25-contact__headline-accent {
  background-color: #FF2D78;
  background-image: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
	.htm25-contact { padding-block: var(--htm25-space-16, 4rem); }
	.htm25-contact__header { margin-bottom: var(--htm25-space-10, 2.5rem); }
	.htm25-contact__blob { filter: blur(60px); }
}
