/*
 Theme Name:   Astra Child - 8 Body Type
 Template:     astra
 Version:      2.0
 Description:  Clean minimal design with dark/light mode
*/

/* ===========================
   CSS VARIABLES - LIGHT MODE
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-card: #ffffff;
  --text: #0a0a0a;
  --text-secondary: #333333;
  --text-muted: #6b6b6b;
  --border: #e0e0e0;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --success: #16a34a;
  --danger: #dc2626;
  --shadow: rgba(0,0,0,0.06);
  --shadow-hover: rgba(0,0,0,0.12);
  --header-bg: #ffffff;
  --header-text: #0a0a0a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
}

/* ===========================
   BASE
   =========================== */
* { box-sizing: border-box; }

body {
  font-family: var(--font) !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font) !important;
  font-weight: 700;
  color: var(--text) !important;
  letter-spacing: -0.02em;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.15rem; }
h4 { color: var(--text) !important; }
p { color: var(--text-secondary) !important; line-height: 1.7; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
ul, ol { color: var(--text-secondary) !important; }
li { color: var(--text-secondary) !important; }
strong, b { color: var(--text) !important; }

/* ===========================
   HEADER
   =========================== */
.main-header-bar {
  background: var(--header-bg) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: none !important;
  transition: background 0.3s;
}
.main-header-bar .ast-site-identity img,
.woocommerce .ast-site-identity img,
.ast-site-identity img,
.site-logo-img img,
.custom-logo-link img,
.custom-logo,
img.custom-logo,
body.woocommerce-page .custom-logo,
body.single-product .custom-logo,
body.archive .custom-logo {
  max-height: 43px !important;
  height: 43px !important;
  width: auto !important;
  max-width: none !important;
}
/* Consistent header alignment across all pages */
.main-header-bar .ast-container {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.ast-site-identity .site-title,
.ast-site-identity .site-description {
  display: none !important;
}
.main-header-menu a {
  color: var(--header-text) !important;
  font-weight: 500 !important;
  font-size: 0.88rem !important;
}
.main-header-menu a:hover,
.main-header-menu .current-menu-item > a {
  color: var(--accent) !important;
}

/* ===========================
   LAYOUT
   =========================== */
.section {
  padding: 72px 20px;
  background: var(--bg);
  transition: background 0.3s;
}
.section:nth-child(even) { background: var(--bg-alt); }
.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title p {
  max-width: 560px;
  margin: 8px auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.divider {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin: 10px auto;
}

/* ===========================
   CARDS
   =========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.card:hover {
  box-shadow: 0 4px 12px var(--shadow-hover);
  transform: translateY(-2px);
}
.card-icon { font-size: 1.6rem; margin-bottom: 10px; }
.card h3 { margin: 0 0 8px; }

/* ===========================
   HERO
   =========================== */
.hero-section {
  padding: 80px 20px 64px;
  background: var(--bg-alt);
}
.hero-content {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2rem !important; }
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-video { width: 100%; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius);
}
.hero-image-below {
  max-width: 1060px;
  margin: 32px auto 0;
  text-align: center;
}
.hero-image-below img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  opacity: 0.9;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-block;
  color: var(--text) !important;
  padding: 12px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  margin-left: 10px;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

/* ===========================
   8 BODY TYPES GRID
   =========================== */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .types-grid { grid-template-columns: repeat(2, 1fr); }
}
.type-card {
  display: block;
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}
.type-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.type-emoji { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.type-card h4 { color: var(--text); margin: 0 0 2px; font-size: 0.9rem; }
.type-korean { color: var(--text-muted); font-size: 0.75rem; }

/* ===========================
   CONSTITUTION INTRO CARDS (enhanced)
   =========================== */
.constitution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .constitution-grid { grid-template-columns: 1fr; }
}
.constitution-card {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.constitution-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--shadow-hover);
  transform: translateY(-2px);
}
.constitution-card .cc-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.constitution-card .cc-body { flex: 1; }
.constitution-card .cc-body h4 {
  color: var(--text);
  margin: 0 0 2px;
  font-size: 1rem;
}
.constitution-card .cc-body .cc-korean {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 6px;
}
.constitution-card .cc-body .cc-desc {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}
.constitution-card .cc-body .cc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cc-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
}
.cc-tag.good {
  background: rgba(22,163,74,0.1);
  color: var(--success);
  border: 1px solid rgba(22,163,74,0.2);
}
.cc-tag.bad {
  background: rgba(220,38,38,0.1);
  color: var(--danger);
  border: 1px solid rgba(220,38,38,0.2);
}
.cc-tag.trait {
  background: rgba(37,99,235,0.08);
  color: var(--accent);
  border: 1px solid rgba(37,99,235,0.15);
}
.cc-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===========================
   FOOD COMPARISON TABLE
   =========================== */
.food-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .food-compare { grid-template-columns: 1fr; }
}
.food-column {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.food-column-header {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.food-column-header.good-header {
  background: rgba(22,163,74,0.08);
  color: var(--success);
  border-bottom: 1px solid rgba(22,163,74,0.15);
}
.food-column-header.bad-header {
  background: rgba(220,38,38,0.08);
  color: var(--danger);
  border-bottom: 1px solid rgba(220,38,38,0.15);
}
.food-list {
  padding: 12px 16px;
  list-style: none;
  margin: 0;
}
.food-list li {
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.food-list li:last-child { border-bottom: none; }
.food-list li .food-icon { font-size: 1rem; }

/* ===========================
   SURPRISE FOOD SECTION
   =========================== */
.surprise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .surprise-grid { grid-template-columns: 1fr; }
}
.surprise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.surprise-card .surprise-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.surprise-card h4 {
  font-size: 0.95rem;
  margin: 0 0 8px;
}
.surprise-card .surprise-good,
.surprise-card .surprise-bad {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin: 2px;
}
.surprise-card .surprise-good {
  background: rgba(22,163,74,0.1);
  color: var(--success);
}
.surprise-card .surprise-bad {
  background: rgba(220,38,38,0.1);
  color: var(--danger);
}

/* ===========================
   CALLOUT BOX
   =========================== */
.callout {
  background: rgba(37,99,235,0.05);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.callout-icon { font-size: 1.4rem; flex-shrink: 0; }
.callout p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.callout strong { color: var(--text); }
[data-theme="dark"] .callout {
  background: rgba(96,165,250,0.06);
  border-color: rgba(96,165,250,0.15);
}

/* ===========================
   TESTIMONIALS SLIDER
   =========================== */
.slider-container {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 16px;
}
.slider-track .testimonial {
  flex: 0 0 calc(33.333% - 11px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .slider-track .testimonial { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 640px) {
  .slider-track .testimonial { flex: 0 0 100%; }
}
.slider-track .testimonial:hover {
  box-shadow: 0 4px 12px var(--shadow-hover);
}
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.slider-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.slider-dots {
  display: flex;
  gap: 6px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.testimonial-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.testimonials-more {
  text-align: center;
  margin-top: 20px;
}


/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  padding: 56px 20px;
  background: var(--accent);
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--accent) !important;
}
.cta-banner .btn-primary[style*="transparent"] {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.5) !important;
}

/* ===========================
   CLINIC CARDS
   =========================== */
.clinic-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.clinic-header {
  background: var(--accent);
  color: white;
  padding: 14px 20px;
}
.clinic-header h3 { color: white; margin: 0; font-size: 1rem; }
.clinic-body { padding: 20px; }
.clinic-body p { margin: 6px 0; font-size: 0.9rem; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-style: italic;
  color: var(--text-secondary);
}

/* ===========================
   CONTACT FORM 7
   =========================== */
.wpcf7 .form-row { margin-bottom: 14px; }
.wpcf7 .form-row label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 0.85rem;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100% !important;
  padding: 10px 14px !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  font-family: var(--font) !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  transition: border-color 0.2s !important;
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  border-color: var(--accent) !important;
  outline: none !important;
}
.wpcf7 textarea { min-height: 90px !important; }
.wpcf7 input[type="submit"] {
  background: var(--accent) !important;
  color: white !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  width: 100% !important;
}

/* ===========================
   WOOCOMMERCE SHOP PAGE
   =========================== */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}
@media (max-width: 768px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
.woocommerce ul.products li.product {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  overflow: hidden;
  transition: all 0.25s !important;
}
.woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 24px var(--shadow-hover) !important;
  transform: translateY(-4px);
}
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 200px !important;
  object-fit: contain !important;
  background: var(--bg-alt);
  border-radius: 0 !important;
  padding: 16px !important;
  transition: transform 0.3s;
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.03);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  padding: 12px 16px 4px !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product .price {
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 0 16px !important;
}
.woocommerce ul.products li.product .button {
  background: var(--accent) !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  margin: 8px 16px 16px !important;
  padding: 10px !important;
  text-align: center !important;
  display: block !important;
  transition: background 0.2s !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--accent-hover) !important;
}

/* ===========================
   HOMEPAGE PRODUCT SHOWCASE
   =========================== */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .product-showcase { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .product-showcase { grid-template-columns: repeat(2, 1fr); }
}
.showcase-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.25s;
  display: block;
}
.showcase-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--shadow-hover);
  transform: translateY(-4px);
}
.showcase-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: var(--bg-alt);
  padding: 12px;
  display: block;
}
.showcase-item:hover .showcase-img {
  transform: scale(1.03);
}
.showcase-body {
  padding: 12px 14px 16px;
}
.showcase-body h4 {
  font-size: 0.82rem;
  margin: 0 0 4px;
  color: var(--text) !important;
  line-height: 1.3;
}
.showcase-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.showcase-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(22,163,74,0.1);
  color: var(--success);
  margin-top: 4px;
}
.showcase-cta {
  text-align: center;
  margin-top: 20px;
}

/* ===========================
   PAGE LAYOUT
   =========================== */
.page-template-default .entry-content { max-width: none !important; }
.page-template-default .ast-container { max-width: none !important; padding: 0 !important; }
.page-template-default #primary { max-width: none !important; padding: 0 !important; margin: 0 !important; }
.page-template-default .ast-separate-container .ast-article-single { padding: 0 !important; max-width: none !important; }
.page-template-default .entry-header { display: none; }

/* ===========================
   FOOTER & BLOG
   =========================== */
.ast-footer-overlay, .site-footer {
  background: var(--bg-alt) !important;
  border-top: 1px solid var(--border);
  color: var(--text-muted) !important;
}
.ast-separate-container .ast-article-post {
  background: var(--bg-card) !important;
  border: 1px solid var(--border);
}
.entry-title a { color: var(--text) !important; }
.entry-title a:hover { color: var(--accent) !important; }

/* ===========================
   CUSTOM FOOTER
   =========================== */
.custom-footer {
  background: #1e293b !important;
  color: #94a3b8 !important;
}
.custom-footer h4 {
  color: #f1f5f9 !important;
}
.custom-footer p,
.custom-footer li {
  color: #94a3b8 !important;
}
.custom-footer a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.custom-footer a:hover {
  color: #60a5fa !important;
}
.custom-footer .footer-link-blue {
  color: #60a5fa !important;
}
.custom-footer .footer-disclaimer p {
  color: #b0bec5 !important;
  font-size: 0.78rem !important;
}
.custom-footer .footer-disclaimer strong {
  color: #e2e8f0 !important;
}
.custom-footer .footer-copyright {
  color: #94a3b8 !important;
}

/* ===========================
   DR. NA BIO SECTION (HOMEPAGE)
   =========================== */
.doctor-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1060px;
  margin: 48px auto 0;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
}
@media (max-width: 768px) {
  .doctor-intro {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .doctor-intro img {
    max-width: 200px;
    margin: 0 auto;
  }
  .doctor-stats {
    justify-content: center !important;
  }
}
.doctor-intro img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.doctor-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.doctor-stat {
  text-align: center;
}
.doctor-stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.doctor-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 2px 12px var(--shadow);
}
.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  text-align: left;
}
.faq-toggle {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   CTA BUTTONS (location split)
   =========================== */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 16px;
}
.cta-phone {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8) !important;
  margin-top: 10px;
}
.hero-phone {
  margin-top: 16px;
}
.call-btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent) !important;
  padding: 8px 0;
  transition: opacity 0.2s;
}
.call-btn:hover {
  opacity: 0.8;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===========================
   NAV BOOK APPOINTMENT HIGHLIGHT
   =========================== */
.main-header-menu a[href*="book-appointment"] {
  background: var(--accent) !important;
  color: white !important;
  padding: 6px 16px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  margin: auto 0 !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: background 0.2s;
}
.main-header-menu a[href*="book-appointment"]:hover {
  background: var(--accent-hover) !important;
}

/* ===========================
   AMELIA BOOKING FORM FIX
   =========================== */
/* Override Amelia CSS custom properties for sidebar */
:root,
.amelia-app-booking,
#amelia-app-booking-wrap,
[id*="amelia"] {
  --am-c-sb-bgr: #eef2f7 !important;
  --am-c-sb-text: #1e293b !important;
  --am-c-sb-text-op60: rgba(30,41,59,0.6) !important;
  --am-c-sb-text-op10: rgba(30,41,59,0.1) !important;
  --am-c-sb-text-op5: rgba(30,41,59,0.05) !important;
  --am-c-sb-checker-border: #3b82f6 !important;
  --am-c-sb-bgr-atc: #e2e8f0 !important;
}

/* ===========================
   MOBILE FIXED CTA BAR
   =========================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px var(--shadow);
  padding: 10px 16px;
}
.mobile-cta-bar .mobile-cta-inner {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}
.mobile-cta-bar .cta-call {
  background: #16a34a;
  color: white !important;
}
.mobile-cta-bar .cta-book {
  background: var(--accent);
  color: white !important;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

