/* ==========================================================================
   Nathan Dental Clinic — Production Stylesheet
   Pixel-Perfect Implementation
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --navy-darkest: #0a203f;
  --navy-deep: #0c284e;
  --navy-header: #103463;
  --navy-main: #123b6d;
  --navy-soft: #1e3a5f;
  
  --green-brand: #00875a;
  --green-hover: #00734c;
  --green-emerald: #0ba360;
  --green-wa: #25d366;
  --green-wa-dark: #075e54;
  
  --red-accent: #e63946;
  --red-dark: #c92a37;
  --yellow-burst: #ffd500;
  --yellow-burst-dark: #f0b800;
  --purple-faq: #5b4dbf;
  
  --bg-sky-gradient-start: #dcf0fd;
  --bg-sky-gradient-mid: #eaf5fd;
  --bg-sky-gradient-end: #f7fbfe;
  
  --bg-mint: #effbf4;
  --bg-panel: #f5f9fc;
  --bg-subfooter: #edf2f7;
  
  --text-navy: #123b6d;
  --text-dark: #1e2d42;
  --text-body: #334155;
  --text-muted: #5a6e85;
  --text-light: #70849c;
  
  --border-light: #e2ebf4;
  --border-field: #d4e2ee;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 2px 8px rgba(18, 59, 109, 0.05);
  --shadow-md: 0 6px 20px rgba(18, 59, 109, 0.08);
  --shadow-lg: 0 12px 32px rgba(18, 59, 109, 0.12);
  
  --font-head: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: "Caveat", cursive;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Accessible skip link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 20px;
  background: var(--navy-main);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 0 0 6px 6px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}

/* ==================== BADGES ==================== */
.badge-pill-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background-color: var(--purple-faq);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* Header badge row */
.section-badge-header, .panel-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.section-badge-header h2, .panel-header-title h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-main);
  line-height: 1.25;
}

/* ==================== BUTTONS ==================== */
.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--navy-main);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-navy:hover {
  background-color: var(--navy-header);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(18, 59, 109, 0.2);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(18, 59, 109, 0.03);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 70px;
}

/* Brand Logo */
.clinic-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
}

/* Main Nav */
.main-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: #3b516a;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--navy-main);
  font-weight: 600;
}

/* Header Call Action */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  background-color: var(--green-brand);
  color: #ffffff;
  padding: 8px 18px;
  font-size: 13.5px;
}

.btn-header-call:hover {
  background-color: var(--green-hover);
  box-shadow: 0 4px 12px rgba(0, 135, 90, 0.25);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  padding: 2px;
}

.nav-hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--navy-main);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  background: linear-gradient(180deg, var(--bg-sky-gradient-start) 0%, var(--bg-sky-gradient-mid) 45%, var(--bg-sky-gradient-end) 100%);
  padding: 40px 0 10px;
  overflow: hidden;
}

.hero-image-link {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.hero-full-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 15px 30px rgba(18, 59, 109, 0.12));
}

/* ==================== GENERAL SECTIONS ==================== */
.section {
  padding: 50px 0;
}

.two-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.stacked-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.panel-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.panel-sub-header {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 6px;
}

.panel-desc-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.btn-panel {
  width: auto;
  align-self: flex-start;
  padding: 12px 20px;
}

.panel-action {
  margin-top: auto;
}

/* ==================== SECTION 2: TOOTH PAIN & RESULTS ==================== */
.section-pain-results {
  background-color: var(--bg-panel);
}

.pain-body-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 12px 0 16px;
}

.pain-left-content {
  flex: 1;
}

.pain-lead {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.circle-check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.circle-check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.green-circle-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background-color: var(--green-emerald);
  color: #ffffff;
}

.pain-circle-wrapper {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pain-circle-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(18, 59, 109, 0.08);
}

/* Results Visual Rows */
.results-visual-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.result-row-banner {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #eaf3fb;
}

.result-triplet-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== SECTION 3: RELEVANT SOLUTION ==================== */
.section-solutions {
  background-color: #ffffff;
}

.section-title-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 6px;
}

.section-title-sub h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-main);
}

.sub-icon {
  flex-shrink: 0;
}

.section-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.treatment-box {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.treatment-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c9ddf0;
}

.treatment-graphic-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.treatment-img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

.treatment-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 8px;
}

.treatment-detail {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ==================== SECTION 4: WHY CHOOSE US ==================== */
.section-why-us {
  background-color: var(--bg-mint);
  padding: 45px 0;
}

.why-sub-header {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-emerald);
  margin-bottom: 28px;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feature-col {
  text-align: center;
  padding: 0 4px;
}

.feature-circle-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 2px solid var(--green-emerald);
  background-color: #ffffff;
  color: var(--green-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(11, 163, 96, 0.08);
}

.feature-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-main);
  line-height: 1.3;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==================== SECTION 5: RESULTS & PATIENT EXPERIENCE ==================== */
.section-reviews {
  background-color: var(--bg-panel);
}

.review-grid {
  align-items: stretch;
}

.panel-results-2 {
  justify-content: flex-start;
}

.lower-results-container {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #eaf3fb;
}

.results-lower-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Testimonial Panel */
.panel-testimonial {
  justify-content: flex-start;
}

.experience-heading {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 16px;
}

.testimonial-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.testimonial-left {
  flex: 1;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: var(--navy-main);
  display: block;
  margin-bottom: 4px;
}

.testimonial-quote {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-dark);
  font-style: normal;
  margin-bottom: 12px;
}

.testimonial-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.google-brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.2px;
}

.star-rating {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.patient-signature {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.testimonial-right {
  flex-shrink: 0;
}

.patient-avatar-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-avatar {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(18, 59, 109, 0.12);
}

/* ==================== SECTION 6: TAKE ACTION / OFFER BANNER ==================== */
.offer-cta-section {
  background-color: var(--navy-deep);
  color: #ffffff;
  padding: 48px 0;
}

.offer-flex-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.offer-badge-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.offer-badge-header h2 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.offer-main-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
}

.offer-intro-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #d1e2f7;
  max-width: 460px;
  margin-bottom: 24px;
}

.offer-hotline-pills {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hotline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.hotline-pill:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hotline-call {
  background-color: #ffffff;
  color: var(--navy-main);
}

.hotline-wa {
  background-color: var(--green-wa);
  color: #ffffff;
}

/* Offer Sunburst Graphic Side */
.offer-badge-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-sunburst-box {
  position: relative;
  background: var(--yellow-burst);
  color: #2b1d03;
  padding: 24px 22px;
  text-align: center;
  max-width: 330px;
  width: 100%;
  border-radius: 110px 20px 105px 25px / 20px 95px 25px 105px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: rotate(-1deg);
}

.ribbon-tag {
  display: inline-block;
  background-color: var(--red-dark);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}

.burst-headline {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: #8c0d15;
  line-height: 1.15;
  margin-bottom: 6px;
}

.burst-headline span {
  font-size: 32px;
  font-weight: 900;
  color: #a30e17;
}

.burst-terms {
  font-size: 11.5px;
  line-height: 1.35;
  color: #452608;
  max-width: 260px;
  margin: 0 auto 16px;
}

.btn-red-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--red-accent);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35);
}

.btn-red-cta:hover {
  background-color: var(--red-dark);
  transform: translateY(-1px);
}

/* ==================== SECTION 7: CONTACT & QUICK ENQUIRY ==================== */
.section-contact {
  background-color: #ffffff;
}

.contact-two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

/* Left Contact Info Panel */
.contact-info-panel {
  padding: 28px;
}

.contact-brand-icon {
  margin-bottom: 12px;
}

.contact-panel-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 4px;
}

.contact-sub-line {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-lead-prompt {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 18px;
}

.clinic-name-heading {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 14px;
}

.clinic-meta-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.clinic-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dark);
}

.meta-icon {
  color: var(--navy-main);
  flex-shrink: 0;
  margin-top: 2px;
}

.meta-content strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-main);
}

.meta-content a {
  color: var(--navy-main);
  font-weight: 600;
}

.meta-content a:hover {
  text-decoration: underline;
}

.contact-action-pills {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-pill-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-green-solid {
  background-color: var(--green-brand);
}

.btn-green-solid:hover {
  background-color: var(--green-hover);
  transform: translateY(-1px);
}

.btn-wa-solid {
  background-color: var(--green-wa);
}

.btn-wa-solid:hover {
  background-color: #1ebc59;
  transform: translateY(-1px);
}

/* Right Quick Enquiry Form Card */
.form-panel-card {
  padding: 28px;
}

.form-card-sub {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 4px;
}

.form-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 18px;
}

/* Form 2-Column Inside Layout */
.form-columns-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-field);
  border-radius: var(--radius-sm);
  background-color: #f9fbfe;
  font-family: inherit;
  font-size: 12.5px;
  color: var(--text-dark);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-main);
  box-shadow: 0 0 0 3px rgba(18, 59, 109, 0.12);
  background-color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

/* Right Treatment Options Radio List */
.form-right-options {
  display: flex;
  flex-direction: column;
}

.options-column-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 10px;
}

.radio-options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-radio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.custom-radio-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid #a3b9d1;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.custom-radio-row input[type="radio"]:checked + .radio-indicator {
  border-color: var(--navy-main);
  background-color: #ffffff;
}

.custom-radio-row input[type="radio"]:checked + .radio-indicator::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--navy-main);
}

.radio-text {
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 500;
}

.custom-radio-row:hover .radio-text {
  color: var(--navy-main);
}

/* Form submit */
.btn-submit-enquiry {
  width: 100%;
  padding: 13px;
  font-size: 13.5px;
}

/* ==================== SECTION 8: FAQ ==================== */
.section-faq {
  background-color: var(--bg-panel);
}

.faq-three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.faq-tile {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-header-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-main);
  transition: color 0.15s ease;
}

.faq-header-btn:hover {
  color: #0b2f5c;
}

.faq-icon {
  color: #00a896;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-tile.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 16px;
}

.faq-tile.open .faq-body-content {
  max-height: 250px;
  padding: 0 16px 14px;
}

.faq-body-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ==================== THANK YOU PAGE ==================== */
.thankyou-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-sky-gradient-start) 0%, var(--bg-sky-gradient-mid) 45%, var(--bg-sky-gradient-end) 100%);
}

.thankyou-container {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thankyou-check-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--green-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(0, 135, 90, 0.25);
}

.thankyou-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-main);
  margin-bottom: 14px;
}

.thankyou-message {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 460px;
  margin-bottom: 30px;
}

.thankyou-message strong {
  color: var(--navy-main);
  font-weight: 700;
}

.thankyou-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 26px;
}

.thankyou-home-link {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-main);
}

.thankyou-home-link:hover {
  text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background-color: var(--navy-deep);
  color: #ffffff;
  padding-top: 40px;
}

.footer-main-row {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 30px;
  align-items: center;
  padding-bottom: 36px;
}

/* Footer Brand */
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Footer Mid */
.footer-mid-block {
  line-height: 1.4;
}

.footer-headline {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-stats-highlight {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 6px;
}

.footer-detail-p {
  font-size: 12px;
  color: #bfd5ef;
  line-height: 1.45;
}

/* Footer Actions */
.footer-actions-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-call-pill {
  background-color: var(--green-brand);
  color: #ffffff;
  padding: 9px 20px;
  font-size: 13px;
}

.footer-call-pill:hover {
  background-color: var(--green-hover);
}

.footer-wa-pill {
  background-color: var(--green-wa);
  color: #ffffff;
  padding: 9px 20px;
  font-size: 13px;
}

.footer-wa-pill:hover {
  background-color: #1ebc59;
}

/* Sub-footer Legal */
.sub-footer-bar {
  background-color: var(--bg-subfooter);
  border-top: 1px solid #dce4ee;
  padding: 12px 0;
}

.sub-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-disclaimer {
  font-size: 11.5px;
  color: #4a5d73;
  margin: 0;
  line-height: 1.4;
}

.footer-location-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy-main);
  white-space: nowrap;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 34px;
  }
  
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }
  
  .faq-three-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-actions-block {
    grid-column: span 2;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  /* Navigation Drawer */
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 199;
  }

  .main-nav.open {
    max-height: 380px;
    border-bottom: 2px solid var(--navy-main);
  }

  .main-nav .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 14px;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
  }

  .nav-hamburger {
    display: flex;
  }

  /* 2-Panel Mobile */
  .two-panel-grid {
    grid-template-columns: 1fr;
  }

  .contact-two-col {
    grid-template-columns: 1fr;
  }

  .form-columns-wrap {
    grid-template-columns: 1fr;
  }

  .offer-flex-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offer-badge-header {
    justify-content: center;
  }

  .offer-hotline-pills {
    justify-content: center;
  }

  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-three-col-grid {
    grid-template-columns: 1fr;
  }

  .footer-main-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-block {
    justify-content: center;
  }

  .footer-actions-block {
    grid-column: auto;
    flex-direction: column;
  }

  .sub-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .features-row {
    grid-template-columns: 1fr;
  }

  .pain-body-grid {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .pain-circle-wrapper {
    align-self: center;
  }

  .btn-header-call span {
    display: none;
  }

  .btn-header-call {
    padding: 8px 12px;
  }
}
