/* ==========================================================================
   Active Health Way — Main Stylesheet
   Bright, friendly healthcare design system (teal + coral accents)
   ========================================================================== */

:root {
  --ahw-teal: #0d9b8a;
  --ahw-teal-soft: #17c3a8;
  --ahw-teal-dark: #0a6e5f;
  --ahw-teal-deep: #06423b;
  --ahw-ink: #0d2b27;
  --ahw-body: #5c7370;
  --ahw-mint: #eef8f4;
  --ahw-mint-deep: #e0f2ea;
  --ahw-coral: #ff8a5c;
  --ahw-coral-dark: #f76b35;
  --ahw-sun: #ffc24b;
  --ahw-line: #e2efe9;
  --ahw-white: #ffffff;

  --ahw-shadow: 0 18px 44px rgba(13, 43, 39, 0.09);
  --ahw-shadow-sm: 0 10px 26px rgba(13, 43, 39, 0.07);
  --ahw-shadow-lg: 0 30px 70px rgba(13, 43, 39, 0.16);

  --ahw-plus-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M17 12v10M12 17h10' stroke='%230d9b8a' stroke-opacity='.10' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");

  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Nunito', 'Segoe UI', Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ahw-body);
  background-color: var(--ahw-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ahw-ink);
}

::selection {
  background: #b8ead9;
  color: var(--ahw-teal-deep);
}

a {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(13, 155, 138, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

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

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

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

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 1.15rem 0 1rem;
}

.section-sub {
  color: var(--ahw-body);
  font-size: 1.06rem;
  margin: 0;
}

.section-lead {
  font-size: 1.06rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.ahw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ahw-mint);
  color: var(--ahw-teal-dark);
  padding: 0.5rem 1.15rem;
  border-radius: 50rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ahw-badge i {
  color: var(--ahw-coral);
  font-size: 0.95rem;
}

.ahw-badge-white {
  background: rgba(255, 255, 255, 0.94);
}

.text-gradient {
  background: linear-gradient(92deg, var(--ahw-teal) 10%, var(--ahw-teal-soft) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

.btn-ahw-primary,
.btn-ahw-accent,
.btn-ahw-ghost,
.btn-ahw-white,
.btn-ahw-soft,
.btn-ahw-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.85rem;
  border: none;
  border-radius: 50rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.btn-ahw-sm {
  padding: 0.62rem 1.35rem;
  font-size: 0.88rem;
}

.btn-ahw-primary {
  background: linear-gradient(135deg, var(--ahw-teal-soft), var(--ahw-teal-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 155, 138, 0.32);
}

.btn-ahw-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(13, 155, 138, 0.42);
  color: #fff;
}

.btn-ahw-accent {
  background: linear-gradient(135deg, #ff9a62, var(--ahw-coral-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(247, 107, 53, 0.32);
}

.btn-ahw-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(247, 107, 53, 0.42);
  color: #fff;
}

.btn-ahw-ghost {
  background: #fff;
  color: var(--ahw-teal-deep);
  border: 2px solid rgba(13, 155, 138, 0.25);
}

.btn-ahw-ghost:hover {
  border-color: var(--ahw-teal);
  background: var(--ahw-mint);
  transform: translateY(-3px);
  color: var(--ahw-teal-dark);
}

.btn-ahw-white {
  background: #fff;
  color: var(--ahw-teal-dark);
  box-shadow: 0 14px 30px rgba(4, 46, 40, 0.25);
}

.btn-ahw-white:hover {
  transform: translateY(-3px);
  color: var(--ahw-teal-deep);
}

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

.btn-ahw-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.btn-ahw-soft {
  background: var(--ahw-mint);
  color: var(--ahw-teal-dark);
  box-shadow: none;
}

.btn-ahw-soft:hover {
  background: linear-gradient(135deg, var(--ahw-teal-soft), var(--ahw-teal-dark));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(13, 155, 138, 0.28);
}

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

.ahw-navbar {
  padding: 1.15rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.ahw-navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(13, 43, 39, 0.08);
  padding: 0.6rem 0;
}

.ahw-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 16px rgba(13, 155, 138, 0.28));
}

.brand-text {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--ahw-ink);
  letter-spacing: -0.015em;
  line-height: 1;
}

.brand-way {
  font-style: normal;
  color: var(--ahw-teal);
}

.ahw-navbar .nav-link {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #24443f;
  padding: 0.55rem 1.05rem;
  border-radius: 50rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.ahw-navbar .nav-link:hover {
  color: var(--ahw-teal-dark);
  background: rgba(13, 155, 138, 0.09);
}

.ahw-navbar .nav-link.active {
  color: var(--ahw-teal-dark);
  background: var(--ahw-mint);
}

.ahw-navbar .navbar-toggler {
  border: 1.5px solid var(--ahw-line);
  border-radius: 0.9rem;
  padding: 0.45rem 0.75rem;
  color: var(--ahw-teal-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.ahw-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.22rem rgba(13, 155, 138, 0.18);
}

@media (max-width: 991.98px) {
  .ahw-navbar .navbar-collapse {
    background: #fff;
    border: 1px solid var(--ahw-line);
    border-radius: 1.25rem;
    margin-top: 1rem;
    padding: 1.25rem;
    box-shadow: var(--ahw-shadow);
  }

  .ahw-navbar .navbar-nav {
    gap: 0.25rem;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 10.5rem 0 6.5rem;
  background: linear-gradient(180deg, #ecf8f3 0%, #ffffff 96%);
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco-one {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #d3f1e6 0%, rgba(211, 241, 230, 0) 70%);
  top: -140px;
  left: -140px;
}

.hero-deco-two {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #ffe7d8 0%, rgba(255, 231, 216, 0) 70%);
  bottom: -240px;
  right: -170px;
}

.hero-plus {
  position: absolute;
  color: rgba(13, 155, 138, 0.28);
  font-size: 1.5rem;
  pointer-events: none;
}

.hero-plus.p-one { top: 26%; left: 4%; }
.hero-plus.p-two { top: 18%; right: 10%; font-size: 1.1rem; }
.hero-plus.p-three { bottom: 18%; left: 10%; font-size: 1.15rem; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 1.4rem 0 1.3rem;
}

.hero-sub {
  font-size: 1.13rem;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-top: 2.7rem;
}

.trust-text {
  margin: 0;
  font-size: 0.97rem;
  font-weight: 700;
  color: #3f5a55;
  line-height: 1.45;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(13, 43, 39, 0.14);
}

.avatar-stack {
  display: flex;
  padding-left: 10px;
}

.avatar-stack .avatar {
  margin-left: -12px;
}

.avatar-stack .avatar:first-child {
  margin-left: 0;
}

.avatar-teal { background: linear-gradient(135deg, #17b39d, #0a6e5f); }
.avatar-coral { background: linear-gradient(135deg, #ff9a62, #f76b35); }
.avatar-sun { background: linear-gradient(135deg, #ffd166, #f0a11f); }
.avatar-mint { background: #e3f6f0; color: var(--ahw-teal-dark); }

.hero-visual {
  position: relative;
  max-width: 470px;
  margin-inline: auto;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #bfeee1, rgba(191, 238, 225, 0) 72%);
  top: -2.4rem;
  right: -2.6rem;
  z-index: 0;
}

.hero-visual-frame {
  position: absolute;
  top: 1.8rem;
  left: -1.8rem;
  right: 1.8rem;
  bottom: -1.8rem;
  border: 2px dashed rgba(13, 155, 138, 0.35);
  border-radius: 15rem 15rem 1.75rem 1.75rem;
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 15rem 15rem 1.75rem 1.75rem;
  box-shadow: var(--ahw-shadow-lg);
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  border-radius: 1.1rem;
  padding: 0.8rem 1.1rem;
  box-shadow: var(--ahw-shadow);
  border: 1px solid var(--ahw-line);
}

.float-card-a {
  top: 13%;
  right: -9%;
  animation: ahwFloat 5.5s ease-in-out infinite;
}

.float-card-b {
  bottom: 8%;
  left: -11%;
  animation: ahwFloat 6.5s ease-in-out infinite reverse;
}

.float-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  box-shadow: 0 10px 20px rgba(13, 155, 138, 0.3);
}

.float-icon.coral {
  background: linear-gradient(135deg, #ff9a62, #f76b35);
  box-shadow: 0 10px 20px rgba(247, 107, 53, 0.3);
}

.float-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ahw-ink);
  line-height: 1.25;
}

.float-card small {
  display: block;
  font-size: 0.78rem;
  color: var(--ahw-body);
  line-height: 1.35;
}

@keyframes ahwFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --------------------------------------------------------------------------
   Marquee band
   -------------------------------------------------------------------------- */

.marquee-band {
  background: linear-gradient(90deg, var(--ahw-teal-dark), #0f8d7b 55%, var(--ahw-teal-soft));
  padding: 1.15rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ahwMarquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2.8rem;
  padding-right: 2.8rem;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eafff9;
  white-space: nowrap;
}

.marquee-item i {
  color: var(--ahw-sun);
  font-size: 0.85rem;
}

@keyframes ahwMarquee {
  to { transform: translateX(-50%); }
}

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

.about-visual {
  position: relative;
  max-width: 540px;
  margin-inline: auto;
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 2px dashed rgba(13, 155, 138, 0.3);
  border-radius: 50%;
  top: -2.2rem;
  right: -2.2rem;
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 2rem;
  box-shadow: var(--ahw-shadow-lg);
}

.about-quote-card {
  position: absolute;
  left: -1.6rem;
  bottom: -1.9rem;
  z-index: 3;
  max-width: 300px;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.3rem 1.5rem;
  box-shadow: var(--ahw-shadow);
  border: 1px solid var(--ahw-line);
}

.about-quote-card i {
  color: var(--ahw-coral);
  font-size: 1.6rem;
  line-height: 1;
}

.about-quote-card p {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ahw-ink);
  margin: 0.45rem 0 0.4rem;
}

.about-quote-card span {
  font-size: 0.85rem;
  color: var(--ahw-body);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.1rem;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 700;
  color: #3f5a55;
}

.check-list i {
  color: var(--ahw-teal);
  font-size: 1.2rem;
  line-height: 1.45;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   Why choose us (dark band)
   -------------------------------------------------------------------------- */

.why-section {
  position: relative;
  background: linear-gradient(150deg, #06423b, #0a5a4e 55%, #0d7263);
  overflow: hidden;
}

.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.why-section::before {
  width: 380px;
  height: 380px;
  top: -150px;
  right: -110px;
}

.why-section::after {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -90px;
}

.why-section .section-title {
  color: #fff;
}

.why-section .section-sub {
  color: #bfe3d9;
}

.why-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.5rem;
  padding: 2.2rem 1.9rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.32s ease, background 0.32s ease, border-color 0.32s ease;
}

.why-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 1.05rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  box-shadow: 0 12px 24px rgba(23, 195, 168, 0.35);
  margin-bottom: 1.4rem;
}

.why-card h3 {
  color: #fff;
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.why-card p {
  color: #bfe3d9;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.services-section {
  background: #f6fbf9;
  background-image: var(--ahw-plus-pattern);
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ahw-line);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--ahw-shadow-sm);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--ahw-shadow);
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

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

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

.service-chip {
  position: absolute;
  right: 1.3rem;
  bottom: -1.45rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ahw-line);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--ahw-teal-dark);
  box-shadow: var(--ahw-shadow-sm);
  transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-chip {
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  color: #fff;
}

.service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2.4rem 1.6rem 1.8rem;
}

.service-body h3 {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.service-body p {
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.service-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Steps (services page) ---------------------------------------------------- */

.steps-line {
  position: absolute;
  top: 4.7rem;
  left: 13%;
  right: 13%;
  border-top: 2px dashed #bfe3d8;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  height: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--ahw-line);
  border-radius: 1.5rem;
  padding: 2.5rem 1.7rem;
  box-shadow: var(--ahw-shadow-sm);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

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

.step-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 14px 28px rgba(13, 155, 138, 0.3);
}

.step-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

/* Note banner --------------------------------------------------------------- */

.note-banner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: var(--ahw-mint);
  border: 1px dashed rgba(13, 155, 138, 0.35);
  border-radius: 1.75rem;
  padding: 2.3rem 2.5rem;
}

.note-banner-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  box-shadow: 0 14px 28px rgba(13, 155, 138, 0.28);
}

.note-banner h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.note-banner p {
  margin: 0;
  line-height: 1.65;
}

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

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f2faf7);
}

.testimonial-quote-bg {
  position: absolute;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13rem;
  line-height: 1;
  color: rgba(13, 155, 138, 0.07);
  pointer-events: none;
}

.testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.testimonial .stars {
  color: var(--ahw-sun);
  font-size: 1.02rem;
  letter-spacing: 0.22rem;
}

.testimonial blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  font-weight: 600;
  line-height: 1.75;
  color: var(--ahw-ink);
  margin: 1.5rem 0 1.9rem;
}

.testimonial figcaption {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.testimonial .avatar {
  width: 62px;
  height: 62px;
  font-size: 1.02rem;
  border: none;
}

.testimonial figcaption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--ahw-ink);
}

.testimonial figcaption span {
  font-size: 0.92rem;
  color: var(--ahw-body);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--ahw-line);
  background: #fff;
  color: var(--ahw-teal-dark);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.testimonial-btn:hover {
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Blog cards
   -------------------------------------------------------------------------- */

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ahw-line);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--ahw-shadow-sm);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

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

.blog-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.blog-chip {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ahw-teal-dark);
  border-radius: 50rem;
  padding: 0.38rem 0.95rem;
  font-family: var(--font-head);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(13, 43, 39, 0.12);
}

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

.blog-body h3 {
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.7rem;
}

.blog-body h3 a {
  color: var(--ahw-ink);
  transition: color 0.25s ease;
}

.blog-body h3 a:hover {
  color: var(--ahw-teal-dark);
}

.blog-body p {
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: 1.2rem;
}

.read-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ahw-teal-dark);
}

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

.blog-card:hover .read-link i {
  transform: translateX(5px);
}

/* Newsletter banner (blog page) -------------------------------------------- */

.news-banner {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 3.4rem 2.5rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #0a6e60, #12a78f 60%, #17c3a8);
  box-shadow: 0 28px 60px rgba(10, 110, 96, 0.32);
}

.news-banner::before,
.news-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.news-banner::before {
  width: 240px;
  height: 240px;
  top: -110px;
  right: -70px;
}

.news-banner::after {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: -50px;
}

.news-banner-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.9rem;
}

.news-banner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 700;
}

.news-banner p {
  color: #d9f5ee;
  max-width: 560px;
  margin: 0.9rem auto 1.9rem;
}

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

.faq-side-card {
  background: var(--ahw-mint);
  border-radius: 1.5rem;
  padding: 2.2rem;
  border: 1px dashed rgba(13, 155, 138, 0.3);
}

.faq-side-card .faq-side-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  box-shadow: 0 12px 26px rgba(13, 155, 138, 0.28);
  margin-bottom: 1.2rem;
}

.faq-side-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.accordion-ahw .accordion-item {
  border: 1px solid var(--ahw-line);
  border-radius: 1.15rem !important;
  overflow: hidden;
  background: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 8px 22px rgba(13, 43, 39, 0.05);
}

.accordion-ahw .accordion-button {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ahw-ink);
  background: #fff;
  padding: 1.3rem 1.5rem;
  box-shadow: none;
}

.accordion-ahw .accordion-button:not(.collapsed) {
  background: var(--ahw-mint);
  color: var(--ahw-teal-dark);
}

.accordion-ahw .accordion-button::after {
  background-size: 1.05rem;
}

.accordion-ahw .accordion-body {
  padding: 0.2rem 1.5rem 1.4rem;
  line-height: 1.8;
  background: #fff;
}

/* --------------------------------------------------------------------------
   CTA panel
   -------------------------------------------------------------------------- */

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
  padding: 4.6rem 2rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #0a6e60, #12a78f 60%, #17c3a8);
  box-shadow: 0 34px 70px rgba(10, 110, 96, 0.34);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.cta-panel::before {
  width: 300px;
  height: 300px;
  top: -140px;
  right: -90px;
}

.cta-panel::after {
  width: 220px;
  height: 220px;
  bottom: -110px;
  left: -70px;
}

.cta-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  font-size: 2rem;
  animation: ahwPulse 2.8s ease-in-out infinite;
}

.cta-panel h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.cta-panel p {
  color: #d9f5ee;
  font-size: 1.08rem;
  max-width: 640px;
  margin: 1.1rem auto 2.4rem;
  line-height: 1.75;
}

@keyframes ahwPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25); }
  50% { box-shadow: 0 0 0 18px rgba(255, 255, 255, 0); }
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: 9.8rem 0 4.6rem;
  text-align: center;
  background: linear-gradient(180deg, #ecf8f3 0%, #ffffff 100%);
  overflow: hidden;
}

.page-hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-deco.a {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #d3f1e6 0%, rgba(211, 241, 230, 0) 70%);
  top: -120px;
  left: -100px;
}

.page-hero-deco.b {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #ffe7d8 0%, rgba(255, 231, 216, 0) 70%);
  bottom: -200px;
  right: -130px;
}

.page-hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin: 1.35rem 0 0.9rem;
}

.page-hero-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
}

.ahw-breadcrumb {
  margin: 1.9rem 0 0;
  --bs-breadcrumb-divider-color: #9fbfb7;
  --bs-breadcrumb-divider: '›';
}

.ahw-breadcrumb a {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ahw-teal-dark);
}

.ahw-breadcrumb a:hover {
  color: var(--ahw-coral-dark);
}

.ahw-breadcrumb .active {
  color: var(--ahw-body);
  font-weight: 700;
}

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

.contact-card {
  height: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--ahw-line);
  border-radius: 1.5rem;
  padding: 2.4rem 1.6rem;
  box-shadow: var(--ahw-shadow-sm);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

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

.contact-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--ahw-mint);
  color: var(--ahw-teal-dark);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.contact-card h3 {
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.contact-card p {
  margin: 0;
  line-height: 1.7;
}

.contact-card a {
  color: var(--ahw-teal-dark);
  font-weight: 700;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--ahw-coral-dark);
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--ahw-line);
  border-radius: 1.75rem;
  padding: 2.6rem;
  box-shadow: var(--ahw-shadow);
}

.contact-side-card {
  background: linear-gradient(150deg, #06423b, #0a5a4e 60%, #0d7263);
  border-radius: 1.75rem;
  padding: 2.6rem 2.3rem;
  color: #bfe3d9;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-side-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

.contact-side-card h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.contact-side-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-side-item:last-of-type {
  border-bottom: none;
}

.contact-side-item i {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-side-item strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-side-item a {
  color: #bfe3d9;
}

.contact-side-item a:hover {
  color: #fff;
}

.map-wrap {
  border-radius: 1.75rem;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--ahw-shadow);
  background: var(--ahw-mint);
}

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

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-label {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #33504b;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border-radius: 1rem;
  border: 1.5px solid var(--ahw-line);
  background: #fbfefd;
  padding: 0.85rem 1.15rem;
  font-size: 0.98rem;
  color: var(--ahw-ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ahw-teal);
  box-shadow: 0 0 0 0.25rem rgba(13, 155, 138, 0.14);
}

.form-control::placeholder {
  color: #9fb8b2;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
}

.form-note a {
  color: var(--ahw-teal-dark);
  font-weight: 700;
}

.form-note a:hover {
  color: var(--ahw-coral-dark);
}

/* --------------------------------------------------------------------------
   Newsletter (subscribe / unsubscribe)
   -------------------------------------------------------------------------- */

.news-card {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ahw-line);
  border-radius: 2rem;
  padding: 3.1rem 2.6rem;
  box-shadow: var(--ahw-shadow-lg);
  text-align: center;
}

.news-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  box-shadow: 0 18px 36px rgba(13, 155, 138, 0.35);
}

.news-card-icon.coral {
  background: linear-gradient(135deg, #ff9a62, #f76b35);
  box-shadow: 0 18px 36px rgba(247, 107, 53, 0.32);
}

.news-card h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.news-card .news-lead {
  max-width: 480px;
  margin: 0.9rem auto 1.8rem;
  line-height: 1.75;
}

.perk-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.2rem;
  max-width: 420px;
  display: grid;
  gap: 0.8rem;
  text-align: left;
}

.perk-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  color: #33504b;
}

.perk-list i {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ahw-mint);
  color: var(--ahw-teal-dark);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.interests {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.interests label {
  cursor: pointer;
}

.interests input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interests span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 1.2rem;
  border-radius: 50rem;
  border: 1.5px solid var(--ahw-line);
  background: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ahw-body);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.interests span i {
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.interests input:checked + span {
  background: linear-gradient(135deg, #17c3a8, #0a8d78);
  border-color: transparent;
  color: #fff;
}

.interests input:checked + span i {
  opacity: 1;
}

.interests input:focus-visible + span {
  outline: 3px solid rgba(13, 155, 138, 0.45);
  outline-offset: 2px;
}

.success-panel {
  text-align: center;
  padding: 1.2rem 0 0.4rem;
}

.success-ring {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #e8f9f1;
  color: #1fae72;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  animation: ahwPop 0.5s cubic-bezier(0.22, 1.2, 0.36, 1) both;
}

.success-ring.coral {
  background: #ffece2;
  color: #f76b35;
}

@keyframes ahwPop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-panel h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.success-panel p {
  max-width: 460px;
  margin: 0 auto 1.6rem;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Blog post page
   -------------------------------------------------------------------------- */

.post-byline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: #3f5a55;
  font-size: 0.95rem;
}

.post-byline i {
  color: var(--ahw-coral);
}

.post-featured {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: var(--ahw-shadow);
}

.post-featured img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.post-content {
  font-size: 1.06rem;
  line-height: 1.95;
}

.post-content > p + p {
  margin-top: 1.1rem;
}

.post-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 2.8rem 0 1.1rem;
  padding-left: 1.1rem;
  border-left: 4px solid var(--ahw-teal);
  border-radius: 2px;
}

.post-content blockquote {
  background: var(--ahw-mint);
  border-radius: 1.25rem;
  padding: 1.7rem 1.9rem;
  font-family: var(--font-head);
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--ahw-teal-dark);
  margin: 2.2rem 0;
  position: relative;
}

.post-content blockquote i {
  position: absolute;
  top: -0.9rem;
  left: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a62, #f76b35);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(247, 107, 53, 0.3);
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  display: grid;
  gap: 0.9rem;
}

.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.tips-list i {
  color: var(--ahw-teal);
  font-size: 1.2rem;
  margin-top: 0.28rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-pill {
  background: var(--ahw-mint);
  color: var(--ahw-teal-dark);
  border-radius: 50rem;
  padding: 0.42rem 1.05rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: #fff;
  border: 1px solid var(--ahw-line);
  border-radius: 1.35rem;
  padding: 1.5rem 1.7rem;
  box-shadow: var(--ahw-shadow-sm);
}

.post-author .avatar {
  border: none;
  width: 60px;
  height: 60px;
  font-size: 1rem;
}

.post-author strong {
  display: block;
  font-family: var(--font-head);
  color: var(--ahw-ink);
}

.post-author p {
  margin: 0;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.32rem;
  font-weight: 700;
  margin: 2.7rem 0 1rem;
  padding-left: 1.05rem;
  border-left: 4px solid var(--ahw-teal);
  border-radius: 2px;
}

.legal-content p {
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.3rem;
  margin-bottom: 1.2rem;
}

.legal-content li {
  line-height: 1.85;
  margin-bottom: 0.45rem;
}

.legal-content a {
  color: var(--ahw-teal-dark);
  font-weight: 700;
}

.legal-content a:hover {
  color: var(--ahw-coral-dark);
}

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

.footer {
  position: relative;
  background: #052b26;
  color: #9dbcb4;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ahw-plus-pattern);
  opacity: 0.5;
  pointer-events: none;
}

.footer-top {
  position: relative;
  padding: 5.2rem 0 3.2rem;
}

.footer-brand-text {
  line-height: 1.8;
  margin: 1.4rem 0 1.6rem;
  max-width: 320px;
}

.footer-heading {
  position: relative;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.65rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.3rem;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ahw-coral), var(--ahw-sun));
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #9dbcb4;
  font-weight: 600;
  padding: 0.3rem 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-link i {
  font-size: 0.65rem;
  color: var(--ahw-teal-soft);
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: #fff;
  padding-left: 0.35rem;
}

.footer-link:hover i {
  color: var(--ahw-coral);
}

.footer-contact-item {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.footer-contact-item i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--ahw-teal-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.footer-contact-item a {
  color: #9dbcb4;
  word-break: break-word;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: #cfe8e1;
  font-size: 1.02rem;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff9a62, #f76b35);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #9dbcb4;
  font-weight: 700;
}

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

/* --------------------------------------------------------------------------
   Back to top + reveal animations
   -------------------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 1040;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a62, #f76b35);
  color: #fff;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(247, 107, 53, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  cursor: pointer;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
}

html.ahw-js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.ahw-js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

html.ahw-js [data-reveal-delay="one"] { transition-delay: 0.1s; }
html.ahw-js [data-reveal-delay="two"] { transition-delay: 0.2s; }
html.ahw-js [data-reveal-delay="three"] { transition-delay: 0.3s; }

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

@media (max-width: 1199.98px) {
  .float-card-a { right: -4%; }
  .float-card-b { left: -5%; }
}

@media (max-width: 991.98px) {
  .section-pad { padding: 5rem 0; }
  .hero { padding: 8.5rem 0 5rem; }
  .page-hero { padding: 8.6rem 0 3.8rem; }
  .hero-trust { margin-top: 2.2rem; }
  .about-quote-card { position: static; max-width: 100%; margin-top: 1.4rem; }
  .about-visual::before { display: none; }
  .float-card-a { right: 0; }
  .float-card-b { left: 0; }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 4.2rem 0; }
  .hero { padding: 7.6rem 0 4rem; }
  .hero-actions .btn-ahw-primary,
  .hero-actions .btn-ahw-ghost {
    width: 100%;
  }
  .float-card { padding: 0.65rem 0.9rem; }
  .float-card strong { font-size: 0.82rem; }
  .float-card small { font-size: 0.72rem; }
  .float-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .news-card { padding: 2.4rem 1.5rem; }
  .contact-form-card { padding: 1.9rem 1.4rem; }
  .note-banner { flex-direction: column; text-align: center; padding: 2.2rem 1.6rem; }
  .map-wrap iframe { height: 320px; }
  .post-author { flex-direction: column; text-align: center; }
  .marquee-item { font-size: 0.88rem; gap: 1.6rem; padding-right: 1.6rem; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

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

  html.ahw-js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .marquee-track,
  .float-card,
  .cta-icon {
    animation: none !important;
  }
}
