/*
 * Highlands Fellowship — Content Component Styles
 * Depends on: hf-brand.css (must be loaded first)
 *
 * Components:
 *   Hero | Cards (Blog, Message, Small Group) | Buttons | Badges
 *   Profile | Animated Elements | Menus | Footer | Side-by-Side
 *   Video Section | Sliders | Social Proof | Map | Dashboard | Web Ad
 */


/* ============================================================
   HERO
   ============================================================ */
.hf-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--hf-navy);
}

.hf-hero--fullscreen {
  min-height: 100vh;
}

.hf-hero--short {
  min-height: 320px;
}

.hf-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0%);
}

.hf-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(13, 29, 65, 0.62);
  mix-blend-mode: multiply;
}

.hf-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--hf-space-16) var(--hf-space-6);
}

.hf-hero__eyebrow {
  display: block;
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-xs);
  font-weight: var(--hf-font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hf-teal-light);
  margin-bottom: var(--hf-space-3);
}

.hf-hero__heading {
  font-family: var(--hf-font);
  font-size: clamp(2rem, 5vw, var(--hf-font-size-4xl));
  font-weight: var(--hf-font-weight-medium);
  color: #ffffff;
  margin-bottom: var(--hf-space-4);
  line-height: 1.15;
}

.hf-hero__heading em {
  font-style: normal;
  color: var(--hf-yellow);
}

.hf-hero__subtext {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: var(--hf-space-8);
  line-height: 1.7;
}

.hf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hf-space-3);
  align-items: center;
}

/* Hero alignment variants */
.hf-hero--center .hf-hero__content { text-align: center; }
.hf-hero--center .hf-hero__subtext { margin-left: auto; margin-right: auto; }
.hf-hero--center .hf-hero__actions { justify-content: center; }


/* ============================================================
   BUTTONS
   ============================================================ */
.hf-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--hf-space-2);
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-base);
  font-weight: var(--hf-font-weight-medium);
  line-height: 1;
  padding: 0.75rem 1.5rem;
  border-radius: var(--hf-radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--hf-transition);
  white-space: nowrap;
}

/* Primary: Navy (light) / Teal (dark) */
.hf-btn--primary {
  background-color: var(--hf-btn-primary-bg);
  color: var(--hf-btn-primary-text);
  border-color: var(--hf-btn-primary-bg);
}
.hf-btn--primary:hover {
  background-color: var(--hf-btn-primary-hover-bg);
  border-color: var(--hf-btn-primary-hover-bg);
  color: var(--hf-btn-primary-text);
  transform: translateY(-1px);
}

/* Secondary: Teal */
.hf-btn--secondary {
  background-color: var(--hf-btn-secondary-bg);
  color: var(--hf-btn-secondary-text);
  border-color: var(--hf-btn-secondary-bg);
}
.hf-btn--secondary:hover {
  background-color: var(--hf-btn-secondary-hover);
  border-color: var(--hf-btn-secondary-hover);
  color: var(--hf-btn-secondary-text);
  transform: translateY(-1px);
}

/* Outline */
.hf-btn--outline {
  background-color: transparent;
  color: var(--hf-btn-outline-text);
  border-color: var(--hf-btn-outline-border);
}
.hf-btn--outline:hover {
  background-color: var(--hf-btn-primary-bg);
  color: #ffffff;
  border-color: var(--hf-btn-primary-bg);
}

/* Ghost (on dark backgrounds) */
.hf-btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.hf-btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Sizes */
.hf-btn--sm {
  font-size: var(--hf-font-size-sm);
  padding: 0.5rem 1rem;
}
.hf-btn--lg {
  font-size: var(--hf-font-size-lg);
  padding: 1rem 2rem;
}

/* Pill variant */
.hf-btn--pill {
  border-radius: var(--hf-radius-full);
}

/* Animated Button */
.hf-btn--animated {
  position: relative;
  overflow: hidden;
}
.hf-btn--animated::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.hf-btn--animated:hover::before {
  transform: translateX(0);
}

/* Arrow button variant */
.hf-btn--arrow::after {
  content: '→';
  margin-left: var(--hf-space-1);
  transition: transform 0.2s ease;
  display: inline-block;
}
.hf-btn--arrow:hover::after {
  transform: translateX(4px);
}


/* ============================================================
   BADGES
   ============================================================ */
.hf-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--hf-space-1);
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-xs);
  font-weight: var(--hf-font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--hf-radius-sm);
  line-height: 1;
}

.hf-badge--navy    { background: var(--hf-navy);  color: #ffffff; }
.hf-badge--teal    { background: var(--hf-teal);  color: #ffffff; }
.hf-badge--yellow  { background: var(--hf-yellow); color: var(--hf-navy); }
.hf-badge--orange  { background: var(--hf-orange); color: #ffffff; }
.hf-badge--olive   { background: var(--hf-olive);  color: #ffffff; }
.hf-badge--gray    { background: var(--hf-badge-bg); color: var(--hf-badge-text); }

.hf-badge--outline-navy   { background: transparent; color: var(--hf-navy);   border: 1.5px solid var(--hf-navy);   }
.hf-badge--outline-teal   { background: transparent; color: var(--hf-teal);   border: 1.5px solid var(--hf-teal);   }
.hf-badge--outline-yellow { background: transparent; color: var(--hf-yellow-dark); border: 1.5px solid var(--hf-yellow); }

.hf-badge--pill {
  border-radius: var(--hf-radius-full);
}


/* ============================================================
   CARDS — Shared Base
   ============================================================ */
.hf-card {
  display: flex;
  flex-direction: column;
  background-color: var(--hf-card-bg);
  border: 1px solid var(--hf-card-border);
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  box-shadow: var(--hf-card-shadow);
  transition: box-shadow var(--hf-transition), transform var(--hf-transition);
  height: 100%;
}

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

.hf-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hf-card__image--square {
  aspect-ratio: 1 / 1;
}

.hf-card__image--portrait {
  aspect-ratio: 3 / 4;
}

.hf-card__body {
  padding: var(--hf-space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hf-card__meta {
  display: flex;
  align-items: center;
  gap: var(--hf-space-2);
  margin-bottom: var(--hf-space-3);
  flex-wrap: wrap;
}

.hf-card__date {
  font-size: var(--hf-font-size-xs);
  color: var(--hf-text-muted);
}

.hf-card__title {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-lg);
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
  margin-bottom: var(--hf-space-3);
  line-height: 1.35;
}

.hf-card__excerpt {
  font-size: var(--hf-font-size-base);
  color: var(--hf-text);
  flex: 1;
  margin-bottom: var(--hf-space-4);
  line-height: 1.65;
}

.hf-card__footer {
  margin-top: auto;
  padding-top: var(--hf-space-4);
  border-top: 1px solid var(--hf-card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hf-space-2);
}

/* Blog Card accent bar */
.hf-card--blog .hf-card__image-wrap {
  position: relative;
}
.hf-card--blog .hf-card__image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--hf-gradient);
}

/* Message Card — speaker row */
.hf-card--message .hf-card__speaker {
  display: flex;
  align-items: center;
  gap: var(--hf-space-2);
  font-size: var(--hf-font-size-sm);
  color: var(--hf-text-muted);
}

.hf-card--message .hf-card__speaker-avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--hf-radius-full);
  object-fit: cover;
}

.hf-card--message .hf-card__series {
  font-size: var(--hf-font-size-xs);
  color: var(--hf-teal);
  font-weight: var(--hf-font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Small Group Card */
.hf-card--group .hf-card__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--hf-space-2);
  font-size: var(--hf-font-size-sm);
  color: var(--hf-text-muted);
  margin-bottom: var(--hf-space-2);
}

.hf-card--group .hf-card__detail i {
  color: var(--hf-teal);
  font-size: 0.875rem;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card Grid */
.hf-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--hf-space-6);
}

.hf-card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hf-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hf-card-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .hf-card-grid--2,
  .hf-card-grid--3,
  .hf-card-grid--4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .hf-card-grid--3,
  .hf-card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   PROFILE PICTURES / PEOPLE CARDS
   ============================================================ */
.hf-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--hf-space-6);
}

.hf-profile__avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--hf-radius-full);
  object-fit: cover;
  border: 3px solid var(--hf-teal);
  margin-bottom: var(--hf-space-4);
}

.hf-profile__avatar--lg {
  width: 128px;
  height: 128px;
}

.hf-profile__name {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-lg);
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
  margin-bottom: var(--hf-space-1);
}

.hf-profile__title {
  font-size: var(--hf-font-size-sm);
  color: var(--hf-teal);
  margin-bottom: var(--hf-space-3);
  font-weight: var(--hf-font-weight-medium);
}

.hf-profile__bio {
  font-size: var(--hf-font-size-sm);
  color: var(--hf-text-muted);
  line-height: 1.65;
}

/* Horizontal profile variant */
.hf-profile--horizontal {
  flex-direction: row;
  text-align: left;
  gap: var(--hf-space-4);
  align-items: flex-start;
}

.hf-profile--horizontal .hf-profile__avatar {
  margin-bottom: 0;
  flex-shrink: 0;
}


/* ============================================================
   ANIMATED ELEMENTS (GSAP scroll-trigger targets)
   Use with hf-gsap/scroll-reveal.js
   ============================================================ */
[data-hf-animate] {
  opacity: 0;
}

[data-hf-animate="fade-up"]      { transform: translateY(30px); }
[data-hf-animate="fade-down"]    { transform: translateY(-30px); }
[data-hf-animate="fade-left"]    { transform: translateX(30px); }
[data-hf-animate="fade-right"]   { transform: translateX(-30px); }
[data-hf-animate="scale-in"]     { transform: scale(0.92); }

[data-hf-animate].hf-animated {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stagger delay helpers */
[data-hf-delay="1"] { transition-delay: 0.1s; }
[data-hf-delay="2"] { transition-delay: 0.2s; }
[data-hf-delay="3"] { transition-delay: 0.3s; }
[data-hf-delay="4"] { transition-delay: 0.4s; }
[data-hf-delay="5"] { transition-delay: 0.5s; }

/* Feature / icon block */
.hf-feature {
  padding: var(--hf-space-6);
}

.hf-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--hf-radius);
  background-color: rgba(86, 182, 178, 0.12);
  color: var(--hf-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--hf-space-4);
}

.hf-feature__heading {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-lg);
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
  margin-bottom: var(--hf-space-2);
}

.hf-feature__body {
  font-size: var(--hf-font-size-base);
  color: var(--hf-text);
  line-height: 1.7;
}


/* ============================================================
   NAVIGATION — Animated Hamburger
   ============================================================ */
.hf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--hf-z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hf-space-4) var(--hf-space-6);
  background-color: var(--hf-surface);
  border-bottom: 1px solid var(--hf-border);
  transition: background-color var(--hf-transition), box-shadow var(--hf-transition);
}

.hf-nav.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.hf-nav__logo img {
  height: 40px;
  width: auto;
}

.hf-nav__links {
  display: flex;
  align-items: center;
  gap: var(--hf-space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hf-nav__links a {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-sm);
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
  text-decoration: none;
  transition: color var(--hf-transition-fast);
}

.hf-nav__links a:hover {
  color: var(--hf-teal);
}

/* Hamburger toggle */
.hf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--hf-space-2);
  background: none;
  border: none;
}

.hf-hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--hf-text-heading);
  border-radius: var(--hf-radius-full);
  transition: var(--hf-transition);
  transform-origin: center;
}

.hf-hamburger.is-open .hf-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hf-hamburger.is-open .hf-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hf-hamburger.is-open .hf-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.hf-nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 73px; /* nav height */
  left: 0;
  right: 0;
  background-color: var(--hf-surface);
  border-bottom: 1px solid var(--hf-border);
  padding: var(--hf-space-4) var(--hf-space-6);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
  z-index: calc(var(--hf-z-nav) - 1);
}

.hf-nav__drawer.is-open {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .hf-nav__links { display: none; }
  .hf-hamburger  { display: flex; }
  .hf-nav__drawer { display: flex; }
}

/* Fullscreen overlay nav */
.hf-nav-fullscreen {
  position: fixed;
  inset: 0;
  background-color: var(--hf-navy);
  z-index: var(--hf-z-modal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hf-nav-fullscreen.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hf-nav-fullscreen__close {
  position: absolute;
  top: var(--hf-space-6);
  right: var(--hf-space-6);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: transform var(--hf-transition), color var(--hf-transition);
}
.hf-nav-fullscreen__close:hover {
  color: var(--hf-teal);
  transform: rotate(90deg);
}

.hf-nav-fullscreen__links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.hf-nav-fullscreen__links li + li {
  margin-top: var(--hf-space-4);
}

.hf-nav-fullscreen__links a {
  font-family: var(--hf-font);
  font-size: clamp(1.75rem, 4vw, var(--hf-font-size-3xl));
  font-weight: var(--hf-font-weight-medium);
  color: #ffffff;
  text-decoration: none;
  transition: color var(--hf-transition);
}

.hf-nav-fullscreen__links a:hover {
  color: var(--hf-teal);
}


/* ============================================================
   FOOTER
   ============================================================ */
.hf-footer {
  background-color: var(--hf-navy);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--hf-font);
  padding: var(--hf-space-16) 0 var(--hf-space-8);
}

.hf-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--hf-space-6);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--hf-space-8);
}

.hf-footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--hf-space-4);
}

.hf-footer__tagline {
  font-size: var(--hf-font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: var(--hf-space-6);
}

.hf-footer__social {
  display: flex;
  gap: var(--hf-space-3);
}

.hf-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--hf-radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color var(--hf-transition);
}

.hf-footer__social a:hover {
  background-color: var(--hf-teal);
  color: #ffffff;
}

.hf-footer__col-heading {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-sm);
  font-weight: var(--hf-font-weight-medium);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--hf-space-4);
}

.hf-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hf-footer__links li + li {
  margin-top: var(--hf-space-2);
}

.hf-footer__links a {
  font-size: var(--hf-font-size-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--hf-transition-fast);
}

.hf-footer__links a:hover {
  color: var(--hf-teal-light);
}

.hf-footer__bottom {
  max-width: 1200px;
  margin: var(--hf-space-8) auto 0;
  padding: var(--hf-space-6) var(--hf-space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--hf-space-2);
}

.hf-footer__copyright {
  font-size: var(--hf-font-size-xs);
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .hf-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .hf-footer__inner > *:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .hf-footer__inner {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SIDE BY SIDE (Split content + media)
   ============================================================ */
.hf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hf-space-12);
  align-items: center;
  padding: var(--hf-space-16) 0;
}

.hf-split--reverse {
  direction: rtl;
}
.hf-split--reverse > * {
  direction: ltr;
}

.hf-split__content {
  display: flex;
  flex-direction: column;
  gap: var(--hf-space-4);
}

.hf-split__heading {
  font-family: var(--hf-font);
  font-size: clamp(1.5rem, 3vw, var(--hf-font-size-2xl));
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
  line-height: 1.25;
}

.hf-split__body {
  font-size: var(--hf-font-size-base);
  color: var(--hf-text);
  line-height: 1.75;
}

.hf-split__actions {
  display: flex;
  gap: var(--hf-space-3);
  flex-wrap: wrap;
  margin-top: var(--hf-space-2);
}

.hf-split__media img {
  width: 100%;
  border-radius: var(--hf-radius-lg);
  box-shadow: var(--hf-card-shadow);
}

.hf-split__media--circle img {
  border-radius: var(--hf-radius-full);
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hf-split,
  .hf-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .hf-split--reverse .hf-split__media {
    order: -1;
  }
}


/* ============================================================
   VIDEO SECTION
   ============================================================ */
.hf-video-section {
  padding: var(--hf-space-16) 0;
  background-color: var(--hf-bg-alt);
}

.hf-video-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--hf-space-6);
}

.hf-video-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--hf-space-10);
}

.hf-video-section__heading {
  font-family: var(--hf-font);
  font-size: clamp(1.5rem, 3vw, var(--hf-font-size-2xl));
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
  margin-bottom: var(--hf-space-4);
}

.hf-video-section__body {
  color: var(--hf-text);
  line-height: 1.75;
}

.hf-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13, 29, 65, 0.18);
}

.hf-video-wrapper iframe,
.hf-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================================================
   SLIDERS (Swiper-based)
   Requires: Swiper.js (available via Rock CDN or self-hosted)
   ============================================================ */
.hf-slider-section {
  padding: var(--hf-space-16) 0;
  overflow: hidden;
}

.hf-slider-section__header {
  max-width: 1200px;
  margin: 0 auto var(--hf-space-8);
  padding: 0 var(--hf-space-6);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--hf-space-4);
}

.hf-slider-section__heading {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-2xl);
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
  margin: 0;
}

.hf-slider-nav {
  display: flex;
  gap: var(--hf-space-2);
}

.hf-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--hf-radius-full);
  border: 1.5px solid var(--hf-border);
  background-color: var(--hf-surface);
  color: var(--hf-text-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--hf-transition);
  flex-shrink: 0;
}

.hf-slider-btn:hover {
  background-color: var(--hf-navy);
  border-color: var(--hf-navy);
  color: #ffffff;
}

.hf-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Photo Slider */
.hf-photo-slide {
  position: relative;
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.hf-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hf-photo-slide__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--hf-space-6);
  background: linear-gradient(to top, rgba(13, 29, 65, 0.8), transparent);
  color: #ffffff;
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-base);
  font-weight: var(--hf-font-weight-medium);
}


/* ============================================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================================ */
.hf-testimonial-section {
  padding: var(--hf-space-16) 0;
  background-color: var(--hf-bg-alt);
}

.hf-testimonial {
  background-color: var(--hf-card-bg);
  border: 1px solid var(--hf-card-border);
  border-radius: var(--hf-radius-lg);
  padding: var(--hf-space-8);
  box-shadow: var(--hf-card-shadow);
  position: relative;
}

.hf-testimonial::before {
  content: '\201C'; /* left double quote */
  position: absolute;
  top: var(--hf-space-4);
  left: var(--hf-space-6);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--hf-teal);
  opacity: 0.25;
  pointer-events: none;
}

.hf-testimonial__quote {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-lg);
  font-weight: var(--hf-font-weight-normal);
  color: var(--hf-text);
  line-height: 1.75;
  margin-bottom: var(--hf-space-6);
  padding-top: var(--hf-space-4);
}

.hf-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--hf-space-3);
}

.hf-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--hf-radius-full);
  object-fit: cover;
  border: 2px solid var(--hf-teal-light);
}

.hf-testimonial__name {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-base);
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
  display: block;
}

.hf-testimonial__subtitle {
  font-size: var(--hf-font-size-sm);
  color: var(--hf-text-muted);
  display: block;
}


/* ============================================================
   MAP VIEW
   ============================================================ */
.hf-map-section {
  padding: var(--hf-space-16) 0;
}

.hf-map-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--hf-space-6);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--hf-space-8);
  align-items: stretch;
}

.hf-map-section__info {
  display: flex;
  flex-direction: column;
  gap: var(--hf-space-4);
}

.hf-map-section__heading {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-2xl);
  font-weight: var(--hf-font-weight-medium);
  color: var(--hf-text-heading);
}

.hf-map-section__address {
  font-size: var(--hf-font-size-base);
  color: var(--hf-text);
  line-height: 1.7;
}

.hf-map-section__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--hf-space-2);
  font-size: var(--hf-font-size-sm);
  color: var(--hf-text);
}

.hf-map-section__detail i {
  color: var(--hf-teal);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hf-map-embed {
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--hf-card-shadow);
}

.hf-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .hf-map-section__inner {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   DASHBOARD / STATS
   ============================================================ */
.hf-dashboard {
  padding: var(--hf-space-16) 0;
  background-color: var(--hf-navy);
}

.hf-dashboard__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--hf-space-6);
}

.hf-dashboard__header {
  text-align: center;
  margin-bottom: var(--hf-space-12);
}

.hf-dashboard__heading {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-2xl);
  font-weight: var(--hf-font-weight-medium);
  color: #ffffff;
  margin-bottom: var(--hf-space-3);
}

.hf-dashboard__subtext {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--hf-font-size-base);
}

.hf-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--hf-space-4);
}

.hf-stat {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hf-radius-lg);
  padding: var(--hf-space-8) var(--hf-space-6);
  text-align: center;
  transition: background-color var(--hf-transition);
}

.hf-stat:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hf-stat__icon {
  font-size: 1.75rem;
  color: var(--hf-teal);
  margin-bottom: var(--hf-space-3);
}

.hf-stat__value {
  font-family: var(--hf-font);
  font-size: var(--hf-font-size-4xl);
  font-weight: var(--hf-font-weight-bold);
  color: #ffffff;
  line-height: 1;
  margin-bottom: var(--hf-space-2);
}

.hf-stat__value--teal   { color: var(--hf-teal-light); }
.hf-stat__value--yellow { color: var(--hf-yellow); }

.hf-stat__label {
  font-size: var(--hf-font-size-sm);
  font-weight: var(--hf-font-weight-medium);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ============================================================
   WEB AD / PROMOTIONAL UNIT
   ============================================================ */
.hf-ad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  box-shadow: var(--hf-card-shadow);
  min-height: 360px;
}

.hf-ad--media-right {
  direction: rtl;
}
.hf-ad--media-right > * {
  direction: ltr;
}

.hf-ad__media {
  position: relative;
  overflow: hidden;
}

.hf-ad__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0%);
}

.hf-ad__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(13, 29, 65, 0.55);
  mix-blend-mode: multiply;
}

.hf-ad__content {
  background-color: var(--hf-navy);
  padding: var(--hf-space-10) var(--hf-space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--hf-space-4);
}

.hf-ad--light .hf-ad__content {
  background-color: var(--hf-bg-alt);
}

.hf-ad__heading {
  font-family: var(--hf-font);
  font-size: clamp(1.25rem, 2.5vw, var(--hf-font-size-2xl));
  font-weight: var(--hf-font-weight-medium);
  color: #ffffff;
  line-height: 1.25;
}

.hf-ad--light .hf-ad__heading {
  color: var(--hf-navy);
}

.hf-ad__body {
  font-size: var(--hf-font-size-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.hf-ad--light .hf-ad__body {
  color: var(--hf-text);
}

.hf-ad__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hf-space-3);
  margin-top: var(--hf-space-2);
}

@media (max-width: 640px) {
  .hf-ad,
  .hf-ad--media-right {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hf-ad__media {
    min-height: 200px;
  }
}
