/* ============================================================
   Care Equip — site.css  v2
   Refined clinical luxury aesthetic.
   DM Serif Display (headlines) + DM Sans (body)
   Warm off-white base, deep navy, sage teal accents.
   ============================================================ */

/* ── 1. CSS Custom Properties ───────────────────────────── */
:root {
  /* Core palette */
  --ce-navy:          #0a2540;
  --ce-navy-mid:      #163d6b;
  --ce-blue:          #1a56a0;
  --ce-blue-light:    #e8f0fb;
  --ce-teal:          #1a7a72;
  --ce-teal-light:    #e4f4f2;
  --ce-teal-dark:     #135f58;

  /* Neutral warm base */
  --ce-cream:         #faf8f5;
  --ce-cream-mid:     #f3f0eb;
  --ce-cream-dark:    #e8e4dc;
  --ce-stone:         #c8c2b8;
  --ce-stone-dark:    #9e9790;

  /* Text */
  --ce-text:          #0d1b2a;
  --ce-text-mid:      #2d3d4e;
  --ce-muted:         #6b7a8d;

  /* Accents */
  --ce-gold:          #c8963c;
  --ce-gold-light:    #f7edd8;
  --ce-whatsapp:      #25d366;
  --ce-whatsapp-dark: #1da851;
  --ce-error:         #c0392b;

  /* Elevation */
  --ce-shadow-xs:  0 1px 4px rgba(10,37,64,0.06);
  --ce-shadow-sm:  0 2px 10px rgba(10,37,64,0.08);
  --ce-shadow-md:  0 6px 24px rgba(10,37,64,0.10);
  --ce-shadow-lg:  0 16px 48px rgba(10,37,64,0.13);
  --ce-shadow-xl:  0 32px 72px rgba(10,37,64,0.16);

  /* Radii */
  --ce-r-xs:   4px;
  --ce-r-sm:   8px;
  --ce-r-md:   14px;
  --ce-r-lg:   20px;
  --ce-r-xl:   28px;
  --ce-r-full: 9999px;

  /* Motion */
  --ce-ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ce-ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ce-t-fast:   0.15s var(--ce-ease);
  --ce-t-med:    0.3s  var(--ce-ease);
  --ce-t-slow:   0.55s var(--ce-ease);

  /* Typography */
  --ce-font-display: 'DM Serif Display', Georgia, serif;
  --ce-font-body:    'DM Sans', system-ui, sans-serif;
  --ce-font-mono:    'JetBrains Mono', 'Fira Code', monospace;
}


/* ── 2. Base Resets ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  margin: 0;
  background-color: var(--ce-cream);
  color: var(--ce-text);
  font-family: var(--ce-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain overlay on body for texture depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--ce-blue);
  outline-offset: 3px;
  border-radius: 3px;
}


/* ── 3. Navigation ──────────────────────────────────────── */

#site-header {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: background var(--ce-t-med), box-shadow var(--ce-t-med), border-color var(--ce-t-med);
  border-bottom: 1px solid transparent;
}

#site-header.nav-scrolled {
  background: rgba(250, 248, 245, 0.97);
  box-shadow: 0 1px 0 rgba(10,37,64,0.06), 0 4px 20px rgba(10,37,64,0.06);
  border-bottom-color: var(--ce-cream-dark);
}

/* Nav logo (image variant) */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--ce-font-display);
  font-size: 1.2rem;
  color: var(--ce-navy);
  letter-spacing: -0.01em;
  line-height: 1;
  transition: opacity var(--ce-t-fast);
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo .nav-logo-text { display: none; }
@media (max-width: 380px) {
  .nav-logo img { height: 36px; }
}

/* Desktop nav links */
.nav-link {
  font-family: var(--ce-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ce-text-mid);
  position: relative;
  padding: 6px 0;
  transition: color var(--ce-t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--ce-teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ce-t-med);
}
.nav-link:hover { color: var(--ce-navy); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-link--active {
  color: var(--ce-navy) !important;
  font-weight: 600;
}
.nav-link--active::after {
  transform: scaleX(1) !important;
}

/* Hamburger */
#hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--ce-r-sm);
  transition: background var(--ce-t-fast);
}
#hamburger-btn:hover { background: var(--ce-cream-mid); }

.hamburger-bar {
  width: 100%;
  height: 1.5px;
  background: var(--ce-navy);
  border-radius: 2px;
  transition: var(--ce-t-med);
  transform-origin: center;
}
body.nav-open .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
#nav-drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: var(--ce-cream);
  padding: 1.5rem 1.5rem 3rem;
  gap: 0;
  z-index: 40;
  overflow-y: auto;
  border-top: 1px solid var(--ce-cream-dark);
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity 0.22s var(--ce-ease), transform 0.22s var(--ce-ease);
}
body.nav-open #nav-drawer { display: flex; transform: translateY(0); opacity: 1; }
body.nav-open { overflow: hidden; }

.nav-drawer-link {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  font-family: var(--ce-font-body);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--ce-text-mid);
  border-bottom: 1px solid var(--ce-cream-dark);
  transition: color var(--ce-t-fast), padding-left var(--ce-t-fast);
}
.nav-drawer-link:hover { color: var(--ce-navy); padding-left: 6px; }
.nav-drawer-link.nav-link--active { color: var(--ce-navy); font-weight: 600; }

@media (max-width: 768px) {
  #hamburger-btn { display: flex; }
  #desktop-nav   { display: none !important; }
}


/* ── 4. Page Hero ────────────────────────────────────────── */

.page-hero {
  background: linear-gradient(150deg, var(--ce-navy) 0%, var(--ce-navy-mid) 55%, var(--ce-teal-dark) 100%);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative arc */
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-title {
  font-family: var(--ce-font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  color: white;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.page-hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0;
  line-height: 1.65;
  font-weight: 400;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
  font-family: var(--ce-font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-sep { font-size: 0.7rem; opacity: 0.4; }
.breadcrumb-current { color: rgba(255,255,255,0.9); }


/* ── 5. Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ce-font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: var(--ce-r-full);
  padding: 0.8125rem 1.75rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--ce-t-fast), color var(--ce-t-fast),
              border-color var(--ce-t-fast), box-shadow var(--ce-t-fast),
              transform var(--ce-t-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: inherit;
}
.btn:hover::before { opacity: 0.07; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--ce-navy);
  color: white;
  box-shadow: var(--ce-shadow-sm);
}
.btn-primary:hover {
  background: var(--ce-blue);
  box-shadow: var(--ce-shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ce-navy);
  border-color: var(--ce-navy);
}
.btn-secondary:hover {
  background: var(--ce-navy);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-white {
  background: white;
  color: var(--ce-navy);
  border-color: transparent;
}
.btn-white:hover {
  background: var(--ce-cream-mid);
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--ce-teal);
  color: white;
}
.btn-teal:hover {
  background: var(--ce-teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--ce-shadow-md);
}

.btn-whatsapp {
  background: var(--ce-whatsapp);
  color: white;
}
.btn-whatsapp:hover {
  background: var(--ce-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}

.btn-sm  { font-size: 0.875rem; padding: 0.625rem 1.25rem; }
.btn-lg  { font-size: 1rem;     padding: 0.9375rem 2.25rem; }


/* ── 6. Section Typography Utilities ────────────────────── */

.section-label {
  display: inline-block;
  font-family: var(--ce-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ce-teal);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--ce-font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--ce-navy);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.015em;
}

.section-body {
  font-size: 1.0625rem;
  color: var(--ce-muted);
  line-height: 1.72;
  max-width: 580px;
  font-weight: 400;
}


/* ── 7. Cards ───────────────────────────────────────────── */

.card {
  background: white;
  border-radius: var(--ce-r-lg);
  overflow: hidden;
  box-shadow: var(--ce-shadow-xs);
  border: 1px solid var(--ce-cream-dark);
  transition: box-shadow var(--ce-t-med), transform var(--ce-t-med), border-color var(--ce-t-med);
}
.card:hover {
  box-shadow: var(--ce-shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.card-body { padding: 1.75rem; }

/* Service card */
.service-card {
  background: white;
  border-radius: var(--ce-r-lg);
  overflow: hidden;
  box-shadow: var(--ce-shadow-xs);
  border: 1px solid var(--ce-cream-dark);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ce-t-med), transform var(--ce-t-med), border-color var(--ce-t-med);
}
.service-card:hover {
  box-shadow: var(--ce-shadow-md);
  transform: translateY(-4px);
  border-color: rgba(26,86,160,0.12);
}

.service-card-img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--ce-r-full);
  margin-bottom: 0.875rem;
  width: fit-content;
}
.service-card-badge.rental      { background: var(--ce-blue-light);  color: var(--ce-blue); }
.service-card-badge.sales        { background: var(--ce-teal-light);  color: var(--ce-teal-dark); }
.service-card-badge.installation { background: var(--ce-gold-light);  color: #8b6320; }
.service-card-badge.delivery     { background: #ede9fe;              color: #5b21b6; }

.service-card-title {
  font-family: var(--ce-font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ce-navy);
  margin: 0 0 0.5rem;
}
.service-card-desc {
  font-size: 0.875rem;
  color: var(--ce-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1.25rem;
}
.service-card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ce-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.service-card-cta:hover { gap: 0.55rem; color: var(--ce-navy); }


/* Blog card */
.blog-card {
  background: white;
  border-radius: var(--ce-r-lg);
  overflow: hidden;
  border: 1px solid var(--ce-cream-dark);
  box-shadow: var(--ce-shadow-xs);
  transition: box-shadow var(--ce-t-med), transform var(--ce-t-med), border-color var(--ce-t-med);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--ce-shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.6s var(--ce-ease);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ce-teal);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--ce-font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ce-navy);
  margin: 0 0 0.625rem;
  line-height: 1.35;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--ce-blue); }
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--ce-muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 1.25rem;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ce-stone-dark);
  margin-top: auto;
}


/* ── 8. Filter Bar ──────────────────────────────────────── */

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.filter-btn {
  font-family: var(--ce-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1.125rem;
  border-radius: var(--ce-r-full);
  border: 1px solid var(--ce-cream-dark);
  background: white;
  color: var(--ce-muted);
  cursor: pointer;
  transition: background var(--ce-t-fast), color var(--ce-t-fast), border-color var(--ce-t-fast), box-shadow var(--ce-t-fast);
}
.filter-btn:hover {
  border-color: var(--ce-navy);
  color: var(--ce-navy);
  box-shadow: var(--ce-shadow-xs);
}
.filter-btn.active {
  background: var(--ce-navy);
  color: white;
  border-color: var(--ce-navy);
  box-shadow: var(--ce-shadow-sm);
}


/* ── 9. Stat Strip ──────────────────────────────────────── */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--ce-cream-dark);
  border-radius: var(--ce-r-md);
  overflow: hidden;
}
.stat-item {
  background: white;
  padding: 2.25rem 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: var(--ce-font-display);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--ce-navy);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--ce-muted);
  margin-top: 0.375rem;
  line-height: 1.4;
}


/* ── 10. Form Styles ────────────────────────────────────── */

.form-group { margin-bottom: 1.375rem; }

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ce-text-mid);
  margin-bottom: 0.4375rem;
  letter-spacing: 0.01em;
}
.form-label .required { color: var(--ce-error); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--ce-font-body);
  font-size: 0.9375rem;
  color: var(--ce-text);
  background: white;
  border: 1.5px solid var(--ce-cream-dark);
  border-radius: var(--ce-r-sm);
  padding: 0.8125rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ce-stone-dark); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ce-blue);
  box-shadow: 0 0 0 3px rgba(26,86,160,0.1);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--ce-error);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-error {
  display: none;
  font-size: 0.8125rem;
  color: var(--ce-error);
  margin-top: 0.3rem;
}
.form-error.visible { display: block; }

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 5.5px solid var(--ce-stone-dark);
  pointer-events: none;
}


/* ── 11. Prose (Blog article body) ──────────────────────── */

.prose {
  max-width: 68ch;
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--ce-text-mid);
  font-family: var(--ce-font-body);
}
.prose h2 {
  font-family: var(--ce-font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--ce-navy);
  margin: 3rem 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--ce-font-body);
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--ce-text);
  margin: 2.25rem 0 0.75rem;
}
.prose p { margin: 0 0 1.375rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 1.5rem; margin: 0 0 1.375rem; }
.prose li { margin-bottom: 0.45rem; }
.prose a {
  color: var(--ce-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.prose a:hover { color: var(--ce-navy); }
.prose blockquote {
  border-left: 3px solid var(--ce-teal);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--ce-teal-light);
  border-radius: 0 var(--ce-r-sm) var(--ce-r-sm) 0;
  font-family: var(--ce-font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ce-teal-dark);
  line-height: 1.5;
}
.prose img { border-radius: var(--ce-r-md); margin: 2rem 0; }
.prose hr {
  border: none;
  border-top: 1px solid var(--ce-cream-dark);
  margin: 2.5rem 0;
}


/* ── 12. Contact Details ────────────────────────────────── */

.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: var(--ce-r-sm);
  background: var(--ce-blue-light);
  color: var(--ce-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ce-stone-dark);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--ce-text);
  font-weight: 500;
}


/* ── 13. Hours Table ────────────────────────────────────── */

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--ce-cream-dark); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.6875rem 0; font-size: 0.9rem; color: var(--ce-text-mid); }
.hours-table td:last-child { text-align: right; color: var(--ce-muted); }
.hours-closed { color: var(--ce-error) !important; }
.hours-open   { color: var(--ce-teal) !important; font-weight: 600; }


/* ── 14. Team Card ──────────────────────────────────────── */

.team-card {
  background: white;
  border-radius: var(--ce-r-lg);
  overflow: hidden;
  border: 1px solid var(--ce-cream-dark);
  text-align: center;
  transition: box-shadow var(--ce-t-med), transform var(--ce-t-med);
}
.team-card:hover { box-shadow: var(--ce-shadow-md); transform: translateY(-3px); }
.team-card-img { width: 100%; height: 200px; object-fit: cover; object-position: top; }
.team-card-body { padding: 1.25rem; }
.team-card-name {
  font-family: var(--ce-font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ce-navy);
  margin: 0 0 0.25rem;
}
.team-card-role { font-size: 0.8125rem; color: var(--ce-muted); }


/* ── 15. Alert / Success Banner ─────────────────────────── */

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--ce-r-sm);
  font-size: 0.9375rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.alert.visible { display: flex; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }


/* ── 16. Process Steps ──────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step { text-align: center; padding: 0.5rem; }
.process-step-num {
  width: 60px; height: 60px;
  border-radius: var(--ce-r-full);
  background: var(--ce-cream-mid);
  color: var(--ce-navy);
  font-family: var(--ce-font-display);
  font-size: 1.625rem;
  font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1.5px solid var(--ce-cream-dark);
}
.process-step-title {
  font-family: var(--ce-font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ce-navy);
  margin: 0 0 0.5rem;
}
.process-step-desc {
  font-size: 0.875rem;
  color: var(--ce-muted);
  line-height: 1.6;
  margin: 0;
}


/* ── 17. Animations ─────────────────────────────────────── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s var(--ce-ease) forwards;
}
.animate-in.delay-1 { animation-delay: 0.08s; }
.animate-in.delay-2 { animation-delay: 0.16s; }
.animate-in.delay-3 { animation-delay: 0.24s; }
.animate-in.delay-4 { animation-delay: 0.34s; }


/* ── 18. Back-to-Top ────────────────────────────────────── */

#back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 44px; height: 44px;
  border-radius: var(--ce-r-full);
  background: var(--ce-navy);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ce-shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  border: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover   { background: var(--ce-blue); transform: translateY(-2px); }


/* ── 19. WhatsApp Float ─────────────────────────────────── */

#whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 50;
  width: 54px; height: 54px;
  border-radius: var(--ce-r-full);
  background: var(--ce-whatsapp);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: transform var(--ce-t-fast), background var(--ce-t-fast), box-shadow var(--ce-t-fast);
  border: none; text-decoration: none;
}
#whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--ce-r-full);
  border: 2px solid var(--ce-whatsapp);
  animation: pulse-ring 2.4s ease-out infinite;
}
#whatsapp-float:hover {
  background: var(--ce-whatsapp-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
#whatsapp-float svg { width: 28px; height: 28px; }


/* ── 20. Footer ─────────────────────────────────────────── */

.footer-link {
  font-size: 0.875rem;
  color: var(--ce-stone-dark);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--ce-navy); }


/* ── 21. Print ──────────────────────────────────────────── */

@media print {
  #site-header, #site-footer, #back-to-top, #whatsapp-float, .no-print { display: none !important; }
  body { color: black; }
  a[href]::after { content: " (" attr(href) ")"; }
}
