/* =========================================================
   SN PREMIUM GOOGLE STYLE FAQ
   ========================================================= */

.sn-faqSec{
  background: linear-gradient(180deg, rgba(11,58,164,.04), rgba(255,255,255,0));
}

.sn-faqWrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:start;
}

/* Left Intro */
.sn-faqTrust{
  margin-top:16px;
  display:grid;
  gap:8px;
  font-weight:800;
  font-size:13px;
  color:rgba(12,16,23,.75);
}
.sn-faqTrust i{
  color:var(--sn-green);
  margin-right:8px;
}

/* FAQ List */
.sn-faqList{
  display:grid;
  gap:12px;
}

.sn-faqItem{
  border:1px solid var(--sn-border);
  border-radius: var(--sn-r20);
  background:#fff;
  box-shadow: 0 10px 24px rgba(12,16,23,.06);
  overflow:hidden;
  transition:.3s ease;
}

.sn-faqQ{
  width:100%;
  background:none;
  border:none;
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  color:var(--sn-ink);
}

.sn-faqQ i{
  transition:.3s ease;
}

.sn-faqA{
  max-height:0;
  overflow:hidden;
  padding:0 16px;
  font-size:13.5px;
  line-height:1.6;
  color:rgba(12,16,23,.75);
  transition:max-height .4s ease, padding .3s ease;
}

/* Active */
.sn-faqItem.active{
  border-color: rgba(11,58,164,.30);
  box-shadow: 0 14px 30px rgba(11,58,164,.10);
}
.sn-faqItem.active .sn-faqA{
  max-height:200px;
  padding:0 16px 16px;
}
.sn-faqItem.active .sn-faqQ i{
  transform: rotate(180deg);
}

/* Responsive */
@media(max-width:992px){
  .sn-faqWrap{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   SANNIDHI – FAQ SECTION (RESPONSIVE)
   Section: #faq.sn-faqSec
   Paste AFTER your existing sn-* CSS so it overrides.
   ========================================================= */

.sn-faqSec{
  padding: clamp(26px, 4vw, 58px) 0;
}

.sn-faqSec .container{
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.sn-faqWrap{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(14px, 2.2vw, 22px);
  align-items: start;
}

/* Left intro */
.sn-faqIntro{ min-width: 0; }

.sn-faqSec .sn-h2{
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  margin: 10px 0 10px;
}

.sn-faqSec .sn-lead{
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.65;
  margin: 0;
}

/* Trust bullets */
.sn-faqTrust{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.sn-faqTrust > div{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(60,64,67,.14);
  background: rgba(255,255,255,.86);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(12,16,23,.06);
  line-height: 1.35;
}

/* Right list */
.sn-faqList{ min-width: 0; }

.sn-faqItem{
  border: 1px solid rgba(60,64,67,.14);
  background: rgba(255,255,255,.90);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(12,16,23,.06);
  overflow: hidden;
}
.sn-faqItem + .sn-faqItem{ margin-top: 12px; }

.sn-faqQ{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.sn-faqQ span{
  font-weight: 950;
  line-height: 1.35;
}
.sn-faqQ i{
  flex: 0 0 auto;
  transition: transform .18s ease;
}

/* Answer */
.sn-faqA{
  padding: 0 14px 14px;
  line-height: 1.6;
  color: rgba(12,16,23,.74);
  font-weight: 700;
  word-break: break-word;
}

/* If you toggle .is-open with JS, this makes arrow rotate */
.sn-faqItem.is-open .sn-faqQ i{
  transform: rotate(180deg);
}

/* ---------- <= 1024px (stack columns) ---------- */
@media (max-width: 1024px){
  .sn-faqWrap{
    grid-template-columns: 1fr;
  }
}

/* ---------- <= 576px (mobile tuning) ---------- */
@media (max-width: 576px){
  .sn-faqSec .container{
    width: min(1180px, calc(100% - 22px));
  }

  .sn-eyebrow{
    font-size: 12px;
    line-height: 1.35;
  }

  .sn-faqQ{
    padding: 13px 12px;
  }

  .sn-faqA{
    padding: 0 12px 12px;
  }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce){
  .sn-faqSec *{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}