/* Sky Global Holidays — Activities & Pricing pages (shared)
   Inherits color tokens from guide.css. Loaded AFTER guide.css. */

/* ===== ACTIVITY HERO ===== */
.a-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--teal) 100%);
  color: var(--pearl);
  padding: 120px 0 52px;
  position: relative;
  overflow: hidden;
}
.a-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(217,168,78,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.a-hero .container { position: relative; z-index: 1; }
.a-hero-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.a-hero h1 {
  font-size: 2.2rem; font-weight: 800;
  line-height: 1.3; margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--pearl);
}
.a-hero .a-lead {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(250,247,243,0.85);
  max-width: 720px; line-height: 1.9;
  margin-bottom: 24px;
}
.a-hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 6px;
}
.a-hero-actions .a-cta-primary {
  background: var(--gold); color: var(--deep);
  padding: 14px 28px; font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(217,168,78,0.3);
}
.a-hero-actions .a-cta-primary:hover {
  background: #E5B85E;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(217,168,78,0.4);
}
.a-hero-actions .a-cta-secondary {
  background: transparent;
  color: var(--pearl);
  padding: 14px 26px; font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid rgba(250,247,243,0.4);
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.a-hero-actions .a-cta-secondary:hover {
  background: rgba(250,247,243,0.1);
  border-color: var(--pearl);
}
.a-hero-note {
  margin-top: 22px; padding: 12px 16px;
  background: rgba(250,247,243,0.08);
  border-right: 3px solid var(--gold);
  font-size: 0.82rem;
  color: rgba(250,247,243,0.82);
  max-width: 720px;
  line-height: 1.75;
}

/* ===== CATEGORY NAV (sticky, horizontal scroll on mobile) ===== */
.a-catnav {
  position: sticky; top: 68px; z-index: 50;
  background: rgba(250,247,243,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.a-catnav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.a-catnav-inner::-webkit-scrollbar { display: none; }
.a-catnav a {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--slate);
  background: transparent;
  border: 1px solid var(--border);
  transition: all 0.2s;
  white-space: nowrap;
}
.a-catnav a:hover {
  color: var(--teal);
  border-color: var(--teal);
}
.a-catnav a.active {
  background: var(--teal);
  color: var(--pearl);
  border-color: var(--teal);
}

/* ===== CATEGORY SECTION ===== */
.a-cat {
  padding: 44px 0 12px;
  scroll-margin-top: 132px;
}
.a-cat:first-of-type { padding-top: 36px; }
.a-cat-head {
  max-width: 1200px; margin: 0 auto 20px;
  padding: 0 24px;
}
.a-cat-kicker {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  font-weight: 700; margin-bottom: 8px;
}
.a-cat-title {
  font-size: 1.55rem; font-weight: 800;
  color: var(--deep); line-height: 1.35;
  margin-bottom: 6px;
}
.a-cat-desc {
  font-size: 0.95rem; color: var(--slate);
  max-width: 720px; line-height: 1.85;
}

.a-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ===== ACTIVITY CARD ===== */
.a-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.a-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.a-card-title {
  font-size: 1.08rem; font-weight: 700;
  color: var(--deep); line-height: 1.4;
  margin-bottom: 6px;
}
.a-card-desc {
  font-size: 0.87rem; color: var(--slate);
  line-height: 1.75; margin-bottom: 14px;
  min-height: 2.9em;
}

/* ===== PRICE PILL ===== */
.a-price {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, rgba(217,168,78,0.12), rgba(217,168,78,0.04));
  border: 1px solid rgba(217,168,78,0.35);
  color: var(--deep);
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: normal;
  direction: rtl;
  text-align: right;
  width: 100%;
  box-sizing: border-box;
}
.a-meta {
  margin-top: 8px;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-weight: 600;
}

/* ===== BADGES ===== */
.a-badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.a-badge {
  background: var(--sand);
  color: var(--slate);
  padding: 3px 10px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
}

/* ===== CARD ACTIONS ===== */
.a-card-actions {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.a-add-btn {
  background: var(--teal);
  color: var(--pearl);
  padding: 11px 16px;
  font-weight: 700; font-size: 0.9rem;
  font-family: 'Cairo', sans-serif;
  border: none; cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  text-align: center;
}
.a-add-btn:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.a-add-btn svg { flex-shrink: 0; }
.a-know-link {
  background: transparent;
  color: var(--teal);
  padding: 6px 10px;
  font-size: 0.78rem; font-weight: 600;
  text-align: center;
  transition: color 0.2s;
}
.a-know-link:hover { color: var(--deep); }

/* ===== NOTES SECTIONS ===== */
.a-notes {
  background: var(--sand);
  padding: 52px 0;
  margin-top: 48px;
}
.a-notes-inner {
  max-width: 900px; margin: 0 auto;
  padding: 0 24px;
}
.a-notes-title {
  font-size: 1.5rem; font-weight: 800;
  color: var(--deep); margin-bottom: 8px;
  text-align: center;
}
.a-notes-sub {
  font-size: 0.95rem; color: var(--slate);
  text-align: center; margin-bottom: 28px;
}
.a-note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.a-note-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-right: 3px solid var(--gold);
  padding: 18px 22px;
}
.a-note-card-title {
  font-size: 0.98rem; font-weight: 700;
  color: var(--deep); margin-bottom: 6px;
}
.a-note-card-body {
  font-size: 0.88rem; color: var(--slate);
  line-height: 1.85;
}

.a-soft-notes {
  margin-top: 26px;
}
.a-soft-notes-title {
  font-size: 0.8rem; font-weight: 700;
  color: var(--teal);
  text-transform: uppercase; letter-spacing: 2px;
  text-align: center; margin-bottom: 14px;
}
.a-soft-note {
  background: var(--white);
  border: 1px dashed var(--border);
  padding: 14px 20px;
  margin-bottom: 10px;
  border-radius: 2px;
}
.a-soft-note summary {
  font-size: 0.92rem; font-weight: 700;
  color: var(--deep); cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.a-soft-note summary::-webkit-details-marker { display: none; }
.a-soft-note summary::after {
  content: '+';
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sand); color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.a-soft-note[open] summary::after { content: '−'; }
.a-soft-note-body {
  font-size: 0.88rem; color: var(--slate);
  line-height: 1.85; margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* ===== RELATED + FINAL CTA (reuse from guide.css but bottom-padded for sticky) ===== */
.a-related { padding-bottom: 80px; }
.a-final-cta { padding-bottom: 120px; }

/* ===== STICKY MOBILE QUOTE BAR ===== */
.a-sticky-quote {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(16,46,58,0.08);
  padding: 10px 16px;
  display: none;
  z-index: 80;
}
.a-sticky-quote a {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--deep);
  padding: 13px 18px;
  font-weight: 800; font-size: 0.95rem;
  width: 100%;
  transition: background 0.2s;
}
.a-sticky-quote a:hover { background: #E5B85E; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .a-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .g-header + .a-catnav { top: 64px; }
  .a-hero { padding: 102px 0 40px; }
  .a-hero h1 { font-size: 1.65rem; line-height: 1.35; }
  .a-hero .a-lead { font-size: 0.96rem; }
  .a-hero-actions { flex-direction: column; width: 100%; }
  .a-hero-actions .a-cta-primary,
  .a-hero-actions .a-cta-secondary {
    width: 100%; justify-content: center;
  }
  .a-cat { padding: 30px 0 8px; scroll-margin-top: 120px; }
  .a-cat-title { font-size: 1.3rem; }
  .a-grid { grid-template-columns: 1fr; gap: 12px; }
  .a-card { padding: 18px; }
  .a-card-title { font-size: 1rem; }
  .a-card-desc { min-height: 0; }
  .a-note-grid { grid-template-columns: 1fr; }
  .a-notes { padding: 40px 0; }
  .a-notes-title { font-size: 1.25rem; }
  .a-sticky-quote { display: block; }
  /* make room for sticky bar so content is not hidden */
  .a-final-cta { padding-bottom: 160px; }
  body.has-sticky-quote { padding-bottom: 72px; }
}
