/* ============================================================
   FHL Care Services — Main Stylesheet
   Brand: Primary #3560A1 | Secondary #7192D5 | Heading #305C95
   ============================================================ */

:root {
  --fhl-primary:    #3560A1;
  --fhl-secondary:  #7192D5;
  --fhl-heading:    #305C95;
  --fhl-light-bg:   #E8EFF8;
  --fhl-dark:       #1a2e4a;
  --fhl-text:       #444444;
  --fhl-muted:      #7a8899;
  --fhl-white:      #ffffff;
  --fhl-border:     #dce6f0;
  --fhl-success:    #28a745;
  --fhl-warning:    #f6c23e;
  --radius-card:    12px;
  --radius-btn:     8px;
  --shadow-soft:    0 4px 20px rgba(53,96,161,0.10);
  --shadow-hover:   0 8px 32px rgba(53,96,161,0.18);
  --transition:     0.25s ease;
}

/* ─── BASE ──────────────────────────────────────────────── */
* { box-sizing: border-box; }

.section-alt-bg { background: var(--fhl-light-bg); }

/* ─── SERVICES CATEGORY TABS (Home page) ───────────────── */
.services-tab-btn {
  background: #fff;
  border: 2px solid var(--fhl-primary);
  color: var(--fhl-primary);
  border-radius: 50px;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.services-tab-btn:hover,
.services-tab-btn.active {
  background: var(--fhl-primary);
  color: #fff;
}

/* ─── CARE ACRONYM CARDS (About page) ──────────────────── */
.care-value-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.care-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.care-letter {
  background: var(--fhl-primary);
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  padding: 1.4rem 1rem 1rem;
  letter-spacing: -2px;
}
.care-body {
  padding: 1.5rem;
  flex: 1;
}
.care-title {
  font-weight: 700;
  color: var(--fhl-heading);
  margin-bottom: 0.6rem;
}
.care-desc {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--fhl-text);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--fhl-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: var(--fhl-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--fhl-secondary); }

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  background: var(--fhl-white) !important;
  box-shadow: 0 2px 16px rgba(53,96,161,0.09);
  padding: 0.35rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow var(--transition);
}
.navbar-brand img { height: 80px; }
.navbar-logo { height: 132px; width: auto; display: block; }
.mobile-menu-logo {
  height: 52px;
  width: auto;
  border-radius: 6px;
  background: #fff;
  padding: 3px 7px;
}

.navbar .nav-link {
  color: var(--fhl-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--fhl-primary) !important;
  background: var(--fhl-light-bg);
}
.navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.navbar .dropdown-item {
  border-radius: 6px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: var(--fhl-dark);
  transition: background var(--transition);
}
.navbar .dropdown-item:hover {
  background: var(--fhl-light-bg);
  color: var(--fhl-primary);
}
.navbar-cta {
  background: var(--fhl-primary);
  color: #fff !important;
  border-radius: var(--radius-btn);
  padding: 0.5rem 1.25rem !important;
  font-weight: 600;
}
.navbar-cta:hover {
  background: var(--fhl-secondary) !important;
  color: #fff !important;
}

/* ─── TOP BAR ───────────────────────────────────────────── */
.top-bar {
  background: var(--fhl-primary);
  color: rgba(255,255,255,0.9);
  font-size: 0.83rem;
  padding: 6px 0;
}
.top-bar a { color: #fff; }
.top-bar a:hover { opacity: 0.85; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary-fhl {
  background: var(--fhl-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary-fhl:hover {
  background: var(--fhl-secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-fhl {
  background: transparent;
  color: var(--fhl-primary);
  border: 2px solid var(--fhl-primary);
  border-radius: var(--radius-btn);
  padding: 0.72rem 1.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline-fhl:hover {
  background: var(--fhl-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white-fhl {
  background: #fff;
  color: var(--fhl-primary);
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-white-fhl:hover {
  background: var(--fhl-light-bg);
  color: var(--fhl-primary);
  transform: translateY(-2px);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero-section {
  min-height: 90vh;
  background: #0e2e54;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 209, 102, 0.2), transparent 44%),
    radial-gradient(circle at 85% 80%, rgba(78, 165, 217, 0.2), transparent 40%);
  z-index: 1;
}
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: 90vh;
}

.hero-slide-image {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.68) saturate(1.05);
}

.hero-carousel .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(5, 20, 39, 0.78) 10%, rgba(5, 20, 39, 0.42) 55%, rgba(5, 20, 39, 0.15) 100%);
}

.hero-caption-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0;
}

.hero-caption-card {
  width: min(100%, 740px);
  margin-left: max(4vw, 1.2rem);
  margin-right: 1rem;
  background: linear-gradient(145deg, rgba(17, 42, 74, 0.62), rgba(17, 42, 74, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: clamp(1.15rem, 2.4vw, 2rem);
  backdrop-filter: blur(7px);
  box-shadow: 0 18px 60px rgba(5, 20, 39, 0.35);
}

.hero-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ffd166, #ffffff);
}

.hero-caption-card .hero-badge,
.hero-caption-card .hero-title,
.hero-caption-card .hero-desc,
.hero-caption-card .hero-cta-row,
.hero-caption-card .hero-trust-bar {
  opacity: 0;
  transform: translateY(14px);
}

.carousel-item.active .hero-progress span {
  animation: heroProgress 13s linear forwards;
}

.carousel-item.active .hero-badge {
  animation: heroItemIn 0.45s ease 0.12s forwards;
}

.carousel-item.active .hero-title {
  animation: heroItemIn 0.55s ease 0.24s forwards;
}

.carousel-item.active .hero-desc {
  animation: heroItemIn 0.55s ease 0.38s forwards;
}

.carousel-item.active .hero-cta-row {
  animation: heroItemIn 0.55s ease 0.54s forwards;
}

.carousel-item.active .hero-trust-bar {
  animation: heroItemIn 0.55s ease 0.68s forwards;
}

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

@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.38);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}
.hero-title {
  color: #fff !important;
  font-size: clamp(1.65rem, 3.35vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 0.9rem;
}
.hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.98rem, 1.55vw, 1.14rem);
  margin-bottom: 1.4rem;
  max-width: 62ch;
}
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}
.hero-trust-item i { color: #ffd166; font-size: 1rem; }

.hero-cta-main {
  background: #ffffff;
  color: var(--fhl-primary);
}

.hero-cta-main:hover {
  color: var(--fhl-primary);
  background: #eff5fd;
}

.hero-cta-alt {
  border-color: rgba(255,255,255,0.58);
  color: #fff;
}

.hero-cta-alt:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.13);
  color: #fff;
}

.hero-indicators {
  z-index: 6;
  bottom: 1rem;
  margin-bottom: 0;
}

.hero-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border-radius: 8px;
  border: none;
  background-color: rgba(255,255,255,0.42);
}

.hero-indicators .active {
  background-color: #ffd166;
}

.hero-control {
  width: 8%;
  z-index: 6;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
  width: 2.2rem;
  height: 2.2rem;
  background-size: 70% 70%;
  border-radius: 50%;
  background-color: rgba(5, 20, 39, 0.45);
  border: 1px solid rgba(255,255,255,0.45);
}

@media (prefers-reduced-motion: reduce) {
  .hero-caption-card .hero-badge,
  .hero-caption-card .hero-title,
  .hero-caption-card .hero-desc,
  .hero-caption-card .hero-cta-row,
  .hero-caption-card .hero-trust-bar {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .carousel-item.active .hero-progress span {
    animation: none;
    width: 100%;
  }
}

/* ─── SECTION HEADERS ───────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  background: var(--fhl-light-bg);
  color: var(--fhl-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--fhl-heading);
  margin-bottom: 0.85rem;
}
.section-subtitle {
  color: var(--fhl-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}
.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--fhl-primary), var(--fhl-secondary));
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* ─── WHATSAPP GALLERY ─────────────────────────────────── */
.wa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.wa-photo-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--fhl-border);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.wa-photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.wa-gallery-row > [class*='col-'] {
  display: flex;
  justify-content: center;
}

.wa-photo-card:hover img {
  transform: scale(1.04);
}

/* ─── SERVICE CARDS ─────────────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--fhl-border);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fhl-primary), var(--fhl-secondary));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: var(--fhl-primary);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--fhl-light-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--fhl-primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--fhl-primary);
  color: #fff;
}
.service-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fhl-heading);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.92rem; color: var(--fhl-muted); margin-bottom: 1.25rem; }
.service-card .card-link {
  color: var(--fhl-primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 0.6rem; }

/* ─── STATS SECTION ─────────────────────────────────────── */
.stats-section { background: var(--fhl-primary); }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-value span { color: #ffd166; }
.stat-label { color: rgba(255,255,255,0.82); font-size: 0.95rem; font-weight: 500; }

/* ─── TESTIMONIAL CARDS ─────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: box-shadow var(--transition);
  border: 1px solid var(--fhl-border);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-size: 3rem;
  color: var(--fhl-light-bg);
  line-height: 1;
}
.testimonial-card .stars { color: #f6c23e; font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-card blockquote {
  font-size: 0.97rem;
  color: var(--fhl-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.client-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fhl-light-bg);
}
.client-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--fhl-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fhl-primary);
  font-weight: 700;
  font-size: 1.1rem;
}
.client-name { font-weight: 700; font-size: 0.95rem; color: var(--fhl-heading); }
.client-role { font-size: 0.82rem; color: var(--fhl-muted); }

/* ─── TEAM CARDS ────────────────────────────────────────── */
.team-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border: 1px solid var(--fhl-border);
}
.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-card .team-info { padding: 1.5rem 1.25rem; }
.team-card .team-info h5 { font-weight: 700; margin-bottom: 0.2rem; }
.team-card .team-info .role { color: var(--fhl-primary); font-size: 0.88rem; font-weight: 600; }

/* ─── BLOG CARDS ────────────────────────────────────────── */
.blog-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border: 1px solid var(--fhl-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.blog-card .card-img-top {
  height: 220px;
  object-fit: cover;
}
.blog-card .card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-category-badge {
  display: inline-block;
  background: var(--fhl-light-bg);
  color: var(--fhl-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.blog-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  flex: 1;
}
.blog-card h5 a:hover { color: var(--fhl-secondary); }
.blog-meta { font-size: 0.82rem; color: var(--fhl-muted); display: flex; align-items: center; gap: 1rem; }
.blog-meta i { font-size: 0.8rem; }

/* ─── WHY CHOOSE US ─────────────────────────────────────── */
.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-card);
  transition: background var(--transition);
}
.why-card:hover { background: var(--fhl-light-bg); }
.why-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--fhl-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.why-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-card p { font-size: 0.9rem; color: var(--fhl-muted); margin: 0; }

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--fhl-primary), var(--fhl-secondary));
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/static/images/hero-pattern.svg') repeat;
  opacity: 0.06;
}
.cta-section h2 { color: #fff; font-size: 2.2rem; }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 1.05rem; }

/* ─── FAQ ACCORDION ─────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid var(--fhl-border);
  border-radius: var(--radius-card) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--fhl-heading);
  background: #fff;
  font-size: 0.98rem;
  padding: 1.15rem 1.5rem;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--fhl-light-bg);
  color: var(--fhl-primary);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: none;
}
.faq-accordion .accordion-body {
  color: var(--fhl-text);
  font-size: 0.95rem;
  padding: 1rem 1.5rem 1.5rem;
  line-height: 1.75;
}

/* ─── FORMS ─────────────────────────────────────────────── */
.form-control, .form-select {
  border-radius: 8px;
  border: 1.5px solid var(--fhl-border);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--fhl-primary);
  box-shadow: 0 0 0 0.2rem rgba(53,96,161,0.15);
}
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--fhl-heading); margin-bottom: 0.4rem; }

/* ─── BREADCRUMB ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--fhl-heading) 0%, var(--fhl-primary) 100%);
  padding: 3.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/static/images/hero-pattern.svg') repeat;
  opacity: 0.04;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.8); }
.breadcrumb-item.active { color: rgba(255,255,255,0.95); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--fhl-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
footer h6 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
footer a:hover { color: var(--fhl-secondary); }
footer .footer-desc { font-size: 0.9rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--fhl-primary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ─── SCROLL TO TOP ─────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--fhl-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  border: none;
}
#scrollTop.show { opacity: 1; }
#scrollTop:hover { background: var(--fhl-secondary); transform: translateY(-3px); }

/* ─── TOAST ─────────────────────────────────────────────── */
.toast-container { z-index: 1100; }

/* ─── HTMX LOADING ──────────────────────────────────────── */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline-block; }
.htmx-request.htmx-indicator { display: inline-block; }

/* ─── BADGE PILL ─────────────────────────────────────────── */
.badge-primary { background: var(--fhl-light-bg); color: var(--fhl-primary); font-weight: 600; }

/* ─── SKELETON LOADER ───────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #e8eff8 25%, #d6e3f2 50%, #e8eff8 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 6px;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar-logo {
    height: 86px;
  }
  .hero-section,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide-image {
    min-height: 86vh;
    height: 86vh;
  }
  .hero-caption-wrap {
    align-items: flex-end;
  }
  .hero-caption-card {
    width: calc(100% - 2.2rem);
    margin: 0 1.1rem 2.2rem;
    padding: 0.85rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(17, 42, 74, 0.48), rgba(17, 42, 74, 0.28));
  }
  .hero-progress {
    height: 3px;
  }
  .hero-title {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-badge {
    margin-bottom: 0.55rem;
    font-size: 0.75rem;
    padding: 0.24rem 0.7rem;
  }
  .hero-cta-row {
    gap: 0.5rem !important;
  }
  .hero-cta-row .btn-primary-fhl,
  .hero-cta-row .btn-outline-fhl {
    padding: 0.55rem 0.82rem;
    font-size: 0.8rem;
  }
  .hero-trust-item {
    font-size: 0.68rem;
    padding: 0.24rem 0.5rem;
  }
  .hero-trust-bar {
    display: none;
  }
  .hero-control {
    display: none;
  }
  .hero-indicators {
    bottom: 0.35rem;
  }
  .hero-indicators [data-bs-target] {
    width: 22px;
    height: 3px;
  }
  .wa-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }
  .wa-photo-card img {
    height: 200px;
  }
  .wa-photo-card {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .stats-section .stat-value { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
}

/* ─── SCROLL-REVEAL: SLIDE IN FROM LEFT ──────────────────── */
/*
 * Uses CSS individual `translate` property (CSS Level 4) so it
 * composes with `transform` on hover without any conflict.
 * Wrapped in prefers-reduced-motion so users who opt out of
 * motion see elements immediately without animation.
 */
@media (prefers-reduced-motion: no-preference) {
  .reveal-left {
    opacity: 0;
    translate: -56px 0;
    transition: opacity 0.6s ease, translate 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .reveal-left.is-visible {
    opacity: 1;
    translate: 0 0;
  }
}
