/* ── CL Travels — Marketing Site Styles ────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap");

:root {
  --blue:   #1b76bc;
  --blue2:  #146aa9;
  --orange: #f15c2d;
  --white:  #ffffff;
  --black:  #000000;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.site-body {
  font-family: 'Merriweather', Georgia, serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Nav ──────────────────────────────────────────────────────── */
.site-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}
.site-nav-logo img { height: 40px; }

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.site-nav-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .15s;
  letter-spacing: .05em;
}
.site-nav-links a:hover { background: rgba(255,255,255,.15); }
.site-nav-links a.active { background: var(--orange); }
.site-nav-links .nav-login {
  background: var(--blue);
  color: #fff;
  margin-left: 8px;
}
.site-nav-links .nav-login:hover { background: var(--blue2); }

.site-nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 4px;
}
.site-nav-hamburger svg { width: 28px; height: 28px; display: block; }

/* mobile drawer */
.site-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.site-nav-drawer.open { display: flex; }
.site-nav-drawer a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .05em;
}
.site-nav-drawer a.active { color: var(--orange); }
.site-nav-drawer .drawer-close {
  position: absolute;
  top: 20px; left: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.site-nav-drawer .drawer-close svg { width: 28px; height: 28px; display: block; }
.site-nav-drawer .nav-login {
  background: var(--blue);
  padding: 10px 28px;
  border-radius: 999px;
  margin-top: 8px;
}

/* ── Sub-page header bar ─────────────────────────────────────── */
.site-subheader {
  background: var(--blue);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: relative;
  z-index: 50;
}
.site-subheader-logo img { height: 36px; }
.site-subheader-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.site-subheader-links a {
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  transition: all .15s;
  letter-spacing: .05em;
}
.site-subheader-links a:hover { color: #fff; background: rgba(255,255,255,.15); }
.site-subheader-links a.active { background: var(--orange); color: #fff; }
.site-subheader-links .nav-login {
  background: rgba(255,255,255,.15);
  color: #fff;
  margin-left: 6px;
  border: 1px solid rgba(255,255,255,.3);
}
.site-subheader-links .nav-login:hover { background: rgba(255,255,255,.25); }

/* ── Hero ─────────────────────────────────────────────────────── */
.site-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 48px;
  overflow: hidden;
}
.site-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.site-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1;
}
.site-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}
.site-hero-content h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.site-hero-content p {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 28px;
  opacity: .9;
}
.btn-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  border: none;
  transition: background .15s;
  font-family: inherit;
}
.btn-site-blue { background: var(--blue); color: #fff; }
.btn-site-blue:hover { background: var(--blue2); color: #fff; }
.btn-site-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-site-outline:hover { background: rgba(255,255,255,.15); }

/* ── Culture / Experience Section ───────────────────────────── */
.culture-section {
  padding: 80px 40px;
  background: #fff;
  overflow: hidden;
}
.culture-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.culture-left { position: relative; }
.culture-bg {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  opacity: .35;
  pointer-events: none;
}
.culture-title {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 64px;
  line-height: 1.2;
}
.culture-blocks { display: flex; flex-direction: column; gap: 48px; }
.culture-block { display: flex; align-items: flex-start; gap: 20px; }
.culture-icon {
  flex-shrink: 0;
  background: var(--blue);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.culture-icon img { width: 40px; }
.culture-block h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 6px; }
.culture-block p { font-size: 1rem; color: #444; line-height: 1.7; }
.culture-images { display: flex; flex-direction: column; gap: 24px; }
.culture-images img {
  width: 100%;
  aspect-ratio: 1.92;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* ── Destinations Section ───────────────────────────────────── */
.destinations-section {
  background: var(--blue);
  color: #fff;
  padding: 64px 40px 0;
  overflow: hidden;
}
.destinations-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.destinations-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.destinations-inner .sub { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 56px; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
}
.dest-card {
  background: #fff;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  max-width: 268px;
  margin: 0 auto;
  width: 100%;
}
.dest-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.dest-card-label {
  background: var(--orange);
  color: #fff;
  padding: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.dest-bg1 {
  position: absolute;
  top: 0; right: 0;
  transform: translate(50%, -50%);
  width: 160px;
  pointer-events: none;
}
.dest-bg2 {
  position: absolute;
  left: -30px;
  bottom: 0;
  transform: translateY(90%);
  width: 160px;
  pointer-events: none;
}

/* ── Packages Section ───────────────────────────────────────── */
.packages-section {
  background: var(--blue);
  padding-bottom: 0;
  overflow: hidden;
}
.packages-title {
  text-align: center;
  padding: 80px 40px 64px;
  color: #fff;
}
.packages-title h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
}
.packages-content {
  background: #fff;
  padding: 0 40px 40px;
  position: relative;
}
.packages-content::before {
  content: '';
  display: block;
  height: 100px;
  background: var(--blue);
}
.pkg-grid {
  max-width: 1200px;
  margin: -60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  position: relative;
  z-index: 2;
}
.pkg-explore {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}

/* Trip card */
.trip-card {
  background: #f8fafc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.trip-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.13); }
.trip-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.trip-card-body {
  background: var(--blue);
  color: #fff;
  padding: 20px 24px;
  flex: 1;
}
.trip-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}
.trip-card-title::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 100%;
  height: 5px;
  background: var(--orange);
  border-radius: 3px;
}
.trip-card-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 600;
  margin-top: 8px;
}

/* ── About Section ──────────────────────────────────────────── */
.about-section {
  background: var(--orange);
  color: #fff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.about-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.about-title { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 700; margin-bottom: 56px; }
.about-blocks { display: flex; flex-direction: column; gap: 48px; }
.about-block {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about-block.reverse { flex-direction: row-reverse; }
.about-block-text { flex: 1; }
.about-block-text h4 { font-size: 1.875rem; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.about-block-text p { font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.8; }
.about-block img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.about-bg {
  position: absolute;
  top: 20px; left: 25%;
  width: 180px;
  opacity: .2;
  pointer-events: none;
}

/* ── Testimonial Section ────────────────────────────────────── */
.testimonial-section {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: var(--orange);
  z-index: 0;
}
.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  position: relative;
  width: 250px;
  margin: 0 auto 40px;
}
.testimonial-avatar img.avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.testimonial-quotes {
  position: absolute;
  top: -20px; right: -20px;
  display: flex;
  gap: 4px;
}
.testimonial-quotes img { width: 51px; }
.testimonial-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}
.testimonial-desc {
  font-size: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  color: var(--blue);
  line-height: 1.8;
}
.testimonial-bg-img {
  position: absolute;
  bottom: -32px; left: 40px;
  opacity: .3;
  pointer-events: none;
  width: 200px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--blue);
  color: #fff;
  padding-top: 80px;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 40px;
}
.site-footer h5 { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; }
.site-footer p  { font-size: 1.125rem; line-height: 1.8; opacity: .85; }
.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 60px;
  padding: 32px 40px;
}
.site-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a { color: rgba(255,255,255,.7); font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 16px;
  list-style: none;
}
.footer-social img { width: 28px; opacity: .75; transition: opacity .15s; }
.footer-social img:hover { opacity: 1; }

/* ── About Page ─────────────────────────────────────────────── */
.page-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  display: inline-block;
}
.page-heading-line {
  display: block;
  width: 85%;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 6px;
}
.about-page-grid {
  display: grid;
  grid-template-columns: .4fr .6fr;
  gap: 48px;
  align-items: start;
}
.about-page-text { position: relative; }
.about-page-text p { line-height: 1.9; font-size: 15px; margin-bottom: 16px; }
.about-magnify {
  position: absolute;
  top: 0; right: 0;
  width: 160px;
  opacity: .2;
  pointer-events: none;
}
.about-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 64px;
}
.about-icon-item {}
.about-icon-circle {
  background: var(--blue);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.about-icon-circle svg { width: 40px; height: 40px; }
.about-icon-label { color: var(--orange); font-weight: 700; font-size: 14px; line-height: 1.5; }

/* ── Past Trips Page ────────────────────────────────────────── */
.past-trips-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.past-trips-deco {
  position: absolute;
  pointer-events: none;
}
.past-trips-deco.top-right { top: 0; right: 0; width: 340px; }
.past-trips-deco.bot-left  { bottom: 0; left: 0; width: 340px; transform: translateY(30%); }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--blue);
}
.contact-form-group { margin-bottom: 24px; }
.contact-form-group label { display: block; font-size: 13px; margin-bottom: 6px; }
.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  color: #222;
  transition: box-shadow .15s;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus { box-shadow: 0 0 0 3px rgba(241,92,45,.2); }
.contact-form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 64px;
  max-width: 860px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  background: var(--blue);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 30px; height: 30px; }
.contact-social { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.contact-social-icon {
  background: var(--blue);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-flash {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.contact-flash.success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.contact-flash.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Package Detail Page ────────────────────────────────────── */
.pkg-detail-section {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.pkg-detail-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.pkg-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.pkg-detail-title-bar {
  width: 80px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 28px;
}
.pkg-detail-desc { font-size: 1rem; line-height: 1.9; color: #333; }
.pkg-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
}
.pkg-detail-back:hover { color: var(--blue2); }

/* ── Scroll animations ──────────────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-fade-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-fade-up.in-view,
.anim-fade-right.in-view {
  opacity: 1;
  transform: none;
}

/* ── Prevent horizontal overflow from decorative absolutes ──── */
body.site-body { overflow-x: hidden; }
.destinations-section,
.testimonial-section,
.about-section,
.culture-section { overflow-x: hidden; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { padding: 14px 20px; }
  .site-subheader { padding: 0 20px; }
  .site-nav-links { display: none; }
  .site-nav-hamburger { display: block; }
  .site-subheader-links { display: none; }
  .culture-inner { grid-template-columns: 1fr; gap: 32px; }
  .culture-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .culture-images img { aspect-ratio: 1; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .about-page-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .about-block { flex-direction: column !important; align-items: center; }
  .about-block img { width: 220px; height: 220px; }
  .about-block-text h4 { font-size: 1.5rem; }
  .testimonial-avatar { width: 200px; }
  .testimonial-avatar img.avatar { width: 200px; height: 200px; }
  /* packages overlap adjustment */
  .pkg-grid { margin-top: -40px; }
}

@media (max-width: 640px) {
  /* fix iOS Safari address-bar eating into 100vh */
  .site-hero { height: 100svh; min-height: 500px; padding: 0 20px; }
  .culture-section, .destinations-section, .about-section,
  .testimonial-section, .page-section, .past-trips-section,
  .contact-section, .pkg-detail-section { padding-left: 20px; padding-right: 20px; }
  .culture-images { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid  { grid-template-columns: 1fr; margin-top: -20px; }
  .about-icons { grid-template-columns: 1fr; gap: 32px; }
  .about-block img { width: 160px; height: 160px; }
  .about-block-text h4 { font-size: 1.25rem; }
  .testimonial-avatar { width: 160px; }
  .testimonial-avatar img.avatar { width: 160px; height: 160px; }
  .testimonial-desc { font-size: 1rem; }
  .testimonial-bg-img { display: none; }
  .dest-bg1, .dest-bg2 { display: none; }
  .site-footer-inner { padding: 0 20px; }
  .site-footer-bottom { padding: 24px 20px; }
  .site-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .packages-content { padding-left: 20px; padding-right: 20px; }
  .packages-content::before { height: 60px; }
  .packages-title { padding-top: 48px; }
}
