/* ═══════════════════════════════════════════════════════
   GH Smart FAQ — Production CSS
   Brand: GangtokHolidays.com
   Colors: Deep Forest Green + Saffron Orange + Warm Cream
   ═══════════════════════════════════════════════════════ */

:root {
  --gh-green:       #1a4731;
  --gh-green-light: #256043;
  --gh-green-pale:  #e8f2ec;
  --gh-orange:      #e8630a;
  --gh-orange-light:#f97c2a;
  --gh-cream:       #fdf8f3;
  --gh-cream-dark:  #f5ede0;
  --gh-text:        #1c2b22;
  --gh-text-muted:  #5a6b62;
  --gh-border:      #d4e5da;
  --gh-shadow:      rgba(26, 71, 49, 0.10);
  --gh-shadow-lg:   rgba(26, 71, 49, 0.18);
  --gh-radius:      14px;
  --gh-radius-sm:   8px;
  --gh-transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Section wrapper ─────────────────────────────────── */
.gh-faq {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--gh-cream);
  padding: 60px 0 72px;
  position: relative;
  overflow: hidden;
}

.gh-faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gh-green) 0%, var(--gh-orange) 50%, var(--gh-green) 100%);
}

/* Mountain silhouette decorative bg */
.gh-faq::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath d='M0,80 L80,40 L160,70 L280,10 L400,55 L520,20 L640,60 L760,15 L880,50 L1000,25 L1120,55 L1240,30 L1360,60 L1440,40 L1440,120 L0,120 Z' fill='%231a4731' opacity='0.06'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  pointer-events: none;
}

.gh-faq__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ── Header ──────────────────────────────────────────── */
.gh-faq__header {
  text-align: center;
  margin-bottom: 44px;
}

.gh-faq__badge {
  display: inline-block;
  background: var(--gh-orange);
  color: #fff;
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.gh-faq__title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--gh-green);
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.gh-faq__subtitle {
  font-family: sans-serif;
  font-size: 15px;
  color: var(--gh-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── FAQ list ────────────────────────────────────────── */
.gh-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 44px;
}

/* ── Individual FAQ item ─────────────────────────────── */
.gh-faq__item {
  background: #fff;
  border: 1.5px solid var(--gh-border);
  border-radius: var(--gh-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px var(--gh-shadow);
  transition: box-shadow var(--gh-transition), border-color var(--gh-transition), transform var(--gh-transition);
}

.gh-faq__item:hover {
  box-shadow: 0 6px 20px var(--gh-shadow-lg);
  transform: translateY(-1px);
}

.gh-faq__item.is-open {
  border-color: var(--gh-green);
  box-shadow: 0 6px 24px var(--gh-shadow-lg);
}

/* ── Question button ─────────────────────────────────── */
.gh-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--gh-text);
  transition: background var(--gh-transition);
  font-family: inherit;
  font-size: 1rem;
}

.gh-faq__question:hover {
  background: var(--gh-green-pale);
}

.gh-faq__item.is-open .gh-faq__question {
  background: var(--gh-green-pale);
  border-bottom: 1px solid var(--gh-border);
}

.gh-faq__num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gh-cream-dark);
  color: var(--gh-green);
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--gh-transition), color var(--gh-transition);
}

.gh-faq__item.is-open .gh-faq__num {
  background: var(--gh-green);
  color: #fff;
}

.gh-faq__q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gh-text);
}

/* ── Animated chevron icon ───────────────────────────── */
.gh-faq__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gh-green-pale);
  position: relative;
  transition: background var(--gh-transition), transform var(--gh-transition);
}

.gh-faq__icon::before,
.gh-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  background: var(--gh-green);
  border-radius: 2px;
  transition: transform var(--gh-transition), background var(--gh-transition);
}

.gh-faq__icon::before { left: 50%; transform: translate(-100%, -50%) rotate(-40deg); }
.gh-faq__icon::after  { left: 50%; transform: translate(0%, -50%) rotate(40deg); }

.gh-faq__item.is-open .gh-faq__icon {
  background: var(--gh-green);
  transform: rotate(180deg);
}

.gh-faq__item.is-open .gh-faq__icon::before,
.gh-faq__item.is-open .gh-faq__icon::after {
  background: #fff;
}

/* ── Answer panel ────────────────────────────────────── */
.gh-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-faq__answer:not([hidden]) {
  grid-template-rows: 1fr;
}

/* Override browser [hidden] so we can animate */
.gh-faq__answer[hidden] {
  display: grid !important;
  grid-template-rows: 0fr;
}

.gh-faq__answer-inner {
  overflow: hidden;
  padding: 0 22px 0 66px;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gh-text-muted);
  transition: padding var(--gh-transition);
}

.gh-faq__answer:not([hidden]) .gh-faq__answer-inner {
  padding-top: 16px;
  padding-bottom: 22px;
}

.gh-faq__answer-inner p { margin: 0 0 10px; }
.gh-faq__answer-inner p:last-child { margin-bottom: 0; }
.gh-faq__answer-inner strong { color: var(--gh-green); }
.gh-faq__answer-inner a { color: var(--gh-orange); text-decoration: underline; }

/* ── CTA strip ───────────────────────────────────────── */
.gh-faq__cta {
  background: linear-gradient(135deg, var(--gh-green) 0%, var(--gh-green-light) 100%);
  border-radius: var(--gh-radius);
  padding: 30px 32px;
  text-align: center;
  box-shadow: 0 8px 28px var(--gh-shadow-lg);
  position: relative;
  overflow: hidden;
}

.gh-faq__cta::before {
  content: '🏔';
  position: absolute;
  font-size: 90px;
  right: -10px;
  top: -10px;
  opacity: 0.08;
  line-height: 1;
}

.gh-faq__cta-text {
  font-family: sans-serif;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  margin: 0 0 20px;
  line-height: 1.5;
}

.gh-faq__cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.gh-faq__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.gh-faq__btn--call {
  background: #fff;
  color: var(--gh-green);
}

.gh-faq__btn--call:hover {
  background: var(--gh-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.gh-faq__btn--book {
  background: var(--gh-orange);
  color: #fff;
}

.gh-faq__btn--book:hover {
  background: var(--gh-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232,99,10,0.4);
}

/* ── Entrance animation ──────────────────────────────── */
@keyframes gh-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gh-faq__item {
  animation: gh-fade-up 0.45s ease both;
}

.gh-faq__item:nth-child(1)  { animation-delay: 0.05s; }
.gh-faq__item:nth-child(2)  { animation-delay: 0.10s; }
.gh-faq__item:nth-child(3)  { animation-delay: 0.15s; }
.gh-faq__item:nth-child(4)  { animation-delay: 0.20s; }
.gh-faq__item:nth-child(5)  { animation-delay: 0.25s; }
.gh-faq__item:nth-child(6)  { animation-delay: 0.30s; }
.gh-faq__item:nth-child(7)  { animation-delay: 0.35s; }
.gh-faq__item:nth-child(8)  { animation-delay: 0.40s; }
.gh-faq__item:nth-child(9)  { animation-delay: 0.45s; }
.gh-faq__item:nth-child(10) { animation-delay: 0.50s; }

/* Pause animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gh-faq__item { animation: none; }
  .gh-faq__answer, .gh-faq__icon { transition: none; }
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .gh-faq { padding: 44px 0 56px; }

  .gh-faq__question { padding: 16px 16px; gap: 10px; }

  .gh-faq__q-text { font-size: 14.5px; }

  .gh-faq__answer-inner {
    padding-left: 56px;
    font-size: 14px;
  }

  .gh-faq__cta { padding: 24px 20px; }

  .gh-faq__cta-btns { flex-direction: column; align-items: center; }

  .gh-faq__btn { width: 100%; justify-content: center; }
}
