/* Sky Global Holidays — Guide pages shared styles
   Reuses tokens from destination.css for visual consistency. */

:root {
  --teal: #0B7D6F; --teal-light: #0E9B8A;
  --deep: #102E3A; --deep-light: #1A4050;
  --pearl: #FAF7F3; --sand: #F3EAE0;
  --slate: #4A5D6A; --muted: #7A8D99;
  --gold: #D9A84E; --white: #FFFFFF;
  --border: rgba(11, 125, 111, 0.1);
  --shadow-sm: 0 2px 8px rgba(16,46,58,0.04);
  --shadow-md: 0 8px 24px rgba(16,46,58,0.08);
  --shadow-lg: 0 16px 48px rgba(16,46,58,0.12);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  color: var(--deep);
  background: var(--pearl);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.g-header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  background: rgba(250,247,243,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.g-header.scrolled { box-shadow: 0 2px 24px rgba(16,46,58,0.06); }
.g-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.g-logo { display: flex; flex-direction: column; line-height: 1; }
.g-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--teal);
  letter-spacing: 0.025em; direction: ltr;
}
.g-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.5rem; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.45em; color: var(--slate); margin-top: 3px; direction: ltr;
}
.g-nav { display: flex; gap: 24px; align-items: center; }
.g-nav a { font-size: 0.85rem; color: var(--slate); transition: color 0.2s; }
.g-nav a:hover { color: var(--deep); }
.g-nav .g-cta-header {
  background: var(--teal); color: var(--pearl) !important;
  padding: 9px 20px; font-weight: 600; transition: background 0.2s;
}
.g-nav .g-cta-header:hover { background: var(--teal-light); }
.g-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; flex-direction: column;
  justify-content: center; gap: 5px;
}
.g-mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--deep); }

/* ===== BREADCRUMBS ===== */
.g-breadcrumbs {
  padding: 92px 0 16px; font-size: 0.8rem; color: var(--slate);
}
.g-breadcrumbs a { color: var(--slate); transition: color 0.2s; }
.g-breadcrumbs a:hover { color: var(--teal); }
.g-breadcrumbs .sep { margin: 0 8px; color: var(--muted); }
.g-breadcrumbs .current { color: var(--deep); font-weight: 600; }

/* ===== GUIDE HERO ===== */
.g-hero {
  padding: 20px 0 48px;
  position: relative;
}
.g-hero-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.g-hero h1 {
  font-size: 2.4rem; font-weight: 800; color: var(--deep);
  line-height: 1.3; margin-bottom: 16px; letter-spacing: -0.01em;
}
.g-hero .g-lead {
  font-size: 1.1rem; font-weight: 300; color: var(--slate);
  max-width: 760px; line-height: 1.9;
}
.g-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--muted);
}
.g-meta span { display: inline-flex; align-items: center; gap: 6px; }
.g-meta .dot::before { content: '◆'; color: var(--gold); margin-left: 4px; }

/* ===== PRIMARY / SECONDARY CTAs ===== */
.g-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--deep);
  padding: 14px 32px; font-weight: 700; font-size: 0.95rem;
  font-family: 'Cairo', sans-serif;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(217,168,78,0.25);
}
.g-cta-primary:hover {
  background: #E5B85E; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217,168,78,0.35);
}
.g-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--teal);
  padding: 12px 28px; font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid var(--teal); transition: all 0.2s;
}
.g-cta-secondary:hover { background: var(--teal); color: var(--pearl); }

/* ===== INLINE CTA BOX (after first-fold, mid-article, end) ===== */
.g-cta-box {
  background: var(--deep); color: var(--pearl);
  padding: 32px 28px; margin: 40px 0; border-radius: 2px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.g-cta-box::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 40%; height: 160%;
  background: radial-gradient(ellipse, rgba(217,168,78,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.g-cta-box-text { position: relative; z-index: 1; flex: 1 1 260px; }
.g-cta-box-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.g-cta-box-sub { font-size: 0.88rem; color: rgba(250,247,243,0.7); font-weight: 300; }
.g-cta-box-actions { position: relative; z-index: 1; display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== CONTENT SECTIONS ===== */
.g-content { padding: 20px 0 60px; }
.g-content h2 {
  font-size: 1.75rem; font-weight: 800; color: var(--deep);
  line-height: 1.35; margin: 48px 0 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.g-content h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--deep);
  margin: 28px 0 10px;
}
.g-content p {
  font-size: 1rem; color: var(--deep); margin-bottom: 14px;
  line-height: 1.95; font-weight: 400;
}
.g-content p strong { color: var(--deep); font-weight: 700; }
.g-content ul.g-list, .g-content ol.g-list { margin: 14px 0 20px; padding-right: 4px; }
.g-content ul.g-list li, .g-content ol.g-list li {
  position: relative; padding: 6px 24px 6px 0;
  font-size: 0.96rem; color: var(--deep); line-height: 1.9;
}
.g-content ul.g-list li::before {
  content: '◆'; position: absolute; right: 0; top: 10px;
  color: var(--gold); font-size: 0.7rem;
}
.g-content ol.g-list { counter-reset: gl; }
.g-content ol.g-list li::before {
  counter-increment: gl; content: counter(gl);
  position: absolute; right: 0; top: 6px;
  color: var(--teal); font-weight: 700; font-size: 0.9rem;
  background: rgba(11,125,111,0.08); width: 22px; height: 22px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.g-content ol.g-list li { padding-right: 34px; }

.g-callout {
  background: var(--sand); border-right: 3px solid var(--gold);
  padding: 18px 22px; margin: 22px 0;
  border-radius: 2px;
}
.g-callout strong { color: var(--deep); }
.g-callout p { margin-bottom: 0; font-size: 0.95rem; }

/* ===== QUICK FACTS STRIP ===== */
.g-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 24px 0 32px;
}
.g-fact {
  background: var(--white); border: 1px solid var(--border);
  padding: 16px 14px; text-align: center;
}
.g-fact-label {
  font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.g-fact-value {
  font-size: 0.95rem; font-weight: 700; color: var(--deep); line-height: 1.4;
}

/* ===== TOC (sticky on desktop) ===== */
.g-toc-wrap {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.g-toc {
  position: sticky; top: 90px; align-self: start;
  background: var(--white); border: 1px solid var(--border);
  padding: 20px; max-height: calc(100vh - 110px); overflow-y: auto;
}
.g-toc-title {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--teal); font-weight: 700; margin-bottom: 12px;
}
.g-toc a {
  display: block; font-size: 0.82rem; color: var(--slate);
  padding: 5px 0; transition: color 0.2s;
}
.g-toc a:hover, .g-toc a.active { color: var(--teal); font-weight: 600; }

/* ===== TABLES ===== */
.g-table-wrap { overflow-x: auto; margin: 22px 0; }
.g-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  font-size: 0.88rem;
}
.g-table th, .g-table td {
  padding: 12px 14px; text-align: right;
  border: 1px solid var(--border);
}
.g-table thead th {
  background: var(--deep); color: var(--pearl); font-weight: 700;
  font-size: 0.85rem;
}
.g-table tbody tr:nth-child(even) { background: var(--pearl); }

/* ===== RELATED BAND (offer + comparison + destinations) ===== */
.g-related {
  background: var(--sand); padding: 56px 0; margin-top: 40px;
}
.g-related h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--deep);
  text-align: center; margin-bottom: 28px;
}
.g-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1000px; margin: 0 auto;
}
.g-related-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 22px; transition: all 0.25s;
  display: flex; flex-direction: column;
}
.g-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md); border-color: var(--teal);
}
.g-related-kicker {
  font-size: 0.66rem; color: var(--teal); text-transform: uppercase;
  letter-spacing: 2px; font-weight: 700; margin-bottom: 8px;
}
.g-related-title {
  font-size: 1rem; font-weight: 700; color: var(--deep);
  margin-bottom: 6px; line-height: 1.4;
}
.g-related-desc {
  font-size: 0.84rem; color: var(--slate); flex: 1;
  line-height: 1.7; margin-bottom: 14px;
}
.g-related-link {
  font-size: 0.82rem; font-weight: 700; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
}
.g-related-link::after { content: '←'; font-size: 1rem; transition: transform 0.2s; }
.g-related-card:hover .g-related-link::after { transform: translateX(-3px); }

/* ===== FAQ ===== */
.g-faq-list { max-width: 820px; margin: 0 auto; }
.g-faq-item {
  background: var(--white); border: 1px solid var(--border);
  margin-bottom: 10px; overflow: hidden; transition: all 0.2s;
}
.g-faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.g-faq-item summary {
  padding: 18px 22px; font-weight: 700; font-size: 0.98rem;
  color: var(--deep); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.g-faq-item summary::-webkit-details-marker { display: none; }
.g-faq-item summary::after {
  content: '+'; width: 24px; height: 24px; border-radius: 50%;
  background: var(--sand); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 700; flex-shrink: 0;
}
.g-faq-item[open] summary::after { content: '−'; }
.g-faq-item .g-faq-body {
  padding: 0 22px 18px; color: var(--slate);
  font-size: 0.92rem; font-weight: 300; line-height: 1.9;
}

/* ===== FINAL CTA ===== */
.g-final-cta {
  background: linear-gradient(135deg, var(--deep) 0%, var(--teal) 100%);
  color: var(--pearl); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.g-final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(217,168,78,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.g-final-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 24px; }
.g-final-cta h2 {
  font-size: 2rem; font-weight: 800; margin-bottom: 14px;
  color: var(--pearl); line-height: 1.3;
}
.g-final-cta p {
  font-size: 1rem; font-weight: 300; color: rgba(250,247,243,0.8);
  margin-bottom: 28px; line-height: 1.85;
}

/* ===== STICKY MOBILE CTA ===== */
.g-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 16px; box-shadow: 0 -4px 20px rgba(16,46,58,0.08);
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.g-sticky-cta.visible { transform: translateY(0); }
.g-sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: white;
  padding: 12px; font-weight: 700; font-size: 0.9rem;
  width: 100%;
}

/* ===== FOOTER ===== */
.g-footer {
  background: var(--deep); color: rgba(250,247,243,0.55);
  padding: 40px 0 24px; text-align: center;
  font-size: 0.82rem;
}
.g-footer a { color: rgba(250,247,243,0.7); transition: color 0.2s; }
.g-footer a:hover { color: var(--gold); }
.g-footer .g-foot-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 12px; }
.g-footer .g-foot-copy { font-size: 0.72rem; color: rgba(250,247,243,0.35); letter-spacing: 1px; }

/* ===== FLOAT WHATSAPP ===== */
.g-float-wa {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 54px; height: 54px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 6px 22px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.g-float-wa:hover { transform: scale(1.08); }

/* ===== MINI-GUIDE EMBED (inside destination pages) ===== */
.g-mini {
  background: var(--pearl); border: 1px solid var(--border);
  border-right: 3px solid var(--gold);
  padding: 28px 28px 24px; margin: 0 auto; max-width: 880px;
}
.g-mini-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.g-mini-kicker {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--teal); font-weight: 700;
}
.g-mini-title {
  font-size: 1.15rem; font-weight: 700; color: var(--deep);
  margin-top: 4px;
}
.g-mini-link {
  font-size: 0.82rem; font-weight: 700; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px dashed var(--teal); padding-bottom: 2px;
  transition: all 0.2s;
}
.g-mini-link:hover { color: var(--deep); border-color: var(--deep); }
.g-mini-link::after { content: '←'; transition: transform 0.2s; }
.g-mini-link:hover::after { transform: translateX(-3px); }
.g-mini-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 16px;
}
.g-mini-cell {
  background: var(--white); padding: 12px; text-align: center;
  border: 1px solid var(--border);
}
.g-mini-cell-label {
  font-size: 0.65rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.g-mini-cell-value { font-size: 0.86rem; font-weight: 700; color: var(--deep); }
.g-mini-bullets {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 18px;
  margin-bottom: 14px;
}
.g-mini-bullets li {
  font-size: 0.86rem; color: var(--slate); position: relative;
  padding-right: 14px;
}
.g-mini-bullets li::before {
  content: '◆'; color: var(--gold); position: absolute; right: 0; top: 5px; font-size: 0.55rem;
}
.g-mini-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border);
}
.g-mini-micro { font-size: 0.78rem; color: var(--muted); }

/* ===== OFFER-CARD GUIDE LINK (placed under .dest-cta) ===== */
.g-card-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 8px; padding: 6px 0;
  font-size: 0.78rem; font-weight: 600; color: var(--slate);
  transition: color 0.2s;
}
.g-card-link:hover { color: var(--teal); }
.g-card-link svg { width: 14px; height: 14px; opacity: 0.7; }
.g-card-link-micro {
  display: block; text-align: center; font-size: 0.7rem;
  color: var(--muted); font-weight: 300; margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .g-nav { display: none; }
  .g-mobile-toggle { display: flex; }
  .g-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; right: 0; left: 0;
    background: var(--pearl); border-bottom: 1px solid var(--border);
    padding: 20px; gap: 14px; box-shadow: 0 8px 30px rgba(16,46,58,0.08);
  }
  .g-toc-wrap { grid-template-columns: 1fr; gap: 20px; }
  .g-toc { position: static; max-height: none; }
  .g-facts { grid-template-columns: repeat(2, 1fr); }
  .g-related-grid { grid-template-columns: 1fr; }
  .g-hero h1 { font-size: 1.85rem; }
  .g-content h2 { font-size: 1.45rem; }
  .g-mini { padding: 20px; }
  .g-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .g-mini-bullets { grid-template-columns: 1fr; }
  .g-sticky-cta { display: block; }
  .g-float-wa { bottom: 88px; }
}
@media (max-width: 480px) {
  .g-hero h1 { font-size: 1.6rem; }
  .g-content h2 { font-size: 1.3rem; }
  .g-final-cta h2 { font-size: 1.55rem; }
  .g-facts { grid-template-columns: 1fr 1fr; }
}
