/* ============================================================
   BHUTAN TOUR FROM AUSTRALIA — FOUND BHUTAN
   Accent: #c2622a burnt-ochre — nods to the Australian outback
   ============================================================ */
:root {
  --navy:         #0e2d45;
  --navy-deep:    #07192a;
  --navy-mid:     #122638;
  --gold:         #ffc21a;
  --gold-light:   #ffd24d;
  --accent:       #1d6fa4;
  --accent-light: #4a9fd4;
  --accent-dim:   rgba(29,111,164,0.12);
  --cream:        #f5f0e8;
  --white:        #ffffff;
  --text-body:    #3d4a58;
  --text-muted:   #6b7a8d;
  --border:       rgba(14,45,69,0.09);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Roboto', sans-serif;
  --radius:       8px;
  --shadow-sm:    0 2px 12px rgba(14,45,69,0.07);
  --shadow-md:    0 8px 32px rgba(14,45,69,0.12);
  --shadow-lg:    0 20px 60px rgba(14,45,69,0.18);
  --ease:         cubic-bezier(0.4,0,0.2,1);
}
.fsg-page * { box-sizing: border-box; }
.fsg-page { font-family: var(--font-body); color: var(--text-body); }

/* Hero */
.fsg-hero { position: relative; height: 95svh; min-height: 580px; overflow: hidden; display: flex; align-items: flex-end; background: var(--navy-deep); }
.fsg-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.50) saturate(1.10); transform: scale(1.06); animation: fsg-kb 18s ease-out forwards; will-change: transform; }
@keyframes fsg-kb { from { transform: scale(1.08); } to { transform: scale(1.00); } }
.fsg-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,25,42,0.95) 0%, rgba(7,25,42,0.48) 45%, rgba(7,25,42,0.12) 100%), linear-gradient(to right, rgba(7,25,42,0.35) 0%, transparent 60%); pointer-events: none; z-index: 1; }
.fsg-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 95%, rgba(194,98,42,0.14) 0%, transparent 50%); pointer-events: none; z-index: 1; }
.fsg-hero__content { position: relative; z-index: 2; width: 90%; max-width: 1200px; margin: 0 auto; padding-bottom: 80px; animation: fsg-rise 1s ease both 0.15s; }
@keyframes fsg-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fsg-hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.fsg-hero__eyebrow-line { width: 36px; height: 1.5px; background: var(--accent-light); flex-shrink: 0; }
.fsg-hero__eyebrow span { font-family: var(--font-body); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent-light); }
.fsg-hero__title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 700; color: var(--white); line-height: 1.0; margin: 0 0 12px; letter-spacing: -0.01em; }
.fsg-hero__title em { font-style: italic; color: var(--gold); }
.fsg-hero__subtitle { font-family: var(--font-display); font-size: clamp(1rem, 2.2vw, 1.5rem); font-style: italic; color: rgba(255,255,255,0.55); margin: 0 0 38px; font-weight: 400; }
.fsg-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.fsg-hero__pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 40px; padding: 7px 18px; font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.80); letter-spacing: 0.05em; backdrop-filter: blur(8px); }
.fsg-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.fsg-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 34px; background: var(--gold); color: var(--navy) !important; text-decoration: none !important; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; border-radius: var(--radius); transition: background 0.25s var(--ease), transform 0.2s var(--ease); }
.fsg-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy) !important; }
.fsg-btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: transparent; color: rgba(255,255,255,0.80) !important; border: 1.5px solid rgba(255,255,255,0.28); text-decoration: none !important; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; border-radius: var(--radius); transition: border-color 0.25s, color 0.25s, background 0.25s; }
.fsg-btn-ghost:hover { border-color: var(--accent-light); color: var(--accent-light) !important; background: rgba(194,98,42,0.08); }
.fsg-hero__scroll { position: absolute; bottom: 30px; right: 5%; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.45; animation: fsg-rise 1s ease both 1.2s; }
.fsg-hero__scroll span { font-size: 0.57rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); writing-mode: vertical-rl; }
.fsg-hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--accent-light), transparent); animation: fsg-scroll 2.2s ease infinite; }
@keyframes fsg-scroll { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }

/* Layout */
.fsg-layout { display: grid; grid-template-columns: 260px 1fr; max-width: 1280px; margin: 0 auto; padding: 0 20px 80px; align-items: start; }
.fsg-sidebar { position: sticky; top: 90px; padding-right: 32px; }
.fsg-toc { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.fsg-toc__header { background: var(--navy-deep); padding: 20px 22px; display: flex; align-items: center; gap: 10px; }
.fsg-toc__header h2 { font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); margin: 0; }
.fsg-toc__list { list-style: none; padding: 10px 0; margin: 0; }
.fsg-toc__list a { display: flex; align-items: center; gap: 10px; padding: 10px 22px; font-size: 0.78rem; font-weight: 500; color: var(--text-body); text-decoration: none; border-left: 2px solid transparent; transition: color 0.22s, background 0.22s, border-color 0.22s; line-height: 1.4; }
.fsg-toc__list a::before { content: '›'; font-size: 0.9rem; color: var(--accent); opacity: 0.40; flex-shrink: 0; transition: opacity 0.22s; }
.fsg-toc__list a:hover, .fsg-toc__list a.fsg-toc-active { color: var(--navy); background: var(--accent-dim); border-left-color: var(--accent); }
.fsg-toc__list a:hover::before, .fsg-toc__list a.fsg-toc-active::before { opacity: 1; }
.fsg-book-card { margin-top: 18px; background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%); border-radius: 10px; padding: 28px 22px; text-align: center; box-shadow: var(--shadow-md); border: 1px solid rgba(194,98,42,0.15); position: relative; overflow: hidden; }
.fsg-book-card::before { content: '✈'; position: absolute; right: -8px; bottom: -18px; font-size: 6rem; color: rgba(194,98,42,0.06); line-height: 1; pointer-events: none; }
.fsg-book-card__label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.40); margin-bottom: 4px; }
.fsg-book-card__price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; font-style: italic; }
.fsg-book-card__note { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-bottom: 22px; line-height: 1.5; }
.fsg-book-card__btn { display: block; width: 100%; padding: 13px; background: var(--gold); color: var(--navy) !important; text-decoration: none !important; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--radius); transition: background 0.22s; margin-bottom: 10px; }
.fsg-book-card__btn:hover { background: var(--gold-light); color: var(--navy) !important; }
.fsg-book-card__btn-ghost { display: block; width: 100%; padding: 12px; background: transparent; color: rgba(255,255,255,0.60) !important; text-decoration: none !important; border: 1px solid rgba(255,255,255,0.15); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; border-radius: var(--radius); transition: border-color 0.22s, color 0.22s; }
.fsg-book-card__btn-ghost:hover { border-color: var(--accent-light); color: var(--accent-light) !important; }

/* Main */
.fsg-main { min-width: 0; padding-top: 60px; }
.fsg-section { margin-bottom: 72px; scroll-margin-top: 100px; }
.fsg-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.fsg-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); flex-shrink: 0; }
.fsg-eyebrow span { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
.fsg-section-heading { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.1; margin: 0 0 28px; letter-spacing: -0.02em; }
.fsg-section-heading em { font-style: italic; color: var(--accent); }
.fsg-body { font-size: 0.96rem; color: var(--text-body); line-height: 1.85; margin: 0 0 18px; }

/* Overview */
.fsg-overview-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 36px; box-shadow: var(--shadow-sm); }
.fsg-overview-item { background: var(--white); padding: 20px 16px; display: flex; align-items: center; gap: 12px; }
.fsg-overview-icon { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.fsg-overview-label { font-size: 0.60rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.fsg-overview-value { font-size: 0.84rem; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* SDF banner */
.fsg-sdf-banner { background: linear-gradient(135deg, var(--navy-deep) 0%, #1a3d58 100%); border-radius: 12px; padding: 28px 32px; display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; box-shadow: var(--shadow-md); border: 1px solid rgba(194,98,42,0.20); position: relative; overflow: hidden; }
.fsg-sdf-banner::after { content: '🇦🇺'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 5rem; opacity: 0.06; pointer-events: none; }
.fsg-sdf-banner__icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.fsg-sdf-banner__label { font-size: 0.60rem; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 6px; }
.fsg-sdf-banner__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); line-height: 1.2; margin: 0 0 8px; }
.fsg-sdf-banner__text { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin: 0; max-width: 560px; }

/* Why grid */
.fsg-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fsg-why-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px 20px; display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s, box-shadow 0.25s; }
.fsg-why-card.fsg-visible { opacity: 1; transform: translateY(0); }
.fsg-why-card:hover { border-color: rgba(194,98,42,0.38); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.fsg-why-card__icon { width: 42px; height: 42px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.fsg-why-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 0 0 6px; line-height: 1.3; }
.fsg-why-card__desc { font-size: 0.83rem; color: var(--text-body); line-height: 1.70; margin: 0; }

/* Flights */
.fsg-flights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.fsg-flight-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 22px 18px; box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, box-shadow 0.25s; }
.fsg-flight-card.fsg-visible { opacity: 1; transform: translateY(0); }
.fsg-flight-card:hover { border-color: rgba(194,98,42,0.38); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fsg-flight-card__route { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.fsg-flight-card__city { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.fsg-flight-card__arrow { font-size: 0.9rem; color: var(--accent); flex-shrink: 0; }
.fsg-flight-card__airline { font-size: 0.72rem; font-weight: 600; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.fsg-flight-card__detail { font-size: 0.80rem; color: var(--text-muted); line-height: 1.55; }
.fsg-connection-note { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; }
.fsg-connection-note__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.fsg-connection-note__title { font-family: var(--font-display); font-size: 1.0rem; font-weight: 700; color: var(--navy); margin: 0 0 5px; }
.fsg-connection-note__text { font-size: 0.83rem; color: var(--text-body); line-height: 1.65; margin: 0; }

/* Highlights */
.fsg-highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
.fsg-highlight-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 20px 18px; display: flex; align-items: flex-start; gap: 12px; box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, box-shadow 0.25s; }
.fsg-highlight-card.fsg-visible { opacity: 1; transform: translateY(0); }
.fsg-highlight-card:hover { border-color: rgba(194,98,42,0.38); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fsg-highlight-card__icon { font-size: 1.1rem; flex-shrink: 0; width: 36px; height: 36px; background: var(--accent-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.fsg-highlight-card__text { font-size: 0.83rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin: 0; }
.fsg-best-time { background: linear-gradient(135deg, var(--navy) 0%, #143d59 100%); border-radius: 10px; padding: 22px 28px; display: flex; align-items: center; gap: 18px; box-shadow: var(--shadow-md); }
.fsg-best-time__icon { font-size: 1.8rem; flex-shrink: 0; }
.fsg-best-time__label { font-size: 0.60rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 4px; }
.fsg-best-time__text { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.55; margin: 0; }

/* Packages */
.fsg-packages { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%); border-radius: 14px; padding: 44px 40px; margin-bottom: 72px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.fsg-packages::before { content: '✈'; position: absolute; right: -10px; bottom: -40px; font-size: 14rem; color: rgba(194,98,42,0.05); line-height: 1; pointer-events: none; }
.fsg-packages__heading { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.1; margin: 0 0 32px; letter-spacing: -0.02em; }
.fsg-packages__heading em { font-style: italic; color: var(--accent-light); }
.fsg-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fsg-pkg-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 24px 20px; opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, background 0.25s; }
.fsg-pkg-card.fsg-visible { opacity: 1; transform: translateY(0); }
.fsg-pkg-card:hover { border-color: rgba(194,98,42,0.35); background: rgba(255,255,255,0.08); }
.fsg-pkg-card__icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.fsg-pkg-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 0 0 8px; line-height: 1.3; }
.fsg-pkg-card__desc { font-size: 0.80rem; color: rgba(255,255,255,0.52); line-height: 1.65; margin: 0 0 16px; }
.fsg-pkg-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.70rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold) !important; text-decoration: none !important; transition: gap 0.2s; }
.fsg-pkg-card__link:hover { gap: 10px; }

/* Timeline */
.fsg-timeline { position: relative; }
.fsg-timeline::before { content: ''; position: absolute; left: 20px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(to bottom, var(--accent) 0%, rgba(194,98,42,0.06) 100%); border-radius: 2px; }
.fsg-day { position: relative; padding-left: 56px; margin-bottom: 8px; }
.fsg-day__num { position: absolute; left: 0; top: 14px; width: 42px; height: 42px; background: var(--white); border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.60rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.04em; transition: border-color 0.25s, background 0.25s, color 0.25s; z-index: 1; line-height: 1; text-align: center; }
.fsg-day.fsg-day-open .fsg-day__num { background: var(--accent); border-color: var(--accent); color: var(--white); }
.fsg-day__btn { width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 18px 22px; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--font-body); box-shadow: var(--shadow-sm); transition: border-color 0.25s, box-shadow 0.25s; }
.fsg-day__btn:hover, .fsg-day-open .fsg-day__btn { border-color: rgba(194,98,42,0.42); box-shadow: 0 4px 18px rgba(14,45,69,0.10); }
.fsg-day__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.fsg-day__tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted); display: block; margin-top: 3px; }
.fsg-day__chevron { flex-shrink: 0; width: 28px; height: 28px; background: rgba(14,45,69,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.25s, transform 0.30s; }
.fsg-day-open .fsg-day__chevron { background: var(--accent); transform: rotate(180deg); }
.fsg-day__chevron svg { width: 14px; height: 14px; }
.fsg-day-open .fsg-day__chevron svg { color: var(--white); }
.fsg-day__body { overflow: hidden; max-height: 0; transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1); }
.fsg-day-open .fsg-day__body { max-height: 700px; }
.fsg-day__body-inner { padding: 22px 24px; border: 1px solid rgba(194,98,42,0.16); border-top: none; border-radius: 0 0 8px 8px; background: rgba(194,98,42,0.025); }
.fsg-activity-list { list-style: none; padding: 0; margin: 0; }
.fsg-activity-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; line-height: 1.65; color: var(--text-body); }
.fsg-activity-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fsg-activity-list li::before { content: '›'; color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 1px; line-height: 1.65; font-weight: 700; }
.fsg-activity-list strong { color: var(--navy); font-weight: 600; }
.fsg-notice { background: var(--cream); border-left: 3px solid var(--accent); border-radius: 0 6px 6px 0; padding: 16px 20px; margin-bottom: 28px; font-size: 0.84rem; color: var(--text-body); line-height: 1.65; font-style: italic; }

/* Inclusions */
.fsg-inex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fsg-inex-card { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.fsg-inex-card__header { padding: 18px 24px; display: flex; align-items: center; gap: 10px; }
.fsg-inex-card--include .fsg-inex-card__header { background: var(--navy-deep); }
.fsg-inex-card--exclude .fsg-inex-card__header { background: #e8f0f7; }
.fsg-inex-card__header h3 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin: 0; }
.fsg-inex-card--include .fsg-inex-card__header h3 { color: var(--gold); }
.fsg-inex-card--exclude .fsg-inex-card__header h3 { color: var(--text-body); }
.fsg-inex-card__body { background: var(--white); border: 1px solid var(--border); border-top: none; border-radius: 0 0 10px 10px; padding: 20px 24px; }
.fsg-inex-list { list-style: none; padding: 0; margin: 0; }
.fsg-inex-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; color: var(--text-body); line-height: 1.5; }
.fsg-inex-list li:last-child { border-bottom: none; }
.fsg-check { flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; font-size: 0.63rem; font-weight: 700; }
.fsg-inex-card--include .fsg-check { background: rgba(34,197,94,0.15); color: #16a34a; }

/* Cost */
.fsg-cost-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); font-size: 0.88rem; }
.fsg-cost-table thead tr { background: var(--navy-deep); }
.fsg-cost-table thead th { padding: 16px 20px; text-align: left; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.fsg-cost-table tbody tr { background: var(--white); border-bottom: 1px solid var(--border); transition: background 0.22s; }
.fsg-cost-table tbody tr:hover { background: var(--cream); }
.fsg-cost-table tbody tr:last-child { border-bottom: none; }
.fsg-cost-table td { padding: 14px 20px; color: var(--text-body); }
.fsg-cost-table td:first-child { font-weight: 600; color: var(--navy); }
.fsg-cost-note { margin-top: 14px; font-size: 0.80rem; color: var(--text-muted); line-height: 1.6; font-style: italic; padding: 12px 18px; background: var(--cream); border-radius: var(--radius); border-left: 2px solid var(--accent); }

/* FAQ */
.fsg-faq__item { border-bottom: 1px solid var(--border); }
.fsg-faq__question { width: 100%; background: none; border: none; padding: 20px 0; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.3; transition: color 0.22s; }
.fsg-faq__question:hover { color: var(--accent); }
.fsg-faq__icon { flex-shrink: 0; width: 26px; height: 26px; background: rgba(14,45,69,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.25s, transform 0.30s; font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.fsg-faq__item.fsg-faq-open .fsg-faq__icon { background: var(--accent); color: var(--white); transform: rotate(45deg); }
.fsg-faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.fsg-faq__item.fsg-faq-open .fsg-faq__answer { max-height: 400px; }
.fsg-faq__answer-inner { padding-bottom: 20px; font-size: 0.90rem; color: var(--text-body); line-height: 1.80; }

/* Policy */
.fsg-policy-link { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--white); color: var(--navy) !important; border: 2px solid var(--navy); text-decoration: none !important; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; border-radius: var(--radius); transition: background 0.22s, color 0.22s; }
.fsg-policy-link:hover { background: var(--navy); color: var(--gold) !important; }

/* Similar */
.fsg-similar { background: var(--cream); padding: 80px 0; }
.fsg-similar__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.fsg-similar__header { text-align: center; margin-bottom: 48px; }
.fsg-similar__heading { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--navy); margin: 8px 0 0; }

/* Responsive */
@media (max-width: 1024px) {
  .fsg-layout { grid-template-columns: 1fr; max-width: 800px; }
  .fsg-sidebar { position: static; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .fsg-why-grid, .fsg-inex-grid, .fsg-flights-grid { grid-template-columns: 1fr; }
  .fsg-highlights-grid, .fsg-overview-bar { grid-template-columns: 1fr 1fr; }
  .fsg-pkg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .fsg-packages { padding: 32px 24px; }
  .fsg-pkg-grid, .fsg-highlights-grid { grid-template-columns: 1fr; }
  .fsg-sidebar { grid-template-columns: 1fr; }
  .fsg-hero__ctas { flex-direction: column; }
  .fsg-btn-primary, .fsg-btn-ghost { width: 100%; justify-content: center; }
  .fsg-sdf-banner { flex-direction: column; gap: 12px; }
  .fsg-sdf-banner::after { display: none; }
}
@media (max-width: 480px) {
  .fsg-hero { height: 88svh; }
  .fsg-overview-bar { grid-template-columns: 1fr; }
}

/* Flight card main */
.fsg-flight-card-main { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 24px; }
.fsg-flight-route { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%); padding: 28px 32px; display: flex; align-items: center; justify-content: center; gap: 32px; }
.fsg-flight-route__city { text-align: center; }
.fsg-flight-route__code { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.fsg-flight-route__name { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
.fsg-flight-route__line { color: rgba(255,255,255,0.30); }
.fsg-flight-details { padding: 8px 0; }
.fsg-flight-detail { display: flex; align-items: flex-start; gap: 14px; padding: 14px 24px; border-bottom: 1px solid var(--border); }
.fsg-flight-detail:last-child { border-bottom: none; }
.fsg-flight-detail__icon { font-size: 1.1rem; flex-shrink: 0; width: 36px; height: 36px; background: var(--accent-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.fsg-flight-detail__label { font-size: 0.60rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.fsg-flight-detail__value { font-size: 0.86rem; color: var(--navy); font-weight: 500; line-height: 1.5; }
.fsg-tip-box { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; }
.fsg-tip-box__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.fsg-tip-box__title { font-family: var(--font-display); font-size: 1.0rem; font-weight: 700; color: var(--navy); margin: 0 0 5px; }
.fsg-tip-box__text { font-size: 0.83rem; color: var(--text-body); line-height: 1.65; margin: 0; }
