/* =========================================================
   Healing Health Spark — Custom Stylesheet
   ========================================================= */

:root {
  --chc-primary: #0aadec;
  --chc-primary-dark: #0a6a60;
  --chc-primary-light: #e6f4f2;
  --chc-dark: #0e3a3a;
  --chc-darker: #092a2a;
  --chc-accent: #f5a623;
  --chc-accent-dark: #d98c0a;
  --chc-body: #55676b;
  --chc-heading: #103838;
  --chc-border: #e3eeee;
  --chc-radius: 14px;
  --chc-shadow: 0 10px 30px rgba(14, 58, 58, 0.08);
  --chc-shadow-hover: 0 16px 40px rgba(14, 58, 58, 0.16);
  --chc-font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, "Noto Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--chc-font);
  color: var(--chc-body);
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
}

section {
  position: relative;
}

/* ---------------- Buttons ---------------- */

.btn {
  border-radius: 50px;
  padding: 0.7rem 1.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

.btn-primary-chc:hover,
.btn-primary-chc:focus {
  background: var(--chc-primary-dark);
  border-color: var(--chc-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 140, 127, 0.3);
}

.btn-accent {
  background: var(--chc-accent);
  border: 2px solid var(--chc-accent);
  color: #fff;
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--chc-accent-dark);
  border-color: var(--chc-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}

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

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

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

.btn-outline-light-soft:hover,
.btn-outline-light-soft:focus {
  background: #fff;
  color: var(--chc-primary-dark);
  transform: translateY(-2px);
}

/* ---------------- Top Bar ---------------- */

.topbar {
  background: var(--chc-darker);
  color: #cfe6e3;
  font-size: 0.85rem;
}

.topbar a {
  color: #cfe6e3;
}

.topbar a:hover {
  color: #fff;
}

.topbar .divider {
  opacity: 0.4;
  margin: 0 4px;
}

/* ---------------- Navbar ---------------- */

.main-nav {
  background: #fff;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  transition: all 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 6px 24px rgba(14, 58, 58, 0.1);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--chc-primary), #16b8a5);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(14, 140, 127, 0.35);
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--chc-heading);
  line-height: 1.1;
}

.brand-text span {
  color: var(--chc-primary);
}

.main-nav .nav-link {
  color: var(--chc-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.95rem;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--chc-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: var(--chc-primary);
}

.navbar-toggler {
  border: 1px solid var(--chc-border);
  padding: 0.45rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(14, 140, 127, 0.2);
}

/* ---------------- Hero (Home) ---------------- */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(7, 42, 41, 0.92) 0%, rgba(9, 55, 53, 0.78) 45%, rgba(9, 55, 53, 0.35) 100%),
    url("../img/hero.jpg") center/cover no-repeat;
  color: #fff;
  padding: 140px 0 110px;
}

.hero .hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #bdf0e9;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--chc-accent);
}

.hero p {
  color: #d9ecea;
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-trust {
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.6rem;
}

.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #eafaf7;
  font-size: 0.95rem;
}

.hero-trust .trust-item i {
  font-size: 1.5rem;
  color: var(--chc-accent);
}

.hero-trust .trust-item strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.15;
  color: #fff;
}

/* ---------------- Inner Page Hero ---------------- */

.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(22, 184, 165, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(245, 166, 35, 0.12) 0%, transparent 40%),
    linear-gradient(120deg, var(--chc-darker) 0%, var(--chc-primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 130px 0 80px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: #d4eae7;
  max-width: 640px;
  margin: 0 auto 1rem;
}

.page-hero .breadcrumb {
  justify-content: center;
  margin: 0;
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: #bdf0e9;
}

.page-hero .breadcrumb .active {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------------- Sections ---------------- */

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--chc-primary-light);
}

.section-sm {
  padding: 60px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-head .label {
  display: inline-block;
  color: var(--chc-primary);
  background: #fff;
  border: 1px solid rgba(14, 140, 127, 0.25);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.section-head p {
  color: var(--chc-body);
  font-size: 1.02rem;
}

/* ---------------- About (home) ---------------- */

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--chc-radius);
  box-shadow: var(--chc-shadow);
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -14px;
  background: var(--chc-primary);
  color: #fff;
  border-radius: var(--chc-radius);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--chc-shadow-hover);
  text-align: center;
  border: 5px solid #fff;
}

.about-badge strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1.1;
  color: #fff;
}

.about-badge span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content .label {
  color: var(--chc-primary);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.about-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.7rem 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--chc-heading);
  font-size: 0.98rem;
}

.check-list li i {
  color: var(--chc-primary);
  font-size: 1.15rem;
  margin-top: 2px;
}

/* ---------------- Stats Band ---------------- */

.stats-band {
  background:
    linear-gradient(rgba(9, 42, 41, 0.93), rgba(9, 42, 41, 0.93)),
    url("../img/hero.jpg") center/cover no-repeat fixed;
  padding: 64px 0;
}

.stat-box {
  text-align: center;
  color: #fff;
}

.stat-box i {
  font-size: 2.1rem;
  color: var(--chc-accent);
  margin-bottom: 0.6rem;
  display: inline-block;
}

.stat-box h3 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.stat-box p {
  color: #bfe0dc;
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ---------------- Why Choose Us ---------------- */

.why-card {
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: var(--chc-radius);
  padding: 2rem 1.6rem;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
}

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

.why-card .why-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: var(--chc-primary-light);
  color: var(--chc-primary);
  transition: all 0.35s ease;
}

.why-card:hover .why-icon {
  background: var(--chc-primary);
  color: #fff;
}

.why-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.94rem;
  margin: 0;
}

/* ---------------- Service Cards ---------------- */

.service-card {
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: var(--chc-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

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

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

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

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

.service-card .card-body {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem;
}

.service-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.service-title i {
  color: var(--chc-primary);
  margin-right: 0.4rem;
}

.service-text {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem;
}

/* ---------------- Testimonials ---------------- */

.testimonial-section {
  background:
    linear-gradient(rgba(9, 42, 41, 0.94), rgba(9, 42, 41, 0.94)),
    url("../img/about.jpg") center/cover no-repeat;
}

.testimonial-section .section-head .label {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #bdf0e9;
}

.testimonial-section .section-head h2 {
  color: #fff;
}

.testimonial-section .section-head p {
  color: #cfe6e3;
}

.testi-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--chc-radius);
  padding: 2.4rem 2rem 2rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(3px);
}

.testi-card .quote-icon {
  font-size: 2.4rem;
  color: var(--chc-accent);
  margin-bottom: 1rem;
}

.testi-card .testi-text {
  color: #e6f3f1;
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.testi-card .stars {
  color: var(--chc-accent);
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.testi-card .testi-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.testi-card .testi-role {
  color: #a9cfc9;
  font-size: 0.85rem;
}

.testi-carousel .carousel-indicators {
  position: static;
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.testi-carousel .carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.4);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
}

.testi-carousel .carousel-indicators .active {
  background-color: var(--chc-accent);
}

/* ---------------- Blog Cards ---------------- */

.blog-card {
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: var(--chc-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

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

.blog-card .blog-img {
  height: 210px;
  overflow: hidden;
}

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

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

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

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--chc-heading);
}

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

.blog-card p {
  font-size: 0.94rem;
  margin-bottom: 1.1rem;
}

.blog-card .read-more {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--chc-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card .read-more:hover {
  gap: 0.7rem;
  color: var(--chc-primary-dark);
}

/* ---------------- Blog Posts (blog page) ---------------- */

.blog-post {
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: var(--chc-radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14, 58, 58, 0.05);
  scroll-margin-top: 100px;
}

.blog-post .post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.blog-post .post-body {
  padding: 2rem 1.8rem 2.2rem;
}

.blog-post h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

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

.blog-post .toggle-btn {
  border: none;
  background: none;
  color: var(--chc-primary);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-post .toggle-btn:hover {
  color: var(--chc-primary-dark);
}

/* ---------------- FAQ ---------------- */

.faq-accordion .accordion-item {
  border: 1px solid var(--chc-border);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #fff;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--chc-heading);
  background: #fff;
  padding: 1.15rem 1.4rem;
  font-size: 1rem;
}

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

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(14, 140, 127, 0.15);
}

.faq-accordion .accordion-body {
  padding: 1.1rem 1.4rem 1.3rem;
  font-size: 0.96rem;
}

/* ---------------- CTA Band ---------------- */

.cta-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.25) 0%, transparent 40%),
    linear-gradient(120deg, var(--chc-primary-dark), var(--chc-primary));
  color: #fff;
  border-radius: 20px;
  padding: 3.6rem 2.4rem;
  text-align: center;
  box-shadow: var(--chc-shadow-hover);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.cta-band p {
  color: #d9f0ec;
  max-width: 620px;
  margin: 0 auto 1.8rem;
  font-size: 1.03rem;
}

/* ---------------- Contact ---------------- */

.info-card {
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: var(--chc-radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--chc-shadow-hover);
  border-color: transparent;
}

.info-card .info-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--chc-primary-light);
  color: var(--chc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.info-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.info-card p,
.info-card a {
  font-size: 0.93rem;
  color: var(--chc-body);
  margin-bottom: 0.2rem;
}

.info-card a:hover {
  color: var(--chc-primary);
}

.contact-form-card,
.newsletter-form-card {
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: var(--chc-radius);
  box-shadow: var(--chc-shadow);
  padding: 2.4rem 2rem;
  height: 100%;
}

.contact-form-card h2,
.newsletter-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 1.5px solid var(--chc-border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: var(--chc-heading);
  background-color: #fbfefe;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--chc-primary);
  box-shadow: 0 0 0 0.22rem rgba(14, 140, 127, 0.15);
  background-color: #fff;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--chc-heading);
}

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

.form-check-input:focus {
  border-color: var(--chc-primary);
  box-shadow: 0 0 0 0.22rem rgba(14, 140, 127, 0.15);
}

.map-wrap {
  border-radius: var(--chc-radius);
  overflow: hidden;
  border: 1px solid var(--chc-border);
  box-shadow: var(--chc-shadow);
  height: 100%;
  min-height: 380px;
  background: var(--chc-primary-light);
}

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

/* ---------------- Subscribe / Unsubscribe ---------------- */

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: rgba(14, 140, 127, 0.4);
  box-shadow: 0 8px 22px rgba(14, 58, 58, 0.08);
}

.benefit-item .benefit-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--chc-primary-light);
  color: var(--chc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.benefit-item h3 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.benefit-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---------------- About Page ---------------- */

.mv-card {
  background: #fff;
  border: 1px solid var(--chc-border);
  border-left: 5px solid var(--chc-primary);
  border-radius: var(--chc-radius);
  padding: 2rem 1.8rem;
  height: 100%;
  box-shadow: 0 4px 16px rgba(14, 58, 58, 0.05);
}

.mv-card .mv-icon {
  font-size: 2rem;
  color: var(--chc-primary);
  margin-bottom: 0.9rem;
  display: inline-block;
}

.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.mv-card p {
  font-size: 0.95rem;
  margin: 0;
}

.value-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: var(--chc-radius);
  padding: 2rem 1.4rem;
  height: 100%;
  transition: all 0.35s ease;
}

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

.value-card i {
  font-size: 2rem;
  color: var(--chc-accent);
  margin-bottom: 0.9rem;
  display: inline-block;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---------------- Policy / Terms ---------------- */

.policy-toc {
  background: #fff;
  border: 1px solid var(--chc-border);
  border-radius: var(--chc-radius);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 4px 16px rgba(14, 58, 58, 0.05);
}

.policy-toc h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.policy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-toc li {
  margin-bottom: 0.15rem;
}

.policy-toc a {
  display: block;
  padding: 0.42rem 0.7rem;
  border-radius: 8px;
  color: var(--chc-body);
  font-size: 0.9rem;
  text-decoration: none;
}

.policy-toc a:hover {
  background: var(--chc-primary-light);
  color: var(--chc-primary-dark);
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 2rem 0 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--chc-border);
  scroll-margin-top: 100px;
}

.policy-content h3:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.policy-content p,
.policy-content li {
  font-size: 0.97rem;
}

.policy-content ul {
  padding-left: 1.4rem;
}

.policy-content ul li {
  margin-bottom: 0.45rem;
}

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--chc-darker);
  color: #b8d4d0;
  font-size: 0.93rem;
}

.site-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

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

.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.site-footer .footer-brand .brand-icon {
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
}

.site-footer .footer-brand .brand-text {
  color: #fff;
  font-size: 1.25rem;
}

.site-footer a {
  color: #b8d4d0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  padding-left: 4px;
}

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

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

.site-footer .footer-links i {
  color: var(--chc-accent);
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--chc-accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-contact a {
  display: inline;
}

.footer-contact a:hover {
  padding-left: 0;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
}

.social-links a:hover {
  background: var(--chc-primary);
  padding-left: 0;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0;
  font-size: 0.86rem;
}

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

.footer-bottom a:hover {
  color: #fff;
  padding-left: 0;
}

.footer-bottom .sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* ---------------- Back to Top ---------------- */

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--chc-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  z-index: 1050;
  box-shadow: 0 8px 22px rgba(14, 140, 127, 0.4);
}

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

.back-to-top:hover {
  background: var(--chc-primary-dark);
}

/* ---------------- Alerts ---------------- */

.form-alert {
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.94rem;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 110px 0 90px;
  }

  .about-badge {
    right: 10px;
    bottom: -20px;
    padding: 0.9rem 1.1rem;
  }

  .main-nav .navbar-collapse {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.2rem 1.2rem;
    margin-top: 0.9rem;
    box-shadow: var(--chc-shadow-hover);
  }

  .main-nav .nav-link {
    padding: 0.55rem 0.4rem;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 64px 0;
  }

  .cta-band {
    padding: 2.6rem 1.4rem;
  }

  .contact-form-card,
  .newsletter-form-card {
    padding: 1.8rem 1.3rem;
  }

  .testi-card {
    padding: 1.8rem 1.2rem 1.5rem;
  }
}
