/* ===========================================================
   PassportPro — Adapted from reference CSS
   Colors: gold #c5a358, navy #0f172a, bg #f1f5f9
   Fonts: Playfair Display (headings), Poppins (body)
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #c5a358;
  --navy: #0f172a;
  --light-navy: #1e293b;
  --glass: rgba(255, 255, 255, 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
*, .hero { padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: #f1f5f9;
  color: var(--navy);
  overflow-x: hidden;
  overscroll-behavior-y: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Sections ---------- */
section { position: relative; padding: 50px 8%; }
.section-white { background: #fff; box-shadow: inset 0 1px 0 rgba(0,0,0,.04), inset 0 -1px 0 rgba(0,0,0,.04); }
.section-light { background: #f1f5f9; }

.section-header { margin-bottom: 50px; text-align: center; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  font-weight: 700;
}
.section-header p { color: #555; margin-top: 12px; max-width: 650px; margin-inline: auto; font-size: 1rem; }
.section-header .line { width: 80px; height: 5px; background: var(--gold); margin: 15px auto 0; border-radius: 3px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(15,23,42,.7), rgba(15,23,42,.4)); }
.hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
}
.hero p { max-width: 800px; margin: 0 auto; padding: 0 20px; font-size: 1.15rem; color: rgba(255,255,255,.9); }
.hero-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 35px; }

/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}
.btn-primary { background: #fff; color: #039; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.btn-secondary { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-secondary:hover { background: #fff; color: #039; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 30px; border-radius: 50px;
  background: var(--gold); color: #fff;
  font-weight: 600; text-decoration: none;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197,163,88,.3); }

/* ==========================================================
   EXPLORE STRIP
   ========================================================== */
.explore { padding: 50px 8%; background: #fff; border-bottom: 1px solid #e2e8f0; }
.explore h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.explore p { color: #555; max-width: 90ch; font-size: .97rem; line-height: 1.8; }

/* ==========================================================
   SERVICES / CARDS
   ========================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-bottom: 50px; }

.card-link { color: inherit; display: block; text-decoration: none; }

.package-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,.05);
  transition: transform .35s, box-shadow .35s;
  will-change: transform;
  overflow: hidden;
}
.package-card:hover { transform: translate3d(0, -8px, 0); box-shadow: 0 25px 50px rgba(0,0,0,.12); }

.card-img { position: relative; height: 280px; overflow: hidden; }
.card-img img { display: block; width: 100%; height: 100%; object-fit: cover; transform: translateZ(0); backface-visibility: hidden; transition: transform .55s ease; }
.package-card:hover .card-img img { transform: scale(1.1); }

.badge {
  position: absolute; top: 20px; right: 20px; z-index: 5;
  background: var(--gold); color: #fff;
  padding: 5px 15px; border-radius: 30px;
  font-size: .8rem; font-weight: 600;
}

.card-info { padding: 25px; }
.card-info h3 { font-size: 1.3rem; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.card-info p { color: #555; font-size: .92rem; line-height: 1.65; }

.card-meta { display: flex; gap: 20px; margin-top: 18px; padding-top: 15px; border-top: 1px solid #e2e8f0; }
.card-meta-item .k { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: #94a3b8; margin-bottom: 3px; }
.card-meta-item .v { font-size: .95rem; font-weight: 600; color: var(--navy); }

.price { font-size: 1.4rem; color: var(--gold); font-weight: 700; margin-top: 15px; }

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
.why-left img { width: 100%; border-radius: 20px; box-shadow: 0 20px 55px rgba(0,0,0,.14); }
.why-right { display: flex; flex-direction: column; gap: 30px; }
.why-item { display: flex; align-items: flex-start; gap: 18px; padding-bottom: 25px; border-bottom: 1px solid #e8e8e8; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-item .why-icon { width: 28px; height: 28px; margin-top: 5px; flex-shrink: 0; }
.why-item h3 { margin-bottom: 8px; font-size: 22px; color: var(--navy); font-weight: 700; }
.why-item p { color: #555; line-height: 1.7; font-size: .95rem; }

@media (max-width: 900px) {
  .why-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================
   HOW IT WORKS (service-box style)
   ========================================================== */
.services-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 50px; }
.service-box {
  background: #fff; padding: 40px 20px; border-radius: 15px;
  transition: .3s; border: 1px solid #eee; text-align: center;
}
.service-box:hover { background: var(--gold); color: #fff; transform: translateY(-6px); box-shadow: 0 18px 35px rgba(0,0,0,.12); }
.service-icon { width: 48px; height: 48px; display: block; margin: 0 auto 20px; transition: transform .3s; }
.service-box:hover .service-icon { transform: scale(1.08); }
.service-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; transition: color .3s; }
.service-box:hover h3 { color: #fff; }
.service-box p { font-size: .9rem; color: #555; line-height: 1.6; transition: color .3s; }
.service-box:hover p { color: rgba(255,255,255,.9); }
.service-step { font-size: 2rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.service-box:hover .service-step { color: #fff; }

/* ==========================================================
   CTA BAND
   ========================================================== */
.holiday-cta { text-align: center; padding: 70px 8%; background: linear-gradient(135deg, #039, #0057d8); color: #fff; }
.holiday-cta-content { max-width: 850px; margin: auto; }
.holiday-cta h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; font-weight: 700; }
.holiday-cta p { font-size: 1.1rem; line-height: 1.9; color: rgba(255,255,255,.9); margin-bottom: 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .holiday-cta h2 { font-size: 2rem; }
  .holiday-cta p { font-size: 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; }
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-container { max-width: 900px; margin: auto; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 18px; box-shadow: 0 8px 20px rgba(0,0,0,.05); overflow: hidden; }
.faq-question {
  width: 100%; padding: 22px 30px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 20px; font-weight: 600; text-align: left;
  border: none; background: #fff; cursor: pointer;
  color: var(--navy); transition: color .3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question span { font-size: 30px; color: var(--gold); transition: transform .35s; line-height: 1; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 30px 25px; line-height: 1.8; color: #555; font-size: .97rem; }

/* ==========================================================
   DETAIL PAGE
   ========================================================== */
.detail-hero {
  position: relative; min-height: 62vh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.detail-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.detail-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.35) 0%, rgba(15,23,42,.82) 100%); }
.detail-hero-inner { position: relative; z-index: 2; padding: 80px 8% 50px; max-width: 780px; }
.detail-badge { display: inline-block; background: var(--gold); color: #fff; padding: 6px 16px; border-radius: 30px; font-size: .8rem; font-weight: 600; margin-bottom: 15px; }
.detail-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.15; }
.detail-hero p { margin-top: 15px; font-size: 1.05rem; color: rgba(255,255,255,.9); max-width: 60ch; }
.detail-pills { display: flex; gap: 15px; margin-top: 25px; flex-wrap: wrap; }
.pill { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); padding: 10px 18px; border-radius: 12px; }
.pill .k { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.72); display: block; }
.pill .v { font-weight: 700; font-size: .98rem; display: block; }

.detail-body { padding: 60px 8%; }
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; max-width: 1200px; margin: 0 auto; }
.detail-main h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 15px; margin-top: 35px; }
.detail-main h2:first-child { margin-top: 0; }
.detail-main p { color: #555; margin-bottom: 15px; line-height: 1.8; font-size: .97rem; }
.detail-aside { position: sticky; top: 20px; background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,.05); padding: 30px; }
.aside-title { font-weight: 700; color: var(--navy); margin-bottom: 15px; font-size: 1.1rem; }
.aside-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #e2e8f0; font-size: .93rem; }
.aside-row:last-of-type { border-bottom: none; }
.aside-row .k { color: #555; }
.aside-row .v { font-weight: 600; color: var(--navy); }
.aside-btn { display: block; width: 100%; text-align: center; margin-top: 12px; padding: 14px; border-radius: 50px; font-weight: 600; background: var(--gold); color: #fff; transition: .3s; border: none; cursor: pointer; text-decoration: none; }
.aside-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197,163,88,.3); }
.aside-btn-ghost { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.aside-btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}

/* ==========================================================
   404
   ========================================================== */
.notfound { min-height: 80vh; display: grid; place-items: center; text-align: center; padding: 40px 8%; }
.notfound .code { font-family: 'Playfair Display', serif; font-size: clamp(5rem, 14vw, 9rem); font-weight: 800; line-height: 1; color: var(--gold); }
.notfound h1 { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-top: 15px; }
.notfound p { color: #555; margin-top: 10px; max-width: 46ch; margin-inline: auto; }
.notfound .btn-gold { margin-top: 25px; display: inline-block; }

/* ==========================================================
   REVEAL
   ========================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s, transform .6s; will-change: opacity, transform; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  section { padding: 40px 6%; }
  .card-grid { grid-template-columns: 1fr; gap: 25px; }
  .hero h1 { font-size: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
