/* ============================================================
 * SettleHQ FAQ Page Styles
 * Scoped under .shq-faq-page to prevent theme collisions
 * ============================================================ */

.shq-faq-page{
  --shq-navy:#09123d;
  --shq-navy-2:#243B5E;
  --shq-teal:#59c0ab;
  --shq-teal-dark:#00695C;
  --shq-gold:#C8922A;
  --shq-off-white:#F8F9FA;
  --shq-cream:#FAF7F1;
  --shq-slate:#444444;
  --shq-slate-2:#6B6B6B;
  --shq-line:#E5E1D8;
  --shq-white:#ffffff;

  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--shq-slate);
  background:var(--shq-off-white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
.shq-faq-page *{box-sizing:border-box;}

.shq-container{max-width:1240px;margin:0 auto;padding:0 32px;}
.shq-container-narrow{max-width:1080px;margin:0 auto;padding:0 32px;}

/* ───────── HERO ───────── */
.shq-hero{
  background:var(--shq-navy);
  color:var(--shq-white);
 
  position:relative;
  overflow:hidden;
}
.shq-hero::before{
  content:"";position:absolute;
  top:-120px;right:-120px;
  width:500px;height:500px;
  background:radial-gradient(circle, rgba(200,146,42,.14) 0%, transparent 60%);
  pointer-events:none;
}
.shq-hero::after{
  content:"";position:absolute;
  bottom:-180px;left:-120px;
  width:480px;height:480px;
  background:radial-gradient(circle, rgba(0,137,123,.16) 0%, transparent 60%);
  pointer-events:none;
}
.shq-hero-inner{position:relative;z-index:2;text-align:center;max-width:820px;margin:0 auto;}
.shq-eyebrow{
  display:inline-block;
  font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--shq-teal);font-weight:600;
  padding-bottom:14px;
  border-bottom:1px solid rgba(89, 192, 171, .4);
  margin-bottom:28px;
}
.shq-hero h1{
 
  font-weight:700;
      font-size: clamp(44px, 5.4vw, 72px);
  line-height:1.04;
  letter-spacing:-0.025em;
  margin:0 0 24px;
  color:var(--shq-white);
}
.shq-hero h1 em{
  font-family:'Playfair Display', serif;
  font-style:italic;font-weight:500;color:var(--shq-teal);
}
.shq-hero-lede{
  font-size:19px;line-height:1.6;
  color:rgba(255,255,255,.78);
  max-width:640px;
  margin:0 auto 44px;
}

/* Search bar */
.shq-faq-search{position:relative;max-width:580px;margin:0 auto;}
.shq-faq-search input{
  width:100%;
  padding:18px 56px 18px 24px;
  border:none;border-radius:12px;
  background:var(--shq-white);
  font-family:inherit;font-size:16px;
  color:var(--shq-navy);
  box-shadow:0 24px 60px -16px rgba(0,0,0,.35);
  transition:box-shadow .2s, transform .2s;
}
.shq-faq-search input:focus{
  outline:none;
  box-shadow:0 28px 68px -16px rgba(0,0,0,.45), 0 0 0 3px rgba(0,137,123,.4);
}
.shq-faq-search input::placeholder{color:var(--shq-slate-2);}
.shq-faq-search svg{
  position:absolute;
  right:20px;top:50%;transform:translateY(-50%);
  width:22px;height:22px;
  stroke:var(--shq-teal);stroke-width:2;fill:none;
  pointer-events:none;
}
.shq-search-hint{margin-top:14px;font-size:13px;color:rgba(255,255,255,.55);}

/* ───────── STICKY CATEGORY NAV ───────── */
.shq-cat-nav{
  position:sticky;top:80px;z-index:90;
  background:var(--shq-white);
  border-bottom:1px solid var(--shq-line);
  padding:25px 0;
  overflow-x:auto;
  scrollbar-width:none;
}
.shq-cat-nav::-webkit-scrollbar{display:none;}
.shq-cat-nav-inner{
  display:flex;gap:8px;justify-content:center;
  min-width:max-content;padding:0 32px;
}
.shq-cat-pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 18px;border-radius:100px;
  background:var(--shq-white);
  border:1.5px solid var(--shq-line);
  color:var(--shq-navy);
  text-decoration:none;
  font-size:16px;
  white-space:nowrap;cursor:pointer;
  transition:all .2s;
}
.shq-cat-pill:hover{border-color:var(--shq-teal);color:var(--shq-teal);}
.shq-cat-pill.active{background:var(--shq-navy);color:var(--shq-white);border-color:var(--shq-navy);}
.shq-count{
  background:rgba(0,137,123,.12);
  color:var(--shq-teal);
  font-size:11px;font-weight:700;
  padding:2px 8px;border-radius:100px;line-height:1.4;
}
.shq-cat-pill.active .shq-count{background:rgba(255,255,255,.18);color:var(--shq-white);}

/* ───────── FAQ SECTIONS ───────── */
/*.shq-faqs{padding:80px 0 120px;}*/
.shq-faq-category{margin-bottom:64px;scroll-margin-top:160px;}
.shq-faq-category:last-child{margin-bottom:0;}
.shq-faq-cat-head{
  display:flex;align-items:baseline;gap:18px;
  padding-bottom:20px;margin-bottom:28px;
  border-bottom:1px solid var(--shq-line);
}
.shq-faq-cat-num{
  font-family:'Playfair Display', serif;
  font-style:italic;font-weight:500;
  font-size:48px;line-height:1;
  color:var(--shq-teal);flex-shrink:0;
}
.shq-faq-cat-title{
 
  font-weight:700;font-size:32px;
  color:var(--shq-navy);
  letter-spacing:-0.02em;line-height:1.1;
  margin:0;
}
.shq-faq-cat-meta{
  margin-left:auto;
  font-size:13px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--shq-slate-2);font-weight:600;
  padding-bottom:8px;flex-shrink:0;
}

/* FAQ items */
.shq-faq-list{display:flex;flex-direction:column;gap:0;}
.shq-faq-item{
  background:var(--shq-white);
  border:1px solid var(--shq-line);
  border-radius:12px;
  margin-bottom:10px;
  transition:border-color .2s, box-shadow .2s;
}
.shq-faq-item:hover{border-color:rgba(0,137,123,.3);}
.shq-faq-item.open{
  border-color:var(--shq-teal);
  box-shadow:0 12px 36px -16px rgba(27,46,75,.15);
}
.shq-faq-q{
  width:100%;
  padding:22px 28px;
  background:none;border:none;
  font-family:inherit;text-align:left;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;
  color:var(--shq-navy);
  font-size:20px;font-weight:bold;
	    font-family: 'Spartan';
  letter-spacing:-0.005em;line-height:1.35;
  transition:color .2s;
}
.shq-faq-q:hover{color:var(--shq-teal);}
.shq-faq-toggle{
  flex-shrink:0;
  width:32px;height:32px;border-radius:50%;
  background:rgba(0,137,123,.08);
  color:var(--shq-teal);
  display:flex;align-items:center;justify-content:center;
  transition:transform .3s, background .2s;
}
.shq-faq-toggle svg{
  width:14px;height:14px;
  stroke:currentColor;stroke-width:2.5;
  fill:none;stroke-linecap:round;
}
.shq-faq-item.open .shq-faq-toggle{
  transform:rotate(180deg);
  background:var(--shq-teal);color:var(--shq-white);
}
.shq-faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .35s ease, padding .25s ease;
}
.shq-faq-item.open .shq-faq-a{
  max-height:1200px;
  padding:0 28px 24px;
}
.shq-faq-a p{
  font-size:16px;
	line-height:1.7;
	color:var(--shq-navy);
/*  max-width:780px;*/
}
/*
.shq-faqs .container:last-child .shq-faq-category{
	margin-bottom: 0;
}
*/
.shq-faq-a p + p{margin-top:14px;}
.shq-faq-a a{
  color:var(--shq-teal);
  text-decoration:underline;
  text-decoration-thickness:1.5px;
  text-underline-offset:2px;
}
.shq-faq-a a:hover{color:var(--shq-teal-dark);}

/* No results */
.shq-no-results{text-align:center;padding:60px 32px;color:var(--shq-slate-2);display:none;}
.shq-no-results.show{display:block;}
.shq-no-results h3{
  font-size:22px;color:var(--shq-navy);font-weight:700;
  margin-bottom:8px;letter-spacing:-0.01em;
}

/* Hidden state (filter / search) */
.shq-faq-category.hidden,
.shq-faq-item.hidden{display:none;}

/* ───────── CONTACT CTA ───────── */
.shq-contact-cta{background:#eef1f5;}
.shq-contact-cta-inner{
  display:grid;grid-template-columns:1.2fr 1fr;
  gap:64px;align-items:center;
  background:var(--shq-white);
  border:1px solid var(--shq-line);
  border-radius:18px;
  padding:64px 56px;
  position:relative;overflow:hidden;
}
.shq-contact-cta-inner::before{
  content:"";position:absolute;
  top:-100px;right:-80px;
  width:280px;height:280px;
  background:radial-gradient(circle, rgba(0,137,123,.08) 0%, transparent 70%);
  pointer-events:none;
}
.shq-contact-cta-content{position:relative;z-index:2;}
.shq-contact-cta-eyebrow{
  font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--shq-teal);font-weight:600;
  margin-bottom:16px;
}
.shq-contact-cta h2{
  
  font-weight:700;
  font-size:clamp(32px, 3.6vw, 42px);
  line-height:1.1;letter-spacing:-0.02em;
  color:var(--shq-navy);
  margin:0 0 18px;
}
.shq-contact-cta h2 em{
  font-family:'Playfair Display', serif;
  font-style:italic;font-weight:500;color:var(--shq-teal);
}
.shq-contact-cta p{
  font-size:17px;
	color:var(--shq-navy);
	line-height:1.6;
  max-width:520px;margin:0;
}
.shq-contact-cta-actions{
  position:relative;z-index:2;
  display:flex;flex-direction:column;gap:14px;
}
.shq-contact-method{
  display:flex;align-items:center;gap:16px;
  padding:18px 22px;
  background:var(--shq-off-white);
  border:1px solid var(--shq-line);
  border-radius:12px;
  text-decoration:none;
  transition:all .2s;
}
.shq-contact-method:hover{
  background:var(--shq-white);
  border-color:var(--shq-teal);
  transform:translateY(-2px);
  box-shadow:0 12px 28px -12px rgba(27,46,75,.12);
}
.shq-contact-method-icon{
  width:44px;height:44px;border-radius:10px;
  background:rgba(0,137,123,.1);
  color:var(--shq-teal);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.shq-contact-method-icon svg{
  width:20px;height:20px;
  stroke:currentColor;stroke-width:1.8;
  fill:none;stroke-linecap:round;stroke-linejoin:round;
}
.shq-contact-method-text{flex:1;}
.shq-contact-method-label{
  font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--shq-slate-2);font-weight:600;
  margin-bottom:2px;
}
.shq-contact-method-value{
  font-size:18px;font-weight:600;color:var(--shq-navy);
  letter-spacing:-0.005em;
}
.shq-contact-method-arrow{color:var(--shq-slate-2);transition:transform .2s, color .2s;}
.shq-contact-method:hover .shq-contact-method-arrow{
  color:var(--shq-teal);transform:translateX(3px);
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 980px){
  .shq-cat-nav-inner{justify-content:flex-start;}
  .shq-contact-cta-inner{grid-template-columns:1fr;gap:40px;padding:40px 20px;}
}
@media (max-width: 640px){
 
  .shq-faq-cat-head{flex-wrap:wrap;gap:12px;padding-bottom:16px;margin-bottom:20px;}
  .shq-faq-cat-num{font-size:36px;}
  .shq-faq-cat-title{font-size:24px;}
  .shq-faq-cat-meta{margin-left:0;width:100%;order:3;}
  .shq-faq-q{padding:18px 20px;font-size:16px;gap:16px;}
  .shq-faq-item.open .shq-faq-a{padding:0 20px 20px;}
  .shq-contact-cta{padding:60px 0;}
}
