/* ============================================================
   COOLTRAIL SERVICES – Custom Redesign Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --ahs-green:      #2AB97E;
  --ahs-green-dark: #1f8f61;
  --ahs-yellow:     #FEDB5C;
  --ahs-black:      #111827;
  --ahs-dark:       #1f2937;
  --ahs-gray:       #6b7280;
  --ahs-light:      #f9fafb;
  --ahs-white:      #ffffff;
  --ahs-border:     #e5e7eb;
  --ahs-radius:     12px;
  --ahs-shadow:     0 4px 24px rgba(0,0,0,.10);
  --ahs-transition: all .3s ease;
}

/* ============================================================
   HEADER
   ============================================================ */
.ahs-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

/* Top info bar */
.ahs-header__topbar {
  background: #20684A;
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}
.ahs-header__topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ahs-header__topbar-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.ahs-header__topbar-info li { display: flex; align-items: center; gap: 6px; }
.ahs-header__topbar-info a { color: #fff; text-decoration: none; }
.ahs-header__topbar-info a:hover { color: var(--ahs-yellow); }
.ahs-header__topbar-social { display: flex; gap: 12px; }
.ahs-header__topbar-social a { color: #fff; font-size: 14px; transition: var(--ahs-transition); }
.ahs-header__topbar-social a:hover { color: var(--ahs-yellow); transform: translateY(-2px); }

/* Main nav */
.ahs-navbar {
  background: var(--ahs-white);
  border-bottom: 2px solid var(--ahs-border);
  position: relative;
}
.ahs-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

/* Text Logo */
.ahs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.ahs-logo__icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--ahs-green), var(--ahs-green-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(42,185,126,.35);
}
.ahs-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.ahs-logo__brand {
  font-size: 22px; font-weight: 800; color: var(--ahs-black);
  letter-spacing: -.5px;
  font-family: 'Titillium Web', sans-serif;
}
.ahs-logo__sub {
  font-size: 11px; font-weight: 600; color: var(--ahs-green);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* Nav links */
.ahs-nav__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px; align-items: center;
}
.ahs-nav__link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--ahs-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--ahs-transition);
  white-space: nowrap;
}
.ahs-nav__link:hover, .ahs-nav__link.active {
  color: var(--ahs-green);
  background: rgba(42,185,126,.08);
}

/* Buttons */
.ahs-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: var(--ahs-transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.ahs-btn--primary {
  background: var(--ahs-green);
  color: #fff;
  border-color: var(--ahs-green);
}
.ahs-btn--primary:hover {
  background: var(--ahs-green-dark);
  border-color: var(--ahs-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,185,126,.35);
}
.ahs-btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.ahs-btn--whatsapp:hover {
  background: #1ebe5c;
  color: #fff;
  transform: translateY(-2px);
}
.ahs-btn--outline {
  background: transparent;
  color: var(--ahs-green);
  border-color: var(--ahs-green);
}
.ahs-btn--outline:hover {
  background: var(--ahs-green);
  color: #fff;
}
.ahs-btn--yellow {
  background: var(--ahs-yellow);
  color: var(--ahs-black);
  border-color: var(--ahs-yellow);
  font-weight: 700;
}
.ahs-btn--yellow:hover {
  background: #f5cc3a;
  color: var(--ahs-black);
  transform: translateY(-2px);
}

/* Navbar CTA group */
.ahs-navbar__cta { display: flex; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.ahs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 2px solid var(--ahs-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}
.ahs-hamburger span {
  display: block; height: 2px;
  background: var(--ahs-dark);
  border-radius: 2px;
  transition: var(--ahs-transition);
}
.ahs-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ahs-hamburger.open span:nth-child(2) { opacity: 0; }
.ahs-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.ahs-mobile-menu {
  display: none;
  background: var(--ahs-white);
  border-top: 1px solid var(--ahs-border);
  padding: 20px;
}
.ahs-mobile-menu.open { display: block; }
.ahs-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.ahs-mobile-menu ul li a {
  display: block; padding: 12px 0;
  font-weight: 600; color: var(--ahs-dark);
  border-bottom: 1px solid var(--ahs-border);
  text-decoration: none;
}
.ahs-mobile-menu ul li a:hover { color: var(--ahs-green); }

/* ============================================================
   HERO / BANNER – Video Background
   ============================================================ */
.ahs-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.ahs-hero__video-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.ahs-hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ahs-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(17,24,39,.82) 0%,
    rgba(17,24,39,.55) 60%,
    rgba(42,185,126,.15) 100%);
  z-index: 1;
}
.ahs-hero__content {
  position: relative; z-index: 2;
  padding: 120px 0 80px;
}
.ahs-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,185,126,.2);
  border: 1px solid rgba(42,185,126,.4);
  color: #6ee7b7;
  font-size: 13px; font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.ahs-hero__badge i { color: var(--ahs-green); }
.ahs-hero__title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  color: var(--ahs-white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Titillium Web', sans-serif;
}
.ahs-hero__title span { color: var(--ahs-green); }
.ahs-hero__text {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.ahs-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.ahs-hero__actions .ahs-btn { padding: 14px 28px; font-size: 15px; }
.ahs-hero__stats {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.ahs-hero__stat-item { text-align: center; }
.ahs-hero__stat-num {
  display: block;
  font-size: 32px; font-weight: 800;
  color: var(--ahs-yellow);
  font-family: 'Titillium Web', sans-serif;
}
.ahs-hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Scroll-down indicator */
.ahs-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.ahs-hero__scroll i { display: block; font-size: 20px; margin-top: 4px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.ahs-section { padding: 90px 0; }
.ahs-section--gray { background: var(--ahs-light); }
.ahs-section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,185,126,.1);
  color: var(--ahs-green);
  font-size: 12px; font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.ahs-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ahs-black);
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: 'Titillium Web', sans-serif;
}
.ahs-section-title span { color: var(--ahs-green); }
.ahs-section-subtitle {
  font-size: 16px;
  color: var(--ahs-gray);
  max-width: 560px;
  line-height: 1.7;
}
.ahs-section-header { margin-bottom: 52px; }
.ahs-section-header--center { text-align: center; }
.ahs-section-header--center .ahs-section-subtitle { margin: 0 auto; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
#ourservice { scroll-margin-top: 80px; }
.ahs-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.ahs-service-card {
  background: var(--ahs-white);
  border-radius: var(--ahs-radius);
  box-shadow: var(--ahs-shadow);
  overflow: hidden;
  transition: var(--ahs-transition);
  display: flex; flex-direction: column;
  border: 1px solid var(--ahs-border);
}
.ahs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
  border-color: var(--ahs-green);
}
.ahs-service-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.ahs-service-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ahs-service-card:hover .ahs-service-card__img { transform: scale(1.06); }
.ahs-service-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ahs-green);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase; letter-spacing: .8px;
}
.ahs-service-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.ahs-service-card__title {
  font-size: 18px; font-weight: 700;
  color: var(--ahs-black);
  margin-bottom: 10px;
  font-family: 'Titillium Web', sans-serif;
}
.ahs-service-card__text {
  font-size: 14px;
  color: var(--ahs-gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.ahs-service-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ahs-border);
}
.ahs-service-card__price {
  font-size: 16px; font-weight: 800;
  color: var(--ahs-green);
}
.ahs-service-card__price small {
  font-size: 11px; font-weight: 500;
  color: var(--ahs-gray);
}
.ahs-service-card .ahs-open-booking {
  padding: 9px 18px;
  font-size: 13px;
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.ahs-modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 99998;
  backdrop-filter: blur(4px);
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 30px 15px;
}
.ahs-modal-backdrop.open { display: flex; }
.ahs-modal {
  background: var(--ahs-white);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  margin: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  animation: modalIn .35s ease;
  overflow: hidden;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ahs-modal__header {
  background: linear-gradient(135deg, var(--ahs-green), var(--ahs-green-dark));
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
}
.ahs-modal__header-left h3 {
  font-size: 20px; font-weight: 800;
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
}
.ahs-modal__header-left p {
  font-size: 13px; color: rgba(255,255,255,.8);
  margin: 4px 0 0;
}
.ahs-modal__close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  border: none; border-radius: 8px;
  color: #fff; font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ahs-transition);
}
.ahs-modal__close:hover { background: rgba(255,255,255,.35); }
.ahs-modal__body { padding: 28px; }

/* Form steps indicator */
.ahs-steps {
  display: flex; align-items: center;
  margin-bottom: 28px;
  gap: 0;
}
.ahs-step {
  display: flex; align-items: center; flex: 1;
}
.ahs-step__circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ahs-border);
  color: var(--ahs-gray);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--ahs-transition);
}
.ahs-step.active .ahs-step__circle { background: var(--ahs-green); color: #fff; }
.ahs-step.done .ahs-step__circle { background: var(--ahs-green-dark); color: #fff; }
.ahs-step__label {
  font-size: 11px; font-weight: 600;
  color: var(--ahs-gray);
  margin-left: 8px; white-space: nowrap;
}
.ahs-step.active .ahs-step__label { color: var(--ahs-green); }
.ahs-step__line {
  flex: 1; height: 2px;
  background: var(--ahs-border);
  margin: 0 10px;
}
.ahs-step.done + .ahs-step .ahs-step__line,
.ahs-step.active .ahs-step__line { background: var(--ahs-green); }

/* Form fields */
.ahs-form-step { display: none; }
.ahs-form-step.active { display: block; }
.ahs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ahs-form-row.full { grid-template-columns: 1fr; }
.ahs-form-group { display: flex; flex-direction: column; gap: 6px; }
.ahs-form-group label {
  font-size: 13px; font-weight: 600;
  color: var(--ahs-dark);
}
.ahs-form-group label span { color: #ef4444; }
.ahs-form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--ahs-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ahs-dark);
  background: var(--ahs-white);
  transition: var(--ahs-transition);
  font-family: inherit;
}
.ahs-form-control:focus {
  outline: none;
  border-color: var(--ahs-green);
  box-shadow: 0 0 0 3px rgba(42,185,126,.12);
}
.ahs-form-control::placeholder { color: #9ca3af; }
select.ahs-form-control { cursor: pointer; }

/* Payment step */
.ahs-payment-methods { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.ahs-payment-method {
  flex: 1; min-width: 100px;
  border: 2px solid var(--ahs-border);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--ahs-transition);
  font-size: 13px; font-weight: 600;
  color: var(--ahs-gray);
}
.ahs-payment-method:hover { border-color: var(--ahs-green); color: var(--ahs-green); }
.ahs-payment-method.selected { border-color: var(--ahs-green); background: rgba(42,185,126,.06); color: var(--ahs-green); }
.ahs-payment-method i { display: block; font-size: 26px; margin-bottom: 6px; }

/* Stripe card element container */
#stripe-card-element {
  padding: 12px 14px;
  border: 1.5px solid var(--ahs-border);
  border-radius: 8px;
  background: #fff;
  transition: var(--ahs-transition);
}
#stripe-card-element.focused { border-color: var(--ahs-green); box-shadow: 0 0 0 3px rgba(42,185,126,.12); }
.ahs-card-error { color: #ef4444; font-size: 13px; margin-top: 6px; min-height: 18px; }

/* Order summary */
.ahs-order-summary {
  background: var(--ahs-light);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid var(--ahs-border);
}
.ahs-order-summary__row {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--ahs-gray);
  padding: 5px 0;
}
.ahs-order-summary__row.total {
  font-weight: 700; color: var(--ahs-black);
  font-size: 16px;
  border-top: 1px solid var(--ahs-border);
  margin-top: 8px; padding-top: 12px;
}
.ahs-order-summary__service-name { font-weight: 600; color: var(--ahs-dark); }

/* Modal footer */
.ahs-modal__footer {
  padding: 20px 28px 24px;
  display: flex; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--ahs-border);
}
.ahs-modal__footer .ahs-btn { padding: 12px 24px; font-size: 14px; flex: 1; justify-content: center; }

/* Success state */
.ahs-booking-success {
  text-align: center;
  padding: 20px 0;
}
.ahs-booking-success__icon {
  width: 80px; height: 80px;
  background: rgba(42,185,126,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px; color: var(--ahs-green);
}
.ahs-booking-success h3 { font-size: 22px; font-weight: 700; color: var(--ahs-black); margin-bottom: 10px; }
.ahs-booking-success p { color: var(--ahs-gray); font-size: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { scroll-margin-top: 80px; }
.ahs-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.ahs-testimonial-card {
  background: var(--ahs-white);
  border-radius: var(--ahs-radius);
  padding: 28px;
  box-shadow: var(--ahs-shadow);
  border: 1px solid var(--ahs-border);
  transition: var(--ahs-transition);
  position: relative;
}
.ahs-testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.ahs-testimonial-card__quote {
  position: absolute; top: 20px; right: 24px;
  font-size: 48px;
  color: rgba(42,185,126,.12);
  line-height: 1;
  font-family: Georgia, serif;
}
.ahs-testimonial-card__stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
.ahs-testimonial-card__text {
  font-size: 15px;
  color: var(--ahs-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.ahs-testimonial-card__client { display: flex; align-items: center; gap: 12px; }
.ahs-testimonial-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ahs-green);
}
.ahs-testimonial-card__avatar-placeholder {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ahs-green), var(--ahs-green-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 700;
  font-family: 'Titillium Web', sans-serif;
  flex-shrink: 0;
}
.ahs-testimonial-card__name { font-weight: 700; color: var(--ahs-black); font-size: 15px; }
.ahs-testimonial-card__role { font-size: 12px; color: var(--ahs-green); font-weight: 600; }

/* ============================================================
   ABOUT SECTION (enhanced)
   ============================================================ */
#aboutus { scroll-margin-top: 80px; }
.ahs-about__img-wrap {
  position: relative;
}
.ahs-about__img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.ahs-about__badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--ahs-green);
  color: #fff;
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(42,185,126,.4);
}
.ahs-about__badge-float strong { display: block; font-size: 32px; font-weight: 800; font-family: 'Titillium Web', sans-serif; }
.ahs-about__badge-float span { font-size: 12px; opacity: .85; }
.ahs-about__features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.ahs-about__feature { display: flex; gap: 14px; align-items: flex-start; }
.ahs-about__feature-icon {
  width: 44px; height: 44px;
  background: rgba(42,185,126,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ahs-green);
  font-size: 18px;
  flex-shrink: 0;
}
.ahs-about__feature-text h5 { font-size: 15px; font-weight: 700; color: var(--ahs-black); margin: 0 0 4px; }
.ahs-about__feature-text p { font-size: 13px; color: var(--ahs-gray); margin: 0; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
#pricing { scroll-margin-top: 80px; }
.ahs-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.ahs-pricing-card {
  background: var(--ahs-white);
  border-radius: var(--ahs-radius);
  box-shadow: var(--ahs-shadow);
  border: 2px solid var(--ahs-border);
  overflow: hidden;
  transition: var(--ahs-transition);
}
.ahs-pricing-card:hover, .ahs-pricing-card.featured {
  border-color: var(--ahs-green);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42,185,126,.2);
}
.ahs-pricing-card__img { width: 100%; height: 180px; object-fit: cover; }
.ahs-pricing-card__body { padding: 24px; }
.ahs-pricing-card__title { font-size: 18px; font-weight: 700; color: var(--ahs-black); margin-bottom: 8px; font-family: 'Titillium Web', sans-serif; }
.ahs-pricing-card__price { font-size: 26px; font-weight: 800; color: var(--ahs-green); margin-bottom: 8px; }
.ahs-pricing-card__price small { font-size: 13px; font-weight: 500; color: var(--ahs-gray); }
.ahs-pricing-card__text { font-size: 13px; color: var(--ahs-gray); line-height: 1.6; margin-bottom: 18px; }
.ahs-pricing-card .ahs-btn { width: 100%; justify-content: center; }
.ahs-pricing-card__featured-badge {
  background: var(--ahs-green);
  color: #fff;
  text-align: center;
  font-size: 12px; font-weight: 700;
  padding: 6px;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq { scroll-margin-top: 80px; }
.ahs-faq__list { display: flex; flex-direction: column; gap: 12px; }
.ahs-faq-item {
  background: var(--ahs-white);
  border: 1.5px solid var(--ahs-border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--ahs-transition);
}
.ahs-faq-item.open { border-color: var(--ahs-green); }
.ahs-faq-item__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px; font-weight: 700;
  color: var(--ahs-dark);
  gap: 12px;
}
.ahs-faq-item__question:hover { color: var(--ahs-green); }
.ahs-faq-item__icon {
  width: 28px; height: 28px;
  background: rgba(42,185,126,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ahs-green);
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--ahs-transition);
}
.ahs-faq-item.open .ahs-faq-item__icon { background: var(--ahs-green); color: #fff; transform: rotate(180deg); }
.ahs-faq-item__answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px; color: var(--ahs-gray);
  line-height: 1.7;
}
.ahs-faq-item.open .ahs-faq-item__answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.ahs-footer {
  background: #0f172a;
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.ahs-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.ahs-footer__logo-text {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}
.ahs-footer__logo-icon {
  width: 40px; height: 40px;
  background: var(--ahs-green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.ahs-footer__logo-brand { font-size: 20px; font-weight: 800; color: #fff; font-family: 'Titillium Web', sans-serif; }
.ahs-footer__logo-sub { font-size: 10px; color: var(--ahs-green); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.ahs-footer__about-text { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.ahs-footer__social { display: flex; gap: 10px; }
.ahs-footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  transition: var(--ahs-transition);
  text-decoration: none;
}
.ahs-footer__social a:hover { background: var(--ahs-green); color: #fff; transform: translateY(-3px); }
.ahs-footer__widget-title {
  font-size: 16px; font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(42,185,126,.4);
}
.ahs-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ahs-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: var(--ahs-transition);
  display: flex; align-items: center; gap: 6px;
}
.ahs-footer__links a::before { content: '→'; color: var(--ahs-green); font-size: 12px; }
.ahs-footer__links a:hover { color: #fff; padding-left: 4px; }
.ahs-footer__contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.ahs-footer__contact-item i { color: var(--ahs-green); margin-top: 3px; flex-shrink: 0; }
.ahs-footer__contact-item a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; }
.ahs-footer__contact-item a:hover { color: #fff; }
.ahs-footer__contact-item p { margin: 0; font-size: 14px; color: rgba(255,255,255,.65); }
.ahs-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.ahs-footer__bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,.45); }
.ahs-footer__bottom a { color: var(--ahs-green); text-decoration: none; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9990;
  transition: transform .3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 58px; height: 58px; border-radius: 50%; box-shadow: 0 4px 20px rgba(0,0,0,.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .ahs-navbar__cta .ahs-btn--primary { display: none; }
  .ahs-nav__links { display: none; }
  .ahs-hamburger { display: flex; }
  .ahs-footer__grid { grid-template-columns: 1fr 1fr; }
  .ahs-hero__stats { gap: 20px; }
}
@media (max-width: 767px) {
  .ahs-header__topbar-info li:last-child { display: none; }
  .ahs-header__topbar { font-size: 12px; }
  .ahs-hero { min-height: 90vh; }
  .ahs-hero__content { padding: 100px 0 60px; }
  .ahs-section { padding: 60px 0; }
  .ahs-services__grid { grid-template-columns: 1fr; }
  .ahs-footer__grid { grid-template-columns: 1fr; }
  .ahs-footer__bottom { justify-content: center; text-align: center; }
  .ahs-form-row { grid-template-columns: 1fr; }
  .ahs-payment-methods { flex-direction: column; }
  .ahs-about__badge-float { position: static; margin-top: 20px; display: inline-block; }
  .ahs-testimonials__grid { grid-template-columns: 1fr; }
  .ahs-pricing__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ahs-hero__stats { flex-wrap: wrap; }
  .ahs-hero__stat-item { flex: 1; min-width: 100px; }
  .ahs-modal { border-radius: 12px; }
  .ahs-modal__body { padding: 20px 16px; }
  .ahs-modal__footer { padding: 16px; }
  .ahs-steps .ahs-step__label { display: none; }
}

/* Hide old template header & preloader styles when our custom header is used */
.main-header { display: none !important; }
.stricky-header { display: none !important; }
.theme-border-left, .theme-border-right { display: none !important; }
