/* =========================================================
   FAQ PAGE — SHARED WEBSITE DESIGN SYSTEM
   Dr. Deshmukh's Homeopathy
   Matches Home / About / Gallery / Contact
   ========================================================= */

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
  --blue: #1B4F8A;
  --blue-dark: #143d6e;
  --blue-light: #2563EB;

  --teal: #2A9D8F;
  --teal-light: #3BBFB0;
  --teal-pale: #E6F7F5;

  --gray-bg: #F8FAFC;
  --gray-border: #E2E8F0;

  --text-dark: #0F1923;
  --text-mid: #374151;
  --text-light: #6B7280;

  --white: #FFFFFF;
}


/* =========================================================
   2. RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

p {
  margin: 0;
}

a {
  color: inherit;
}


/* =========================================================
   3. HEADER
   Matches main website
   ========================================================= */

#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 70px;

  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--gray-border);

  box-shadow:
    0 1px 12px rgba(27, 79, 138, 0.08);

  transition: box-shadow 0.3s ease;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;

  padding: 0 24px;

  height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;
}


/* Logo */

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-wrap img {
  height: 48px;
  width: auto;
  display: block;
}


/* Desktop navigation */

nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.desktop-nav a {
  font-family: 'Poppins', sans-serif;

  font-size: 0.875rem;
  font-weight: 500;

  color: var(--text-mid);

  padding: 8px 14px;

  border-radius: 8px;

  text-decoration: none;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

nav.desktop-nav a:hover {
  color: var(--blue);
  background: rgba(27, 79, 138, 0.06);
}

nav.desktop-nav a.active {
  color: var(--teal);
  font-weight: 600;

  background: rgba(42, 157, 143, 0.07);
}


/* Header buttons */

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;

  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;
  font-weight: 600;

  color: var(--blue);

  border: 1.5px solid var(--blue);

  padding: 8px 16px;

  border-radius: 10px;

  text-decoration: none;

  transition: all 0.2s ease;

  white-space: nowrap;
}

.btn-call:hover {
  background: var(--blue);
  color: #fff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;
  font-weight: 600;

  color: #fff;

  background: linear-gradient(
    135deg,
    var(--teal) 0%,
    var(--blue) 100%
  );

  padding: 9px 20px;

  border-radius: 10px;

  text-decoration: none;

  transition: all 0.2s ease;

  white-space: nowrap;

  box-shadow:
    0 4px 12px rgba(42, 157, 143, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);

  box-shadow:
    0 6px 20px rgba(42, 157, 143, 0.4);
}


/* =========================================================
   4. MOBILE MENU
   ========================================================= */

.hamburger-btn {
  display: none;

  flex-direction: column;
  gap: 5px;

  background: none;
  border: none;

  cursor: pointer;

  padding: 8px;
}

.hamburger-btn span {
  width: 24px;
  height: 2px;

  background: var(--blue);

  border-radius: 2px;

  display: block;

  transition: all 0.3s ease;
}

#mobile-menu {
  display: none;

  position: fixed;

  top: 70px;
  left: 0;
  right: 0;

  background: #fff;

  border-bottom: 1px solid var(--gray-border);

  padding: 16px 24px 24px;

  z-index: 999;

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1);
}

#mobile-menu.open {
  display: block;
}

#mobile-menu a {
  display: block;

  font-family: 'Poppins', sans-serif;

  font-weight: 500;
  font-size: 0.95rem;

  color: var(--text-mid);

  padding: 12px 0;

  border-bottom: 1px solid var(--gray-border);

  text-decoration: none;
}

#mobile-menu .mobile-ctas {
  display: flex;

  gap: 10px;

  margin-top: 16px;
}

#mobile-menu .mobile-ctas a {
  flex: 1;

  text-align: center;

  padding: 12px;

  border-radius: 10px;

  font-size: 0.85rem;
}


/* =========================================================
   5. FLOATING MOBILE BUTTONS
   ========================================================= */

.floating-call {
  position: fixed;

  bottom: 80px;
  right: 20px;

  z-index: 900;

  display: none;

  background: var(--blue);

  color: #fff;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  align-items: center;
  justify-content: center;

  box-shadow:
    0 6px 20px rgba(27, 79, 138, 0.4);

  text-decoration: none;

  font-size: 1.3rem;

  transition: transform 0.2s ease;
}

.floating-wa {
  position: fixed;

  bottom: 20px;
  right: 20px;

  z-index: 900;

  display: none;

  background: #25D366;

  color: #fff;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  align-items: center;
  justify-content: center;

  box-shadow:
    0 6px 20px rgba(37, 211, 102, 0.4);

  text-decoration: none;

  font-size: 1.4rem;

  transition: transform 0.2s ease;
}

.floating-call:hover,
.floating-wa:hover {
  transform: scale(1.1);
}


/* =========================================================
   6. BREADCRUMB
   ========================================================= */

.breadcrumb {
  background: var(--gray-bg);

  border-bottom: 1px solid var(--gray-border);

  padding: 12px 0;
}

.breadcrumb-inner {
  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  display: flex;
  align-items: center;

  gap: 8px;

  font-size: 0.82rem;

  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--teal);

  text-decoration: none;

  font-weight: 500;
}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}


/* =========================================================
   7. COMMON SECTION UTILITIES
   ========================================================= */

.section-inner {
  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;
}

.section-eyebrow {
  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 700;

  color: var(--teal);

  letter-spacing: 0.08em;

  text-transform: uppercase;

  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);

  font-weight: 800;

  color: var(--text-dark);

  line-height: 1.2;

  margin-bottom: 16px;
}


/* Scroll reveal */

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;

    opacity: 1;

    transform: none;
  }
}


/* =========================================================
   8. FAQ PAGE HERO
   ========================================================= */

#page-hero {
  background:
    linear-gradient(
      135deg,
      #0F1923 0%,
      #1B4F8A 55%,
      #2A9D8F 100%
    );

  padding: 72px 0 64px;

  position: relative;

  overflow: hidden;
}

#page-hero::before {
  content: '';

  position: absolute;

  inset: 0;

  background-image:
    radial-gradient(
      circle at 80% 30%,
      rgba(42, 157, 143, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 10% 75%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 40%
    );

  pointer-events: none;
}

.page-hero-inner {
  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  position: relative;

  z-index: 1;
}

.hero-kicker {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: rgba(255, 255, 255, 0.9);

  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 600;

  padding: 6px 14px;

  border-radius: 100px;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  margin-bottom: 20px;
}

#page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 800;

  color: #fff;

  line-height: 1.15;

  margin-bottom: 16px;
}

#page-hero h1 span {
  background:
    linear-gradient(
      90deg,
      #7ED4CC,
      #A5F3EC
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

#page-hero .hero-sub {
  font-size: 1.05rem;

  color: rgba(255, 255, 255, 0.75);

  line-height: 1.75;

  max-width: 600px;

  margin-bottom: 40px;
}


/* Hero category pills */

.hero-cats {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  justify-content: center;
}

.hero-cat {
  display: flex;

  align-items: center;

  gap: 6px;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.18);

  color: rgba(255, 255, 255, 0.85);

  padding: 7px 16px;

  border-radius: 100px;

  font-size: 0.82rem;

  font-weight: 500;

  cursor: pointer;

  transition: all 0.2s ease;

  text-decoration: none;
}

.hero-cat:hover,
.hero-cat.active {
  background: rgba(255, 255, 255, 0.2);

  border-color: rgba(255, 255, 255, 0.4);

  color: #fff;
}


/* =========================================================
   9. CATEGORY FILTER
   ========================================================= */

#filter-strip {
  background: #fff;

  border-bottom: 1px solid var(--gray-border);

  padding: 16px 0;

  position: sticky;

  top: 70px;

  z-index: 99;

  box-shadow:
    0 2px 12px rgba(27, 79, 138, 0.06);
}

.filter-strip-inner {
  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  display: flex;

  gap: 10px;

  flex-wrap: wrap;

  align-items: center;
}

.filter-strip-label {
  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 700;

  color: var(--text-light);

  text-transform: uppercase;

  letter-spacing: 0.06em;

  margin-right: 6px;

  white-space: nowrap;
}

.cat-btn {
  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;

  font-weight: 600;

  padding: 7px 16px;

  border-radius: 100px;

  border: 1.5px solid var(--gray-border);

  background: #fff;

  color: var(--text-mid);

  cursor: pointer;

  transition: all 0.2s ease;

  white-space: nowrap;
}

.cat-btn:hover {
  border-color: var(--teal);

  color: var(--teal);
}

.cat-btn.active {
  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--blue)
    );

  color: #fff;

  border-color: transparent;

  box-shadow:
    0 3px 10px rgba(42, 157, 143, 0.25);
}


/* =========================================================
   10. FAQ MAIN AREA
   ========================================================= */

#faq-main {
  padding: 80px 0 100px;

  background: var(--gray-bg);
}

.faq-layout {
  display: grid;

  grid-template-columns: 260px 1fr;

  gap: 48px;

  align-items: start;
}


/* =========================================================
   11. FAQ SIDEBAR
   ========================================================= */

.faq-sidebar {
  position: sticky;

  top: 130px;

  background: #fff;

  border-radius: 20px;

  border: 1px solid var(--gray-border);

  padding: 24px;
}

.faq-sidebar h3 {
  font-size: 0.85rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 16px;

  padding-bottom: 12px;

  border-bottom: 1px solid var(--gray-border);
}

.sidebar-nav {
  display: flex;

  flex-direction: column;

  gap: 2px;
}

.sidebar-nav-item {
  display: flex;

  gap: 10px;

  align-items: flex-start;

  padding: 9px 10px;

  border-radius: 10px;

  text-decoration: none;

  transition: all 0.2s ease;

  cursor: pointer;
}

.sidebar-nav-item:hover,
.sidebar-nav-item.active {
  background: var(--teal-pale);
}

.sidebar-nav-item .nav-icon {
  font-size: 1rem;

  flex-shrink: 0;

  margin-top: 1px;
}

.sidebar-nav-item .nav-label {
  font-size: 0.8rem;

  font-weight: 600;

  color: var(--text-mid);

  line-height: 1.4;
}

.sidebar-nav-item:hover .nav-label,
.sidebar-nav-item.active .nav-label {
  color: var(--teal);
}


/* Sidebar CTA */

.sidebar-cta {
  margin-top: 20px;

  padding-top: 20px;

  border-top: 1px solid var(--gray-border);
}

.sidebar-cta p {
  font-size: 0.8rem;

  color: var(--text-light);

  line-height: 1.55;

  margin-bottom: 12px;
}

.btn-sidebar-book {
  display: block;

  text-align: center;

  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  font-size: 0.82rem;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--blue)
    );

  padding: 11px;

  border-radius: 10px;

  text-decoration: none;

  transition: all 0.2s ease;

  margin-bottom: 8px;

  box-shadow:
    0 3px 10px rgba(42, 157, 143, 0.25);
}

.btn-sidebar-book:hover {
  transform: translateY(-1px);

  box-shadow:
    0 6px 16px rgba(42, 157, 143, 0.35);
}

.btn-sidebar-wa {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 6px;

  font-family: 'Poppins', sans-serif;

  font-weight: 600;

  font-size: 0.82rem;

  color: #fff;

  background: #25D366;

  padding: 10px;

  border-radius: 10px;

  text-decoration: none;

  transition: all 0.2s ease;
}

.btn-sidebar-wa:hover {
  transform: translateY(-1px);

  box-shadow:
    0 6px 16px rgba(37, 211, 102, 0.35);
}


/* =========================================================
   12. FAQ GROUPS
   ========================================================= */

.faq-groups {
  display: flex;

  flex-direction: column;

  gap: 48px;
}

.faq-group {
  background: #fff;

  border-radius: 20px;

  border: 1px solid var(--gray-border);

  overflow: hidden;
}

.faq-group-header {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 24px 28px;

  border-bottom: 1px solid var(--gray-border);

  background:
    linear-gradient(
      135deg,
      var(--gray-bg),
      #fff
    );
}

.faq-group-icon {
  width: 44px;
  height: 44px;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      var(--teal-pale),
      rgba(42, 157, 143, 0.15)
    );

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 1.3rem;

  flex-shrink: 0;
}

.faq-group-header h2 {
  font-size: 1.05rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 2px;
}

.faq-group-header p {
  font-size: 0.8rem;

  color: var(--text-light);
}

.faq-group-count {
  margin-left: auto;

  background: var(--teal-pale);

  color: var(--teal);

  font-family: 'Poppins', sans-serif;

  font-size: 0.75rem;

  font-weight: 700;

  padding: 4px 10px;

  border-radius: 100px;

  flex-shrink: 0;
}


/* =========================================================
   13. FAQ ACCORDION
   ========================================================= */

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  padding: 20px 28px;

  cursor: pointer;

  font-family: 'Poppins', sans-serif;

  font-weight: 600;

  font-size: 0.97rem;

  color: var(--text-dark);

  user-select: none;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.faq-q:hover {
  background: var(--gray-bg);
}

.faq-icon {
  width: 30px;
  height: 30px;

  border-radius: 8px;

  background: var(--teal-pale);

  color: var(--teal);

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 1.1rem;

  flex-shrink: 0;

  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--teal);

  color: #fff;

  transform: rotate(45deg);
}

.faq-item.open .faq-q {
  background: var(--teal-pale);

  color: var(--teal);
}

.faq-a {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease;
}

.faq-a-inner {
  padding: 20px 28px 24px;

  font-size: 0.93rem;

  color: var(--text-mid);

  line-height: 1.8;

  border-top: 1px solid var(--gray-border);

  background: #FAFCFF;
}

.faq-a-inner strong {
  color: var(--text-dark);
}

.faq-a-inner p + p {
  margin-top: 12px;
}

.faq-a-inner ul {
  list-style: none;

  padding: 0;

  margin: 12px 0 0;

  display: flex;

  flex-direction: column;

  gap: 8px;
}

.faq-a-inner ul li {
  padding-left: 20px;

  position: relative;
}

.faq-a-inner ul li::before {
  content: '';

  position: absolute;

  left: 0;

  top: 9px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--teal);
}


/* =========================================================
   14. STATS STRIP
   ========================================================= */

#stats-strip {
  padding: 60px 0;

  background: #fff;

  border-top: 1px solid var(--gray-border);

  border-bottom: 1px solid var(--gray-border);
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 0;
}

.stat-item {
  text-align: center;

  padding: 20px;

  border-right: 1px solid var(--gray-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Poppins', sans-serif;

  font-size: 2.2rem;

  font-weight: 800;

  color: var(--blue);

  line-height: 1;

  margin-bottom: 6px;
}

.stat-num span {
  color: var(--teal);
}

.stat-label {
  font-size: 0.85rem;

  color: var(--text-light);

  line-height: 1.4;
}


/* =========================================================
   15. STILL HAVE QUESTIONS
   ========================================================= */

#still-questions {
  padding: 100px 0;

  background: var(--gray-bg);
}

.still-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin-top: 56px;
}

.contact-option-card {
  background: #fff;

  border-radius: 20px;

  padding: 32px 28px;

  border: 1px solid var(--gray-border);

  text-align: center;

  transition: all 0.3s ease;

  text-decoration: none;

  display: block;
}

.contact-option-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 14px 40px rgba(27, 79, 138, 0.1);

  border-color: var(--teal);
}

.option-icon {
  width: 64px;
  height: 64px;

  border-radius: 18px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 1.8rem;

  margin: 0 auto 18px;
}

.contact-option-card h3 {
  font-size: 1.05rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 8px;
}

.contact-option-card p {
  font-size: 0.87rem;

  color: var(--text-light);

  line-height: 1.65;

  margin-bottom: 18px;
}

.option-action {
  font-family: 'Poppins', sans-serif;

  font-size: 0.85rem;

  font-weight: 700;

  color: var(--teal);

  display: inline-flex;

  align-items: center;

  gap: 5px;
}


/* =========================================================
   16. CTA BANNER
   ========================================================= */

#cta-banner {
  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      var(--blue-dark) 0%,
      var(--blue) 40%,
      var(--teal) 100%
    );

  position: relative;

  overflow: hidden;
}

#cta-banner::before {
  content: '';

  position: absolute;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  top: -200px;
  right: -100px;
}

.cta-inner {
  max-width: 700px;

  margin: 0 auto;

  text-align: center;

  padding: 0 24px;

  position: relative;

  z-index: 1;
}

#cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);

  font-weight: 800;

  color: #fff;

  margin-bottom: 14px;
}

#cta-banner p {
  color: rgba(255, 255, 255, 0.8);

  font-size: 1rem;

  margin-bottom: 36px;

  line-height: 1.7;
}

.cta-btns {
  display: flex;

  gap: 14px;

  justify-content: center;

  flex-wrap: wrap;
}

.btn-white {
  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  font-size: 0.95rem;

  background: #fff;

  color: var(--blue);

  padding: 14px 28px;

  border-radius: 12px;

  text-decoration: none;

  transition: all 0.2s ease;
}

.btn-white:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-ghost-white {
  font-family: 'Poppins', sans-serif;

  font-weight: 600;

  font-size: 0.95rem;

  border: 2px solid rgba(255, 255, 255, 0.6);

  color: #fff;

  padding: 14px 28px;

  border-radius: 12px;

  text-decoration: none;

  transition: all 0.2s ease;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);

  border-color: #fff;
}


/* =========================================================
   17. FOOTER
   ========================================================= */

footer {
  background: var(--text-dark);

  color: rgba(255, 255, 255, 0.75);

  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1.5fr;

  gap: 40px;

  padding-bottom: 48px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 52px;

  filter: brightness(10);

  margin-bottom: 16px;

  display: block;
}

.footer-brand p {
  font-size: 0.85rem;

  line-height: 1.7;

  max-width: 280px;

  margin-bottom: 20px;
}

.social-icons {
  display: flex;

  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);

  display: flex;

  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.8);

  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--teal);

  color: #fff;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;

  font-size: 0.9rem;

  font-weight: 700;

  color: #fff;

  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;

  color: rgba(255, 255, 255, 0.65);

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--teal-light);
}

.footer-contact-item {
  display: flex;

  gap: 10px;

  align-items: flex-start;

  margin-bottom: 12px;

  font-size: 0.84rem;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);

  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  padding: 20px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
}

.footer-links {
  display: flex;

  gap: 20px;
}

.footer-links a {
  font-size: 0.82rem;

  color: rgba(255, 255, 255, 0.55);

  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal-light);
}


/* =========================================================
   18. TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .faq-layout {
    grid-template-columns: 220px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--gray-border);
  }
}


/* =========================================================
   19. SMALL TABLET
   ========================================================= */

@media (max-width: 900px) {

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .still-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   20. MOBILE
   ========================================================= */

@media (max-width: 768px) {

  nav.desktop-nav {
    display: none;
  }

  .header-actions .btn-call,
  .header-actions .btn-primary {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .floating-call,
  .floating-wa {
    display: flex;
  }

  #filter-strip {
    top: 70px;
  }

  .filter-strip-inner {
    overflow-x: auto;

    flex-wrap: nowrap;

    padding-bottom: 4px;

    scrollbar-width: none;
  }

  .filter-strip-inner::-webkit-scrollbar {
    display: none;
  }

  .filter-strip-label {
    flex-shrink: 0;
  }

  .cat-btn {
    flex-shrink: 0;
  }

  .faq-q {
    padding: 16px 20px;

    font-size: 0.9rem;
  }

  .faq-a-inner {
    padding: 16px 20px 20px;
  }

  .faq-group-header {
    padding: 18px 20px;
  }

  .faq-group-header h2 {
    font-size: 0.98rem;
  }

  .faq-group-header p {
    font-size: 0.76rem;
  }

  .faq-group-count {
    font-size: 0.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #page-hero {
    padding: 56px 0 48px;
  }

  #page-hero .hero-sub {
    font-size: 0.95rem;

    margin-bottom: 28px;
  }

  .hero-cats {
    gap: 8px;
  }

  .hero-cat {
    font-size: 0.76rem;

    padding: 6px 12px;
  }

  #faq-main {
    padding: 56px 0 70px;
  }

  #still-questions {
    padding: 70px 0;
  }

  #cta-banner {
    padding: 70px 0;
  }
}


/* =========================================================
   21. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .section-inner {
    padding: 0 18px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .breadcrumb-inner {
    padding: 0 18px;
  }

  .page-hero-inner {
    padding: 0 18px;
  }

  .filter-strip-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;

    border-bottom: 1px solid var(--gray-border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .faq-group {
    border-radius: 16px;
  }

  .faq-group-header {
    gap: 10px;
  }

  .faq-group-icon {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    font-size: 1.1rem;
  }

  .faq-group-count {
    display: none;
  }

  .faq-q {
    gap: 10px;

    font-size: 0.86rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;

    font-size: 1rem;
  }

  .faq-a-inner {
    font-size: 0.88rem;

    line-height: 1.7;
  }

  .still-grid {
    gap: 16px;
  }

  .contact-option-card {
    padding: 26px 20px;
  }

  .cta-btns {
    flex-direction: column;
  }

  .btn-white,
  .btn-ghost-white {
    width: 100%;

    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;

    gap: 12px;
  }
}