/* ============================================================
   Enlighten Tours — Global Styles
   Brand: Teal (#4DC4D9), Yellow (#F4BC2E), Flame Orange (#F37B40)
   ============================================================ */

:root {
  --teal: #4DC4D9;
  --teal-dark: #2A8FA3;
  --yellow: #F4BC2E;
  --yellow-dark: #C9971A;
  --flame: #F37B40;
  --cream: #FAF6EE;
  --sand: #EFE7D5;
  --slate: #1F2D3D;
  --gray: #5C6B7A;
  --gray-light: #C9D1D9;
  --white: #FFFFFF;
  --bg: var(--cream);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--slate);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--teal-dark);
  line-height: 1.25;
  margin: 0 0 0.5em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.35rem; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--flame); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 4px 18px rgba(31, 45, 61, 0.08);
  position: sticky; top: 0; z-index: 100;
}
.site-header__accent {
  height: 5px;
  background: linear-gradient(90deg,
    var(--teal) 0%,
    var(--teal-dark) 30%,
    var(--yellow) 60%,
    var(--flame) 100%);
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 24px;
}
.site-header__logo { height: 52px; width: auto; }
.site-nav { display: flex; gap: 22px; flex: 1; justify-content: center; }
.site-nav a {
  color: var(--slate); font-weight: 600; font-size: 0.95rem;
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-nav a:hover { color: var(--teal-dark); border-bottom-color: var(--yellow); }
.site-header__cta {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--flame) 130%);
  color: var(--slate);
  padding: 11px 22px 11px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(244, 188, 46, 0.4);
  transition: transform 0.15s, box-shadow 0.15s, color 0.15s;
}
.site-header__cta svg { width: 16px; height: 16px; }
.site-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(243, 123, 64, 0.45);
  color: var(--slate);
}

/* Hamburger menu toggle — hidden on desktop, shown on mobile */
.site-header__menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.site-header__menu-toggle:hover { background: rgba(31, 45, 61, 0.06); }
.site-header__menu-toggle-bar {
  width: 24px; height: 2.5px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 80px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 { color: var(--white); font-size: 3rem; max-width: 820px; margin: 0 auto 18px; }
.hero p { font-size: 1.2rem; max-width: 680px; margin: 0 auto 32px; opacity: 0.95; }
.hero__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Hero — with background image variant */
.hero--image {
  background:
    linear-gradient(rgba(15, 28, 56, 0.48), rgba(15, 28, 56, 0.48)),
    url('https://res.cloudinary.com/daltiddxf/image/upload/v1779398737/enlighten-tours/home/axnpmxbkw181xgti7hwn.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 363px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 24px;
  border-top: 10px solid var(--yellow);
  border-bottom: 10px solid var(--yellow);
}
.hero--image .hero__inner {
  max-width: 860px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.hero--image h1 {
  font-size: 2.6rem;
  margin: 0 auto;
  line-height: 1.2;
  font-weight: 700;
}
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; transition: transform 0.1s, box-shadow 0.15s;
}
.btn-primary { background: var(--yellow); color: var(--slate); }
.btn-primary:hover { background: var(--flame); color: var(--white); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--teal-dark); border: 2px solid var(--white); }
.btn-secondary:hover { background: transparent; color: var(--white); }

/* Sections */
section { padding: 72px 0; }
.section-heading { text-align: center; margin-bottom: 44px; }
.section-heading__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 18px;
  max-width: 160px;
}
.section-heading__ornament-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.section-heading__ornament-diamond {
  width: 9px;
  height: 9px;
  background: var(--yellow);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.section-heading h2 { color: var(--teal-dark); margin: 0 0 12px; }
.section-heading p { color: var(--gray); max-width: 640px; margin: 0 auto; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light .section-heading__ornament-line {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

/* Experience section (features grid) */
.experience { background: var(--cream); }

/* Feature grid */
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 8px;
}
.feature {
  --feature-accent: var(--yellow);
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 18px rgba(31, 45, 61, 0.06);
  border-top: 4px solid var(--feature-accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(31, 45, 61, 0.14);
}
.feature--yellow { --feature-accent: var(--yellow); }
.feature--teal   { --feature-accent: var(--teal); }
.feature--flame  { --feature-accent: var(--flame); }

.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--feature-accent) 18%, transparent);
  color: var(--feature-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature__icon svg { width: 28px; height: 28px; }

.feature h3 { color: var(--teal-dark); margin: 0 0 8px; font-size: 1.18rem; }
.feature p { color: var(--gray); margin: 0; font-size: 0.95rem; line-height: 1.65; }

/* Mission/Vision block — now a dark, branded section with decorative shapes */
.mission-vision {
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 188, 46, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(77, 196, 217, 0.12), transparent 50%),
    linear-gradient(135deg, #15324F 0%, #0F2238 100%);
  color: var(--gray-light);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.mission-vision .section-heading p,
.mission-vision .prose p { color: rgba(255, 255, 255, 0.88); }
.mission-vision .prose em { color: var(--yellow); }
.mission-vision__shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.18;
}
.mission-vision__shape--a {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
}
.mission-vision__shape--b {
  width: 380px;
  height: 380px;
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
}
.prose--light p { color: rgba(255, 255, 255, 0.92); }
.prose--light em { color: var(--yellow); font-style: italic; }

/* Footer */
.site-footer {
  background: var(--slate); color: rgba(255, 255, 255, 0.88);
}
.site-footer__inner {
  max-width: 1140px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 1.4fr 2fr 1fr; gap: 40px;
}
.site-footer__logo { height: 56px; display: block; }
.site-footer__tag { color: rgba(255, 255, 255, 0.85); margin-top: 12px; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 14px 24px; }
.site-footer a { color: rgba(255, 255, 255, 0.92); }
.site-footer a:hover { color: var(--yellow); }
.site-footer__contact { display: flex; flex-direction: column; gap: 6px; }
.site-footer__copyright {
  text-align: center; padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.6);
}

/* Stub page styles (initial) */
.page-hero {
  background: var(--sand); padding: 64px 24px 48px; text-align: center;
}
.page-hero h1 { color: var(--teal-dark); margin-bottom: 12px; }
.page-hero p { color: var(--gray); max-width: 720px; margin: 0 auto; }

/* Prose block (long-form text on About, Resources, etc.) */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}
.prose p { margin: 0 0 1.2em; color: var(--slate); }
.prose p:last-child { margin-bottom: 0; }
.prose em { color: var(--teal-dark); font-style: italic; }

/* CTA band — full-width section with buttons (used at the end of About, etc.) */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.92); margin: 0 0 24px; }
.cta-band__buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-secondary-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}
.btn-secondary-dark:hover { background: var(--white); color: var(--teal-dark); }

/* Resources listing */
.resource-list { display: flex; flex-direction: column; gap: 40px; }
.resource {
  display: grid; grid-template-columns: 260px 1fr; gap: 36px;
  background: var(--white); border-radius: 14px; padding: 32px;
  box-shadow: 0 4px 18px rgba(31, 45, 61, 0.06);
}
.resource__cover { align-self: start; }
.resource__cover img {
  width: 100%; height: auto; border-radius: 8px;
  box-shadow: 0 6px 20px rgba(31, 45, 61, 0.18);
}
.resource__title { color: var(--teal-dark); font-size: 1.5rem; line-height: 1.3; margin: 0 0 6px; }
.resource__meta {
  color: var(--gray); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.5px; margin: 0 0 18px;
}
.resource__description {
  font-size: 1rem; line-height: 1.75; color: var(--slate); margin-bottom: 22px;
}
.resource__description em { color: var(--teal-dark); font-style: italic; }
.resource__topics-title {
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--flame); margin: 0 0 8px;
}
.resource__topics {
  margin: 0 0 24px; padding: 0 0 0 20px; color: var(--slate); line-height: 1.7;
}
.resource__topics li { margin-bottom: 4px; }
.resource__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-secondary-alt {
  background: var(--white); color: var(--teal-dark);
  border: 2px solid var(--teal-dark); padding: 12px 28px;
  border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary-alt:hover { background: var(--teal-dark); color: var(--white); }

@media (max-width: 700px) {
  .resource { grid-template-columns: 1fr; padding: 22px; gap: 22px; }
  .resource__cover { max-width: 220px; margin: 0 auto; }
}

/* Blog listing */
.post-list { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.post-card {
  display: flex; flex-direction: column; background: var(--white); border-radius: 12px;
  overflow: hidden; box-shadow: 0 4px 18px rgba(31, 45, 61, 0.06);
  transition: transform 0.15s, box-shadow 0.15s; color: var(--slate);
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(31, 45, 61, 0.12); color: var(--slate); }
.post-card__img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--sand); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { color: var(--gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 8px; }
.post-card__title { color: var(--teal-dark); font-size: 1.2rem; margin: 0 0 10px; line-height: 1.35; }
.post-card__excerpt { color: var(--slate); margin: 0 0 14px; font-size: 0.95rem; flex: 1; }
.post-card__read { color: var(--flame); font-weight: 700; font-size: 0.92rem; }

/* Blog detail page */
.post-page { padding: 48px 24px 80px; }
.post-container { max-width: 820px; }
.back-link {
  color: var(--gray); font-size: 0.9rem; display: inline-block; margin-bottom: 18px;
}
.back-link:hover { color: var(--teal-dark); }
.post-title { color: var(--teal-dark); font-size: 2.2rem; line-height: 1.2; margin: 0 0 8px; }
.post-meta { color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.85rem; margin: 0 0 24px; }
.post-content { font-size: 1.04rem; line-height: 1.8; color: var(--slate); }
.post-content p { margin: 0 0 1.2em; }
.post-content blockquote {
  margin: 1.6em 0; padding: 22px 26px 18px;
  background: var(--sand); border-left: 4px solid var(--yellow); border-radius: 8px;
  font-style: italic; color: var(--slate);
}
.post-content blockquote p { margin: 0 0 8px; }
.post-content blockquote cite {
  display: block; font-style: normal; font-weight: 600; color: var(--teal-dark);
  font-size: 0.92rem; margin-top: 6px;
}

/* Article slideshow (ported from imamsp; used for blog + future tour pages) */
.article-slideshow {
  position: relative; margin: 1.5rem 0 2rem; aspect-ratio: 4 / 3;
  background: var(--slate); border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(31, 45, 61, 0.18);
}
.article-slideshow__track { position: relative; width: 100%; height: 100%; }
.article-slideshow__slide {
  position: absolute; inset: 0; margin: 0; opacity: 0;
  transition: opacity 0.45s ease; pointer-events: none;
}
.article-slideshow__slide.is-active { opacity: 1; pointer-events: auto; }
.article-slideshow__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-slideshow__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92); color: var(--teal-dark);
  border: 0; width: 44px; height: 44px; font-size: 26px; line-height: 1;
  border-radius: 50%; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.article-slideshow__btn:hover { background: var(--yellow); color: var(--slate); }
.article-slideshow__btn--prev { left: 14px; }
.article-slideshow__btn--next { right: 14px; }
.article-slideshow__dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.article-slideshow__dot {
  width: 10px; height: 10px; padding: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.55); border: 0; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.article-slideshow__dot:hover { transform: scale(1.2); }
.article-slideshow__dot.is-active { background: var(--yellow); }

/* FAQ accordion (native <details>/<summary>) */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}
.disclaimer-note {
  background: #FFF8E5;
  border-left: 4px solid var(--yellow);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 28px;
}
.disclaimer-note strong { color: var(--yellow-dark); }
.disclaimer-note a { color: var(--teal-dark); text-decoration: underline; }
.faq {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(31, 45, 61, 0.05);
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.faq:hover { box-shadow: 0 4px 16px rgba(31, 45, 61, 0.08); }
.faq[open] { box-shadow: 0 4px 18px rgba(31, 45, 61, 0.1); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 24px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--teal-dark);
  position: relative;
  transition: background 0.15s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.2s, background 0.15s;
}
.faq[open] .faq__q::after {
  content: '−';
  background: var(--flame);
  color: var(--white);
}
.faq__q:hover { background: rgba(77, 196, 217, 0.06); }
.faq__a {
  padding: 4px 24px 22px;
  color: var(--slate);
  line-height: 1.7;
}
.faq__a p { margin: 0 0 12px; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a ul { padding-left: 22px; margin: 0; }
.faq__a li { margin-bottom: 6px; }
.faq__a strong { color: var(--teal-dark); }

/* Responsive */
@media (max-width: 920px) {
  .site-header__inner { flex-wrap: wrap; gap: 12px; }
  .site-header__brand { order: 1; }
  .site-header__menu-toggle { display: flex; order: 2; margin-left: auto; }
  .site-header__cta { order: 3; }
  .site-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background: var(--white);
    border-top: 1px solid rgba(31, 45, 61, 0.08);
    padding: 4px 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(31, 45, 61, 0.06);
    border-bottom-width: 1px;
  }
  .site-nav a:last-child { border-bottom: 0; }
  .mv-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 2.25rem; }
  .hero { padding: 56px 24px 72px; }
  .hero--image { min-height: 255px; padding: 30px 20px; }
  .hero--image h1 { font-size: 1.85rem; }
}
