/* =========================
   style.css (CLEAN LIGHT THEME)
   ========================= */

/* Reset-ish */
* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #0b1220;
  background: #ffffff;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; padding: 0; margin: 0; }

:root{
  --text: #0b1220;
  --muted: rgba(11,18,32,.72);
  --line: rgba(11,18,32,.12);
  --card: rgba(255,255,255,.88);
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --radius: 18px;
  --radius-lg: 26px;
  --accent: #0077ff;
  --accent-2: #18c37e;
  --max: 1120px;
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* =========================
   Navbar (logo left, links right)
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

/* UPDATED NAV LOGO SIZE (400x120) */
.nav__logo{
  width: 400px;
  height: 120px;
  border-radius: 12px;
  object-fit: contain;          /* eeps full logo visible */
  border: 1px solid var(--line);
  background: transparent;      /* ooks cleaner for big logo */
  padding: 6px;                 /* optional for spacing */
}

/* Make it responsive (important) */
@media (max-width: 980px){
  .nav__logo{
    width: 280px;
    height: 84px;
  }
}

@media (max-width: 720px){
  .nav__logo{
    width: 220px;
    height: 66px;
  }

  .nav{
    padding: 10px 0;            /* better spacing on mobile */
  }
}


.nav__links{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav__links a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.nav__links a i{ color: rgba(11,18,32,.70); }

.nav__links a:hover{
  transform: translateY(-1px);
  background: rgba(11,18,32,.04);
  border-color: var(--line);
}

/* CTA link */
.nav__cta{
  border-color: rgba(0,119,255,.25) !important;
  background: linear-gradient(135deg, rgba(0,119,255,.14), rgba(24,195,126,.08));
}

/* =========================
   Hero
   ========================= */
.hero{
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 18% 30%, rgba(0,119,255,.22), transparent 60%),
    radial-gradient(900px 540px at 80% 20%, rgba(24,195,126,.16), transparent 55%),
    linear-gradient(to bottom, rgba(255,255,255,.12), rgba(255,255,255,.92));
}

.hero__content{
  position: relative;
  padding: 64px 0 54px;
}

.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: fit-content;
  font-weight: 800;
}
.hero__badge i{ color: var(--accent-2); }

.hero h1{
  margin: 16px 0 10px;
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  max-width: 22ch;
  text-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.hero p{
  margin: 0 0 20px;
  max-width: 62ch;
  color: rgba(11,18,32,.78);
  font-size: 1.05rem;
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  font-weight: 900;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.95);
  border-color: rgba(11,18,32,.18);
}
.btn--primary{
  border-color: rgba(0,119,255,.30);
  background: linear-gradient(135deg, rgba(0,119,255,.18), rgba(24,195,126,.10));
}
.btn--ghost{
  background: rgba(255,255,255,.70);
}
.btn--full{ width: 100%; }

.hero__chips{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  color: rgba(11,18,32,.86);
  font-weight: 800;
}

/* =========================
   Section headings
   ========================= */
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.2px;
}
.muted{ color: var(--muted); margin: 8px 0 0; }

.section-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  font-weight: 900;
}
.section-link:hover{ background: rgba(255,255,255,.96); }

/* =========================
   Slider
   ========================= */
.slider-section{
  padding: 54px 0 40px;
  background: radial-gradient(900px 600px at 20% 0%, rgba(0,119,255,.08), transparent 55%);
}
/*
.slider{
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
}*/
/*
.slider__track{
  display: flex;
  gap: 16px;
  padding: 16px;
  width: max-content;
  animation: slide 22s linear infinite;
}*/
.slider:hover .slider__track{ animation-play-state: paused; }
/*
.slide{
  width: min(420px, 86vw);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.92);
}*/
.slide img{
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.slide__caption{ padding: 14px 14px 16px; }
.slide__caption h3{ margin: 0 0 6px; }
.slide__caption p{ margin: 0 0 10px; color: rgba(11,18,32,.70); }

.tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  font-weight: 900;
  font-size: .86rem;
}

@keyframes slide{
  0% { transform: translateX(0); }
  100% { transform: translateX(-52%); }
}

.slider-notes{ padding-top: 14px; }
.note{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  color: rgba(11,18,32,.72);
  font-weight: 800;
}

/* =========================
   Why Us
   ========================= */
.why{
  padding: 54px 0;
  background: radial-gradient(900px 600px at 85% 30%, rgba(24,195,126,.08), transparent 55%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.card{
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow);
}
.card__icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: linear-gradient(135deg, rgba(0,119,255,.14), rgba(24,195,126,.10));
  margin-bottom: 12px;
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0; color: rgba(11,18,32,.72); }

/* =========================
   Contact
   ========================= */
.contact{
  padding: 54px 0;
  background: radial-gradient(1100px 700px at 30% 10%, rgba(0,119,255,.08), transparent 58%);
}

.contact__wrap{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.checklist{
  margin-top: 14px;
  display: grid;
  gap: 10px;
  color: rgba(11,18,32,.76);
  font-weight: 900;
}
.checklist i{ color: var(--accent-2); }

.contact__form{
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow);
}

.field{ display: grid; gap: 8px; margin-bottom: 12px; }
label{ font-weight: 900; font-size: .92rem; }

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.98);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(0,119,255,.45);
  box-shadow: 0 0 0 4px rgba(0,119,255,.14);
}

.fineprint{
  margin: 12px 0 0;
  color: rgba(11,18,32,.62);
  font-size: .9rem;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}

/* =========================
   Footer
   ========================= */
.footer{
  border-top: 1px solid var(--line);
  padding: 44px 0 20px;
  background: rgba(11,18,32,.03);
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 18px;
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 1000;
}
.footer__logo i{ color: var(--accent); }

.footer__col h3{ margin: 0 0 10px; }
.footer__col li{ margin: 10px 0; color: rgba(11,18,32,.72); font-weight: 900; }

.social{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social a{
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.90);
}

.footer__bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(11,18,32,.70);
  font-weight: 900;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1.2fr 1fr; }
  .contact__wrap{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav{ grid-template-columns: 1fr; }
  .nav__links{ justify-content: flex-start; }
  .section-head{ flex-direction: column; align-items: flex-start; }
  .slide img{ height: 240px; }
}

@media (prefers-reduced-motion: reduce){
  .slider__track{ animation: none; }
  .btn, .nav__links a{ transition: none; }
}


/* =========================
   Add/Replace your slider CSS in style.css with this SNAP carousel CSS
   (No JS, snaps like a real carousel)
   ========================= */

.carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 12px);
  gap: 16px;

  overflow-x: auto;
  padding: 16px;

  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);

  /* SNAP magic */
  scroll-snap-type: x mandatory;
  scroll-padding: 16px;

  /* Smooth + native momentum */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /* Clean scrollbar (still accessible) */
  scrollbar-width: thin;
}

.carousel::-webkit-scrollbar{ height: 10px; }
.carousel::-webkit-scrollbar-track{ background: rgba(11,18,32,.05); border-radius: 999px; }
.carousel::-webkit-scrollbar-thumb{ background: rgba(11,18,32,.18); border-radius: 999px; }

.carousel__item{
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.92);
  min-width: 0; /* prevents overflow issues */
  position: relative;
}

.carousel__item img{
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.carousel__caption{
  padding: 14px 14px 16px;
}

.carousel__caption h3{
  margin: 0 0 6px;
}

.carousel__caption p{
  margin: 0 0 10px;
  color: rgba(11,18,32,.70);
}

/* Dots */
.dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 0;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(11,18,32,.12);
  transition: transform .15s ease, background .15s ease;
}

.dot:hover{
  transform: scale(1.12);
  background: rgba(0,119,255,.28);
}

/* Small meta hint inside carousel */
.carousel__meta{
  grid-column: 1 / -1;
  align-self: end;
  justify-self: start;
  padding-left: 6px;
}

/* Responsive snapping sizes */
@media (max-width: 980px){
  .carousel{
    grid-auto-columns: calc(70% - 12px);
  }
}

@media (max-width: 720px){
  .carousel{
    grid-auto-columns: 88%;
  }
  .carousel__item img{
    height: 240px;
  }
}


/* auto play */
/* =========================
   AUTOPLAY CAROUSEL (CSS only)
   ========================= */

.carousel{
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
}

.carousel__track{
  display: flex;
  gap: 16px;
  padding: 16px;
  width: max-content;

  /* ✅ Animation works because we animate transform */
  animation: carouselMove 26s linear infinite;
}

.carousel:hover .carousel__track{
  animation-play-state: paused;
}

.carousel__slide{
  width: min(420px, 86vw);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.92);
}

.carousel__slide img{
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.carousel__caption{
  padding: 14px 14px 16px;
}

.carousel__caption h3{
  margin: 0 0 6px;
}

.carousel__caption p{
  margin: 0 0 10px;
  color: rgba(11,18,32,.70);
}

/* Move by 4 slides worth (because we duplicated 4 slides after) */
@keyframes carouselMove{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 980px){
  .carousel__slide{ width: 70vw; }
}
@media (max-width: 720px){
  .carousel__slide img{ height: 240px; }
}

/* =========================
   TOUR PACKAGES
   ========================= */

.tour-packages{
  padding: 70px 0;
  background: #ffffff;
}

.packages-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.package-card{
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11,18,32,.08);
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.package-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.package-card img{
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.package-content{
  padding: 20px;
}

.package-content h3{
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.package-content p{
  color: rgba(11,18,32,.70);
  font-size: .95rem;
  margin-bottom: 16px;
}

.package-meta{
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  margin-bottom: 18px;
  color: rgba(11,18,32,.70);
}

.package-meta i{
  margin-right: 6px;
  color: #0077ff;
}

.package-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price{
  font-weight: 700;
  font-size: 1.1rem;
  color: #0077ff;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 992px){
  .packages-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .packages-grid{
    grid-template-columns: 1fr;
  }

  .package-meta{
    flex-direction: column;
    gap: 6px;
  }
}
