/* ==========================================================================
   Home Advice Zone — style.css
   Custom styles built on top of Bootstrap 5.3
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens & base
   -------------------------------------------------------------------------- */
:root {
  --hcz-ink: #1f2d26;            /* near-black green — main text            */
  --hcz-primary: #b19f0d;        /* brand green                             */
  --hcz-primary-dark: #796c00;   /* deep green — banners, footer            */
  --hcz-primary-soft: #e8f1ec;   /* pale green tint                         */
  --hcz-accent: #e7ce05;         /* warm gold                               */
  --hcz-accent-dark: #b8862e;    /* deeper gold — text on light backgrounds */
  --hcz-accent-soft: #faf1dd;    /* pale gold tint                          */
  --hcz-cream: #faf6ef;          /* section background                      */
  --hcz-sand: #f3ecdf;           /* alternate section background            */
  --hcz-line: #e6ded0;           /* hairline borders                        */
  --hcz-muted: #65756c;          /* secondary text                          */
  --hcz-radius: 18px;
  --hcz-shadow-sm: 0 6px 18px rgba(31, 45, 38, 0.08);
  --hcz-shadow: 0 18px 45px rgba(27, 67, 50, 0.14);
  --hcz-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --hcz-font-body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--hcz-font-body);
  color: var(--hcz-ink);
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hcz-font-display);
  font-weight: 600;
  color: var(--hcz-ink);
  line-height: 1.25;
}

p {
  color: #46554d;
}

a {
  color: var(--hcz-primary-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--hcz-accent-dark);
}

img {
  max-width: 100%;
}

::selection {
  background: var(--hcz-accent);
  color: #241a06;
}

/* Anchor offset for sticky header */
section[id] {
  scroll-margin-top: 96px;
}

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 3000;
  background: var(--hcz-primary-dark);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* --------------------------------------------------------------------------
   2. Helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hcz-primary);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: var(--hcz-accent);
}

.section-pad {
  padding: 5.5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 3.25rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: var(--hcz-accent);
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.text-accent {
  color: var(--hcz-accent-dark) !important;
}

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

.bg-cream {
  background: var(--hcz-cream);
}

.bg-sand {
  background: var(--hcz-sand);
}

.font-display {
  font-family: var(--hcz-font-display);
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  transition: all 0.3s ease;
}

.btn-accent {
  background: var(--hcz-accent);
  border: 2px solid var(--hcz-accent);
  color: #241a06;
}

.btn-accent:hover,
.btn-accent:focus {
  background: #e7ce05;
  border-color: #e7ce05;
  color: #241a06;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217, 164, 65, 0.4);
}

.btn-green {
  background: var(--hcz-primary);
  border: 2px solid var(--hcz-primary);
  color: #fff;
}

.btn-green:hover,
.btn-green:focus {
  background: var(--hcz-primary-dark);
  border-color: var(--hcz-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(45, 106, 79, 0.35);
}

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--hcz-primary);
  color: var(--hcz-primary-dark);
}

.btn-outline-green:hover,
.btn-outline-green:focus {
  background: var(--hcz-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light-hcz {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.btn-outline-light-hcz:hover {
  background: #fff;
  border-color: #fff;
  color: var(--hcz-primary-dark);
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   4. Top bar & header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--hcz-primary-dark);
  color: #d8e5dc;
  font-size: 0.84rem;
  padding: 0.45rem 0;
}

.topbar a {
  color: #d8e5dc;
}

.topbar a:hover {
  color: var(--hcz-accent);
}

.topbar i {
  color: var(--hcz-accent);
  margin-right: 0.35rem;
}

.site-header {
  background: #fffdf8;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(31, 45, 38, 0.1);
}

.navbar {
  padding: 0.85rem 0;
}

.navbar-brand {
  font-family: var(--hcz-font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--hcz-ink);
  line-height: 1.1;
}

.navbar-brand:hover {
  color: var(--hcz-ink);
}

.navbar-brand em {
  color: var(--hcz-accent-dark);
  font-style: italic;
}

.navbar-brand .brand-sub {
  display: block;
  font-family: var(--hcz-font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hcz-primary);
}

.navbar-toggler {
  font-size: 1.9rem;
  color: var(--hcz-primary-dark);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.18);
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--hcz-ink);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.navbar-nav .nav-link:hover {
  color: var(--hcz-primary-dark);
  background: var(--hcz-primary-soft);
}

.navbar-nav .nav-link.active {
  color: var(--hcz-primary-dark);
  background: var(--hcz-primary-soft);
}

/* --------------------------------------------------------------------------
   5. Hero (home page)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 6rem 0 5.5rem;
  background:
    radial-gradient(900px 520px at 88% -12%, rgba(217, 164, 65, 0.18), transparent 62%),
    radial-gradient(760px 480px at -12% 24%, rgba(45, 106, 79, 0.12), transparent 60%),
    var(--hcz-cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(45, 106, 79, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.12;
}



.hero-lead {
  font-size: 1.13rem;
  color: var(--hcz-muted);
  max-width: 540px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hcz-ink);
}

.trust-chips .chip i {
  color: var(--hcz-primary);
}

.hero-media {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
}

.hero-media::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 3px solid var(--hcz-accent);
  border-radius: 26px;
  pointer-events: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--hcz-shadow);
}

.hero-pill {
  position: absolute;
  top: 22px;
  right: -14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hcz-primary-dark);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--hcz-shadow-sm);
}

.hero-pill i {
  color: var(--hcz-accent);
}

.hero-card {
  position: absolute;
  left: -26px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 1.15rem;
  box-shadow: var(--hcz-shadow);
  max-width: 280px;
}

.hero-card .icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--hcz-primary-soft);
  color: var(--hcz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero-card span {
  font-size: 0.8rem;
  color: var(--hcz-muted);
}

/* --------------------------------------------------------------------------
   6. Service cards
   -------------------------------------------------------------------------- */
.service-card {
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: var(--hcz-radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hcz-shadow);
  border-color: transparent;
}

.service-card .card-img {
  height: 185px;
  overflow: hidden;
}

.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.07);
}

.service-card .card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--hcz-muted);
  margin-bottom: 0.9rem;
}

.service-card .card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hcz-primary-dark);
}

.service-card .card-link i {
  transition: transform 0.3s ease;
}

.service-card .card-link:hover i {
  transform: translateX(4px);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--hcz-primary-soft);
  color: var(--hcz-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex: 0 0 46px;
}

/* --------------------------------------------------------------------------
   7. Why choose us / values / process / testimonials
   -------------------------------------------------------------------------- */
.value-item {
  display: flex;
  gap: 1.05rem;
  margin-bottom: 1.75rem;
}

.value-item:last-child {
  margin-bottom: 0;
}

.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.value-item p {
  margin: 0;
  color: var(--hcz-muted);
  font-size: 0.97rem;
}

.value-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  background: var(--hcz-primary-soft);
  color: var(--hcz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.value-icon.gold {
  background: var(--hcz-accent-soft);
  color: var(--hcz-accent-dark);
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: var(--hcz-radius);
  height: 100%;
}

.step-num {
  width: 62px;
  height: 62px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--hcz-primary-dark);
  color: var(--hcz-accent);
  font-family: var(--hcz-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--hcz-primary-soft);
}

.step-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.93rem;
  color: var(--hcz-muted);
  margin: 0;
}

/* Testimonials */
.testimonial {
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: 22px;
  padding: 3rem 2.75rem 2.5rem;
  position: relative;
  max-width: 860px;
  margin: 1.5rem auto 0;
}

.testimonial .quote-mark {
  position: absolute;
  top: -24px;
  left: 2.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--hcz-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--hcz-shadow-sm);
}

.testimonial blockquote {
  font-family: var(--hcz-font-display);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--hcz-ink);
  margin-bottom: 1.5rem;
}

.testimonial .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hcz-primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}

.testimonial .who strong {
  display: block;
  color: var(--hcz-ink);
}

.testimonial .who span {
  font-size: 0.86rem;
  color: var(--hcz-muted);
}

.btn-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--hcz-primary);
  background: #fff;
  color: var(--hcz-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-circle:hover {
  background: var(--hcz-primary);
  color: #fff;
}

/* --------------------------------------------------------------------------
   8. CTA & newsletter bands
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--hcz-primary-dark), var(--hcz-primary) 65%, #3a7d5c);
  color: #fff;
  padding: 4.5rem 0;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-band::before {
  width: 340px;
  height: 340px;
  right: -110px;
  top: -160px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.35), transparent 65%);
}

.cta-band::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -140px;
  border: 2px solid rgba(255, 255, 255, 0.14);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-band p {
  color: #dceadfa8;
  color: #dceadf;
}

.news-band {
  background: linear-gradient(120deg, #faf1dd, #f5e6c4);
  border: 1px solid #eadfc4;
  border-radius: 26px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.news-band .news-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: #fff;
  color: var(--hcz-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--hcz-shadow-sm);
}

/* --------------------------------------------------------------------------
   9. Page banner (inner pages)
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  padding: 4.25rem 0 3.5rem;
  background: linear-gradient(135deg, var(--hcz-primary-dark), var(--hcz-primary) 70%, #3a7d5c);
  color: #fff;
  overflow: hidden;
}

.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-banner::before {
  width: 300px;
  height: 300px;
  right: -100px;
  top: -150px;
  border: 2px solid rgba(255, 255, 255, 0.14);
}

.page-banner::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.3), transparent 65%);
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-bottom: 0.4rem;
}

.page-banner .lead {
  color: #dceadf;
  max-width: 720px;
  margin-bottom: 0;
}

.page-banner .breadcrumb {
  margin: 0 0 0.9rem;
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.55);
}

.page-banner .breadcrumb-item a {
  color: #dceadf;
}

.page-banner .breadcrumb-item.active {
  color: var(--hcz-accent);
}

/* --------------------------------------------------------------------------
   10. Services page — jump pills & detail sections
   -------------------------------------------------------------------------- */
.service-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.service-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--hcz-ink);
  transition: all 0.3s ease;
}

.service-jump a i {
  color: var(--hcz-primary);
  transition: color 0.3s ease;
}

.service-jump a:hover {
  background: var(--hcz-primary);
  border-color: var(--hcz-primary);
  color: #fff;
}

.service-jump a:hover i {
  color: var(--hcz-accent);
}

.service-detail {
  padding: 4.5rem 0;
}

.service-detail.alt {
  background: var(--hcz-cream);
}

.service-detail .detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--hcz-shadow);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hcz-primary-soft);
  color: var(--hcz-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.42rem 1rem;
  margin-bottom: 1.1rem;
}

.service-tag i {
  color: var(--hcz-accent-dark);
}

.service-detail h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--hcz-line);
  color: #3c4b43;
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list li i {
  color: var(--hcz-primary);
  font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   11. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: 22px;
  padding: 2.25rem;
  box-shadow: var(--hcz-shadow-sm);
}

.form-label {
  font-weight: 600;
  color: var(--hcz-ink);
  font-size: 0.94rem;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid var(--hcz-line);
  padding: 0.7rem 1rem;
  background-color: #fff;
  font-size: 0.97rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--hcz-primary);
  box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.15);
}

.form-check-input {
  border-color: #c9c0af;
}

.form-check-input:checked {
  background-color: var(--hcz-primary);
  border-color: var(--hcz-primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.15);
  border-color: var(--hcz-primary);
}

.interest-check {
  border: 1px solid var(--hcz-line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: var(--hcz-cream);
}

.interest-check .form-check-label {
  font-size: 0.92rem;
  font-weight: 500;
}

/* Result panels (subscribe / unsubscribe) */
.result-panel {
  display: none;
}

.result-panel.show {
  display: block;
  animation: hcz-fade-up 0.45s ease both;
}

@keyframes hcz-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  background: var(--hcz-primary-soft);
  color: var(--hcz-primary);
}

.result-icon.gold {
  background: var(--hcz-accent-soft);
  color: var(--hcz-accent-dark);
}

/* --------------------------------------------------------------------------
   12. Contact page
   -------------------------------------------------------------------------- */
.info-card {
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: 20px;
  padding: 1.9rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hcz-shadow);
}

.info-card .info-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: var(--hcz-primary-soft);
  color: var(--hcz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.info-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--hcz-muted);
  margin: 0;
  word-break: break-word;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hcz-line);
  box-shadow: var(--hcz-shadow-sm);
  min-height: 340px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* FAQ accordion */
.accordion-item {
  border: 1px solid var(--hcz-line);
  border-radius: 14px !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--hcz-ink);
  background: #fff;
  padding: 1.05rem 1.35rem;
}

.accordion-button:not(.collapsed) {
  background: var(--hcz-primary-soft);
  color: var(--hcz-primary-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.12);
  border-color: rgba(45, 106, 79, 0.25);
}

.accordion-body {
  color: var(--hcz-muted);
  font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   13. Blog
   -------------------------------------------------------------------------- */
.blog-card {
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: var(--hcz-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hcz-shadow);
}

.blog-card .blog-img {
  display: block;
  height: 200px;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-card .blog-body {
  padding: 1.4rem 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  display: inline-flex;
  align-self: flex-start;
  background: var(--hcz-accent-soft);
  color: var(--hcz-accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
  margin-bottom: 0.8rem;
}

.blog-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
}

.blog-card h3 a {
  color: var(--hcz-ink);
}

.blog-card h3 a:hover {
  color: var(--hcz-primary-dark);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.83rem;
  color: var(--hcz-muted);
  margin: 0.5rem 0 0.75rem;
}

.blog-meta i {
  color: var(--hcz-accent-dark);
  margin-right: 0.3rem;
}

.blog-card .excerpt {
  font-size: 0.94rem;
  color: var(--hcz-muted);
}

.blog-post-body {
  border-top: 1px dashed var(--hcz-line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.blog-post-body p {
  font-size: 0.94rem;
}

.blog-post-body p:first-child::first-letter {
  font-family: var(--hcz-font-display);
  font-size: 1.6em;
  color: var(--hcz-accent-dark);
}

.read-more-btn {
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.45rem 1.15rem;
  border: 2px solid var(--hcz-primary);
  color: var(--hcz-primary-dark);
  background: transparent;
  border-radius: 999px;
  font-weight: 700;
}

.read-more-btn:hover {
  background: var(--hcz-primary);
  color: #fff;
}

.read-more-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

/* Featured post (horizontal card) */
.featured-card {
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--hcz-shadow-sm);
}

.featured-card .featured-img {
  height: 100%;
  min-height: 300px;
}

.featured-card .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card .featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.featured-card h2 a {
  color: var(--hcz-ink);
}

.featured-card h2 a:hover {
  color: var(--hcz-primary-dark);
}

/* --------------------------------------------------------------------------
   14. Legal pages (privacy policy / terms)
   -------------------------------------------------------------------------- */
.legal-nav {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--hcz-line);
  border-radius: 18px;
  padding: 1.4rem 1.25rem;
}

.legal-nav h2 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--hcz-font-body);
  font-weight: 700;
  color: var(--hcz-primary);
  margin-bottom: 0.9rem;
}

.legal-nav a {
  display: block;
  padding: 0.35rem 0.75rem;
  border-left: 3px solid transparent;
  border-radius: 0 10px 10px 0;
  color: var(--hcz-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.legal-nav a:hover {
  color: var(--hcz-primary-dark);
  background: var(--hcz-primary-soft);
  border-left-color: var(--hcz-accent);
}

.legal-content h2 {
  font-size: 1.45rem;
  margin: 2.4rem 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--hcz-accent-soft);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #4a5850;
  font-size: 0.98rem;
}

.legal-content .lead-para {
  font-size: 1.05rem;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hcz-accent-soft);
  color: var(--hcz-accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--hcz-primary-dark);
  color: #c9d8cf;
  padding: 4.25rem 0 0;
  position: relative;
}

.site-footer .brand-text,
.site-footer .brand-text:hover {
  color: #fff;
}

.site-footer p {
  color: #b7cac0;
  font-size: 0.95rem;
}

.footer-title {
  font-family: var(--hcz-font-display);
  color: #fff;
  font-size: 1.06rem;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: var(--hcz-accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #c9d8cf;
  font-size: 0.95rem;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--hcz-accent);
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: #c9d8cf;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--hcz-accent);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.footer-contact a {
  color: #c9d8cf;
}

.footer-contact a:hover {
  color: var(--hcz-accent);
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.09);
  color: #e8f1ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--hcz-accent);
  color: #241a06;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 3.25rem;
  padding: 1.3rem 0;
  font-size: 0.88rem;
  color: #a9bdb1;
}

.footer-bottom a {
  color: #cfe0d6;
}

.footer-bottom a:hover {
  color: var(--hcz-accent);
}

/* --------------------------------------------------------------------------
   16. Misc — back to top, reveal animations
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1040;
  width: 47px;
  height: 47px;
  border: none;
  border-radius: 50%;
  background: var(--hcz-primary);
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  box-shadow: var(--hcz-shadow-sm);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--hcz-accent);
  color: #241a06;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 4rem 0;
  }

  .hero {
    padding: 4.5rem 0 4.5rem;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 0.55rem 0.8rem;
  }

  .btn-nav {
    margin-top: 0.75rem;
  }

  .featured-card .featured-img {
    min-height: 240px;
  }
}

@media (max-width: 575.98px) {
  .hero-card {
    position: relative;
    left: 0;
    bottom: 0;
    max-width: 100%;
    margin-top: 1rem;
  }

  .hero-pill {
    top: 12px;
    right: 10px;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-media::before {
    display: none;
  }

  .news-band {
    padding: 2rem 1.5rem;
  }

  .testimonial {
    padding: 2.6rem 1.5rem 2rem;
  }

  .form-card {
    padding: 1.6rem 1.4rem;
  }

  .featured-card .featured-body {
    padding: 1.75rem 1.4rem;
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}



.newsletter-container {
    background: #ffffff;
    padding: 30px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


input[type="text"],
input[type="email"],
input[type="date"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 8px;
}



.success-message {
    display: none;
    margin-top: 15px;
    color: green;
    text-align: center;
    font-weight: bold;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}


.unsubscribe-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            max-width: 100%;
            width: 100%;
        }
        
        #form-section h1 { color: #333; margin-bottom: 20px; }
        #form-section p { color: #666; margin-bottom: 20px; font-size: 14px; }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }
        
        input[type="email"],
        textarea {
            width: 100%;
            padding: 10px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 14px;
        }
        
        input[type="email"]:focus,
        textarea:focus {
            outline: none;
            border-color: #667eea;
        }
        
        .checkbox {
            display: flex;
            align-items: center;
        }
        
        .checkbox input {
            width: auto;
            margin-right: 10px;
        }
        
        .buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        button {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
        }
        
        .btn-submit {
            background: #796c00;
            color: white;
        }
        
        .btn-submit:hover {
            background: #000;
        }
        
        .btn-cancel {
            background: #ddd;
            color: #333;
        }
        
        .btn-cancel:hover {
            background: #bbb;
        }
        
        .success {
            text-align: center;
        }
        
        .checkmark {
            width: 70px;
            height: 70px;
            background: #27ae60;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin: 0 auto 20px;
        }
        
        .success h2 {
            color: #333;
            margin-bottom: 10px;
        }
        
        .success p {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .email-text {
            background: #f5f5f5;
            padding: 10px;
            margin: 15px 0;
            border-radius: 5px;
            color: #667eea;
            font-weight: bold;
        }
        
        #feedback-box {
            display: none;
            margin-top: 15px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 5px;
        }
        
        @media (max-width: 600px) {
            .container { padding: 20px; }
            .buttons { flex-direction: column; }
        }

    .blog-content {
      text-align: justify;
    }

    .navbar-brand img{
      width: 250px;
    }