/*----------------------------------------------------- Global Styles-------------------------------------------------------- */
:root {
  --bg: #f7f9f4;
  --surface: #ffffff;
  --ink: #1b1d1f;
  --muted: #6a727b;
  --primary: #4ea93b;
  --primary-dark: #2f7d24;
  --accent: #f6b240;
  --stroke: #e5eadf;
  --radius: 18px;
  --shadow: 0 14px 30px rgba(27, 29, 31, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  /*user-select: none;*/
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/*----------------------------------------------------- Navigation-------------------------------------------------------- */

.topbar {
  background: #e8f3df;
  color: #2f5f2a;
  text-align: center;
  font-size: 0.9rem;
  padding: 10px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  background: rgba(247, 249, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stroke);
  padding: 15px 0px;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: clamp(100px, 20vw, 90px);
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: #39434c;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.submenu-toggle {
  display: none;
}

.nav-menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: #fff;
  color: #304334;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
}

.nav-menu-toggle:hover {
  background: #edf5e9;
}

.nav-links > li > a:hover {
  color: var(--primary-dark);
}

.has-dropdown > a::after {
  content: "\25BE";
  font-size: 0.62rem;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #3f464d;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #edf5e9;
  color: var(--primary-dark);
}

.has-submenu > a::after {
  content: "\203A";
  float: right;
  color: #7a838b;
}

.dropdown-submenu {
  top: 0;
  left: calc(100% + 8px);
}

.nav-links > li:hover > .dropdown-menu,
.nav-links > li:focus-within > .dropdown-menu,
.dropdown-menu li:hover > .dropdown-submenu,
.dropdown-menu li:focus-within > .dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.btn {
  border: 0;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-solid {
  color: #fff;
  background: var(--primary);
}

.btn-solid:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  color: #2f7d24;
  background: #dff0d7;
}

.btn-ghost.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

/*----------------------------------------------------- Home Page-------------------------------------------------------- */

main {
  display: grid;
  gap: 82px;
  padding: 30px 0 35px;
}

.hero {
  position: relative;
  width: min(1480px, 95%);
  margin: auto;
}

.hero-carousel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 540px;
  box-shadow: var(--shadow);
}

.slides,
.slide {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  padding: 42px;
  display: grid;
  align-content: end;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)), var(--bg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  color: #fff;
  max-width: 560px;
}

.eyebrow,
.section-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.hero .eyebrow {
  color: #cef2c7;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-top: 9px;
}

.hero-content p {
  margin-top: 14px;
  color: #f2f6f0;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.hero-controls {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(26, 29, 25, 0.55);
  color: #fff;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.dots button.active {
  background: #fff;
}

.search-strip {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: -36px auto 0;
  width: min(1080px, 92%);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  padding: 14px;
  position: relative;
  z-index: 4;
}

.search-strip label {
  font-size: 0.78rem;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.search-strip input {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 9px 10px;
  font: inherit;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: center;
}

.about h2,
.centered {
  margin-top: 8px;
}

.about h2,
h2.centered {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.about p {
  margin: 14px 0 18px;
  color: var(--muted);
}

.image-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.image-collage img {
  border-radius: 14px;
  object-fit: cover;
  min-height: 145px;
}


.centered {
  text-align: center;
}

.spot-grid,
.tour-grid,
.why-grid,
.blog-grid,
.visa-grid {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.spot-grid {
  grid-template-columns: repeat(3, 1fr);
}

.spot-grid article {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 174px;
}

.spot-grid article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-grid article h3 {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.cta-card {
  background-image: linear-gradient(rgba(218, 19, 19, 0.5), rgba(2, 106, 68, 0.5)), url("../images/all-destinations.jpg");
  /*background: #eef7e9;*/
  border: 1px solid #cfe5bf;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 14px;
  gap: 10px;
  background-size: cover;
}

.tour-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tour-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tour-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.tour-card div {
  padding: 12px;
  display: grid;
  gap: 4px;
}

.tour-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.tour-card span {
  color: var(--primary-dark);
  font-weight: 800;
}

.safety {
  background: #eef4eb;
  padding: 60px 0;
}

.progress-list {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.progress-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  align-items: center;
}

.progress-list i {
  grid-column: 1 / -1;
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) var(--w), #dae6d4 var(--w));
}

.safety-art img {
  border-radius: 18px;
  min-height: 330px;
  object-fit: cover;
}

.hidden {
  display: none;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-grid article {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 17px;
}

.why-grid p {
  margin-top: 6px;
  color: var(--muted);
}

.attractions {
  background: #f7f2e8;
  padding: 60px 0;
}

.filter-row {
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid #d9ddcf;
  background: #fff;
  color: #354036;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.chip.active {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.activities .activity-wrap {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 14px;
}

.activity-tabs {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 13px;
  padding: 8px;
  display: grid;
  gap: 7px;
}

.activity-tabs button {
  border: 0;
  border-radius: 10px;
  padding: 10px;
  background: #f4f6f2;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.activity-tabs button.active {
  background: var(--accent);
  color: #39280a;
}

.activity-panel {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 13px;
  min-height: 240px;
  display: grid;
  grid-template-columns: 1fr 220px;
  overflow: hidden;
}

.activity-panel .info {
  padding: 18px;
}

.activity-panel p {
  color: var(--muted);
  margin: 8px 0 12px;
}

.activity-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.activity-panel li::before {
  content: "\2713";
  color: var(--primary-dark);
  margin-right: 7px;
}

.activity-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.deal-grid article {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 184px;
}

.deal-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-grid span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(28, 35, 23, 0.76);
  color: #fff;
  padding: 6px 9px;
  border-radius: 8px;
  font-size: 0.89rem;
}

.testimonials {
  background: #f0ece8;
  padding: 64px 0;
}

.testimonial-slider {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

#testimonialCard {
  background: #fff;
  border: 1px solid #e5ded8;
  border-radius: 14px;
  padding: 20px;
}

#testimonialCard p {
  color: #4b4e53;
}

#testimonialCard strong {
  display: block;
  margin-top: 10px;
}

.blog-grid,
.visa-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog article,
.visa article {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
}

.blog img,
.visa img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog h3,
.visa h3 {
  padding: 12px;
}

.newsletter {
  background: linear-gradient(90deg, #ecf4df, #dcefd0);
  padding: 34px 0;
}

.newsletter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input {
  min-width: 280px;
  border: 1px solid #c6d7ba;
  border-radius: 10px;
  padding: 11px;
  font: inherit;
}

/*----------------------------------------------------- Footer-------------------------------------------------------- */
.footer {
  background: #172022;
  color: #d8dddb;
  padding: 48px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0px 32px;
}

.footer-logo {
  width: 132px;
  filter: brightness(1.15);
}

.footer h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1rem;
}

.footer a,
.footer p {
  display: block;
  color: #b6bfba;
  margin-top: 8px;
}

/*----------------------------------------------------- About Page-------------------------------------------------------- */

.about-hero {
  min-height: 430px;
  background-image: linear-gradient(180deg, rgba(9, 20, 30, 0.22), rgba(9, 20, 30, 0.56)), url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.about-hero-overlay {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.about-hero-content {
  text-align: center;
  color: #fff;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.about-breadcrumb {
  margin-bottom: 12px;
  color: #d9ebd4;
  font-weight: 700;
}

.about-breadcrumb span {
  margin: 0 10px;
}

.about-intro {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
  align-items: start;
}

.about-intro h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  max-width: 590px;
}

.about-intro-copy > p {
  margin-top: 16px;
  color: var(--muted);
  max-width: 680px;
}

.about-feature-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-feature-grid article {
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--stroke);
  background: #f1f6ec;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.about-feature-grid article:nth-child(2n) {
  background: #f8f2e8;
}

.about-feature-grid h3 {
  font-size: 1.05rem;
}

.about-feature-grid p {
  margin-top: 3px;
  color: #647067;
  font-size: 0.9rem;
}

.about-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d8ebcf;
  color: #2f7d24;
  display: inline-grid;
  place-items: center;
  font-size: 0.96rem;
  flex-shrink: 0;
}

.about-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-intro-side {
  display: grid;
  justify-content: end;
}

.about-exp {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 2rem;
  font-family: "Sora", sans-serif;
  line-height: 1;
  width: fit-content;
}

.about-exp small {
  display: block;
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  line-height: 1.2;
}

.about-stats {
  margin-top: 28px;
  grid-column: 1 / -1;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-stats article {
  text-align: center;
}

.about-stats h3 {
  font-size: 1.75rem;
}

.about-stats p {
  color: var(--muted);
}

.about-rating {
  grid-column: 1 / -1;
  margin-top: 16px;
  text-align: center;
  color: #334034;
  font-weight: 600;
}

.about-rating span {
  color: var(--primary-dark);
}

.about-why {
  margin-top: 72px;
}

.about-why-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-why-grid article {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 20px 18px;
}

.about-why-grid p {
  margin-top: 8px;
  color: var(--muted);
}

.about-trip-strip {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 14px;
}

.about-offer-card {
  border-radius: 14px;
  background: linear-gradient(130deg, #2168f5, #59a8ff);
  color: #fff;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.about-offer-card h3 {
  font-size: 2.1rem;
}

.about-offer-card .btn {
  width: fit-content;
  margin-top: 6px;
  background: #fff;
  color: #1e4ca9;
}

.about-trip-strip > img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.about-trip-card {
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.about-trip-stars {
  color: #f4a702;
  font-weight: 700;
}

.about-trip-stars span {
  color: var(--muted);
}

.about-trip-meta {
  color: #5d686f;
}

.about-trip-card div {
  margin-top: 7px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-trip-card b {
  color: var(--primary-dark);
}

.about-activities {
  margin-top: 74px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  min-height: 500px;
}

.about-activities-image {
  background-image: url("https://images.unsplash.com/photo-1513026705753-bc3fffca8bf4?auto=format&fit=crop&w=1300&q=80");
  background-size: cover;
  background-position: center;
}

.about-activities-content {
  background: #f0ebd9;
  padding: 58px min(5vw, 52px);
}

.about-activities-content h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.about-activity-columns {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 20px;
}

.about-activity-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.about-activity-columns li {
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d8d4c2;
  font-weight: 700;
}

.about-activity-columns li.active {
  background: #f7b63f;
  color: #422d04;
  border-color: transparent;
}

.about-activity-columns h3 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.about-activity-columns p {
  color: #5f635d;
}

.about-list-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.about-list-grid p::before {
  content: "\2022";
  color: var(--primary);
  margin-right: 7px;
}

/*----------------------------------------------------- Contact Page-------------------------------------------------------- */

.contact-page-main {
  gap: 0;
  padding: 0 0 96px;
}

.contact-hero {
  min-height: 430px;
  background-image: linear-gradient(180deg, rgba(9, 20, 30, 0.25), rgba(9, 20, 30, 0.6)), url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.contact-hero-overlay {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.contact-hero-content {
  text-align: center;
  color: #fff;
}

.contact-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.contact-breadcrumb {
  margin-top: 10px;
  color: #f5f6f7;
  font-weight: 700;
}

.contact-breadcrumb span {
  color: #66ba52;
}

.contact-breadcrumb i {
  margin: 0 8px;
}

.contact-section {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 30px;
  align-items: start;
}

.contact-info-stack {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-info-card {
  position: relative;
  border: 1px solid #e4e6e3;
  border-radius: 16px;
  background: #fff;
  padding: 28px 26px 24px;
}

.contact-info-card h3 {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--bg);
  padding: 0 14px;
  color: #757d76;
  border: 1px solid #e4e6e3;
  border-radius: 8px;
  font-weight: 600;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-info-row p {
  color: #1e2327;
  font-size: 1.05rem;
  line-height: 1.45;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #62b445;
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.35rem;
}

.contact-form-wrap {
  border-radius: 16px;
  background: #efefe4;
  padding: 56px 64px;
}

.contact-form-wrap h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  color: #666e67;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e2e5df;
  background: #fff;
  border-radius: 2px;
  padding: 14px 20px;
  font: inherit;
  color: #2f3336;
}

.contact-form input::placeholder,
.contact-form select,
.contact-form textarea::placeholder {
  color: #a6aca6;
}

.required-mark {
  color: #e11d48;
}

.contact-form textarea {
  resize: vertical;
  min-height: 206px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-submit {
  margin-top: 8px;
  width: fit-content;
  min-width: 228px;
  font-size: 1.08rem;
  padding: 12px 26px;
}

/*----------------------------------------------------- Package Sidebar Page-------------------------------------------------------- */

.package-page-main {
  gap: 0;
  padding: 0 0 80px;
}

.kashmir-listing-main {
  gap: 0;
  padding: 0 0 80px;
}

.kashmir-listing-section {
  margin-top: 70px;
}

.kashmir-listing-top h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.kashmir-listing-top p {
  margin-top: 8px;
  color: #6d767d;
}

.kashmir-show-more-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.kashmir-show-more-wrap .btn {
  min-width: 180px;
}

.package-hero {
  min-height: 340px;
  background-image: linear-gradient(180deg, rgba(8, 17, 28, 0.32), rgba(8, 17, 28, 0.62)), url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.package-hero-overlay {
  min-height: 340px;
  display: grid;
  place-items: center;
}

.package-hero-content {
  text-align: center;
  color: #fff;
}

.package-hero-content h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.package-breadcrumb {
  margin-top: 14px;
  font-weight: 700;
}

.package-breadcrumb span {
  color: #63ba50;
}

.package-section {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items: start;
}

.package-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.package-toolbar p {
  color: #737a80;
}

.package-toolbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.package-toolbar select {
  border: 1px solid #98c88e;
  background: #f7faf3;
  color: #5b646b;
  border-radius: 999px;
  padding: 10px 44px 10px 18px;
  font: inherit;
}

.package-toolbar-right button {
  border: 0;
  background: transparent;
  color: #8e969e;
  font-size: 0.95rem;
  cursor: pointer;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.package-card {
  background: #fff;
  border: 1px solid #e4e8e2;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.package-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.package-image-wrap img {
  width: 100%;
  height: 252px;
  object-fit: cover;
}

.package-days {
  position: absolute;
  top: 9px;
  left: 0;
  background: #111;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 6px 10px;
}

.package-tag {
  position: absolute;
  left: 0;
  top: 36px;
  background: #f8fff3;
  border: 1px solid #cce7c2;
  color: #424b50;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 10px;
}

.package-tag i {
  color: #54aa3e;
}

.package-card h3 {
  margin-top: 16px;
  font-size: 2.1rem;
  line-height: 1.35;
}

.package-route {
  margin-top: 12px;
  color: #9da5ac;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.package-route i {
  color: #bcc2c7;
}

.package-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ecefea;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.package-bottom small {
  color: #939ca4;
  font-size: 0.72rem;
  display: block;
}

.package-bottom p {
  margin: 2px 0;
  font-weight: 700;
}

.package-bottom b {
  color: #4ea93b;
  font-size: 1.95rem;
}

.package-bottom span {
  color: #9ea6ad;
  text-decoration: line-through;
  font-weight: 600;
}

.package-bottom .btn {
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.package-sidebar {
  display: grid;
  gap: 18px;
}

.package-filter-box {
  background: #fff;
  border: 1px solid #e5e9e3;
  border-radius: 10px;
  padding: 22px;
}

.package-filter-box h3 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.range-line {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #57b044 48%, #50734a 48%);
  position: relative;
  margin: 12px 0 14px;
}

.price-range {
  width: 100%;
  accent-color: #57b044;
  margin: 8px 0 10px;
}

.range-line span {
  position: absolute;
  left: 48%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #5bae44;
  background: #fff;
}

.range-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-values small {
  color: #7c848c;
}

.range-values button {
  border: 0;
  background: transparent;
  color: #5c636a;
  font-weight: 700;
  cursor: pointer;
}

.package-filter-box label {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: #2d343a;
  margin-top: 10px;
  font-size: 0.95rem;
}

.package-filter-box input[type="checkbox"] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #8f989f;
  border-radius: 3px;
  margin: 0;
  position: relative;
  flex-shrink: 0;
}

.package-filter-box input[type="checkbox"]:checked {
  border-color: #55ab41;
  background: #55ab41;
}

.package-filter-box input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.package-filter-box label.active {
  color: #55ab41;
}

.package-filter-box label span {
  border: 1px solid #c8ced3;
  color: #5a636c;
  border-radius: 999px;
  font-size: 0.72rem;
  min-width: 28px;
  text-align: center;
  padding: 1px 5px;
}

.no-package-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 26px 16px;
  color: #66707a;
  background: #fff;
  border: 1px dashed #d3ddd0;
  border-radius: 10px;
}

/*----------------------------------------------------- Package Detail Page-------------------------------------------------------- */

.detail-page-main {
  gap: 0;
  padding: 0 0 80px;
}

.detail-hero {
  min-height: 330px;
  background-image: linear-gradient(180deg, rgba(8, 17, 28, 0.32), rgba(8, 17, 28, 0.62)), url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.detail-hero-overlay {
  min-height: 330px;
  display: grid;
  place-items: center;
}

.detail-hero-content {
  text-align: center;
  color: #fff;
}

.detail-hero-content h1 {
  font-size: clamp(2rem, 4.1vw, 3.5rem);
}

.detail-breadcrumb {
  margin-top: 10px;
  font-weight: 700;
}

.detail-breadcrumb span {
  color: #62bb4d;
}

.detail-top-gallery {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e4e9e2;
  padding: 10px;
}

.detail-main-photo {
  width: 100%;
  height: 385px;
  border-radius: 8px;
  object-fit: cover;
}

.detail-side-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.detail-side-gallery img,
.detail-gallery-cta {
  width: 100%;
  height: 188px;
  border-radius: 8px;
  object-fit: cover;
}

.detail-gallery-cta {
  position: relative;
  overflow: hidden;
}

.detail-gallery-cta img {
  height: 100%;
}

.detail-gallery-cta span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}

.detail-content-wrap {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 24px;
  align-items: start;
}

.detail-content-main h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  max-width: 760px;
}

.detail-price {
  margin-top: 14px;
  color: #3e464d;
  font-size: 1rem;
}

.detail-price b {
  color: #56af42;
  font-size: 2.1rem;
}

.detail-meta {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #434b52;
  font-weight: 600;
}

.detail-meta i {
  color: #55ac42;
  margin-right: 4px;
}

.detail-content-main > p {
  margin-top: 16px;
  color: #626a71;
}

.detail-content-main h3 {
  margin-top: 80px;
  font-size: 2rem;
}

.detail-check-columns {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #5d666d;
}

.detail-check-list li {
  position: relative;
  padding-left: 20px;
}

.detail-check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 700;
}

.detail-check-list.success li::before {
  content: "\2713";
  color: #5bb349;
}

.detail-check-list.danger li::before {
  content: "\2715";
  color: #eb3939;
}

.detail-highlight-list {
  margin-top: 12px;
}

.detail-itinerary {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.detail-day {
  border: 1px solid #e3e8e1;
  border-radius: 4px;
  background: #fff;
}

.detail-day > header {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
}

.detail-day > header span {
  background: #58af45;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 12px 8px;
}

.detail-day > header p {
  padding: 0 14px;
  font-weight: 700;
}

.detail-day > header i {
  color: #7f8990;
  padding: 0 14px;
}

.detail-day-body {
  padding: 12px 14px 14px;
  color: #666d74;
  border-top: 1px solid #edf0ec;
}

.detail-day .detail-day-body {
  display: none;
}

.detail-day.open .detail-day-body {
  display: block;
}

.detail-day-body .detail-check-list {
  margin-top: 10px;
}

.detail-map {
  margin-top: 12px;
  border-radius: 4px;
  overflow: hidden;
}

.detail-map img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(0.9) contrast(1.1) brightness(0.65);
}

.detail-faq {
  margin-top: 12px;
  display: grid;
}

.detail-faq article {
  border-bottom: 1px solid #cfd6ce;
  padding: 14px 0;
}

.detail-faq header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
}

.detail-faq .faq-body {
  margin-top: 10px;
  color: #666f76;
}

.detail-faq article .faq-body {
  display: none;
}

.detail-faq article.open .faq-body {
  display: block;
}

.detail-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.detail-book-box {
  background: #ecefe5;
  border-radius: 6px;
  border: 1px solid #dde5d5;
  padding: 20px 16px 16px;
}

.detail-book-box h3 {
  text-align: center;
  font-size: 2rem;
}

.detail-book-box > p {
  margin-top: 6px;
  color: #6d757c;
  text-align: center;
  font-size: 0.86rem;
}

.detail-book-tabs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.detail-book-tabs button {
  border: 1px solid #d9e0d4;
  background: #fff;
  color: #4f575f;
  padding: 9px 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.detail-book-tabs button.active {
  background: #58af45;
  color: #fff;
  border-color: #58af45;
}

.detail-book-box form {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.detail-book-box label {
  color: #4e575e;
  font-size: 0.85rem;
  font-weight: 700;
}

.detail-book-box label span {
  color: #e03e3e;
}

.detail-book-box input,
.detail-book-box textarea {
  border: 1px solid #dfe5d9;
  background: #fff;
  border-radius: 2px;
  padding: 10px 11px;
  font: inherit;
  font-size: 0.82rem;
}

.detail-book-box textarea {
  resize: vertical;
  min-height: 98px;
}

.detail-submit {
  margin-top: 6px;
  width: 100%;
  border-radius: 2px;
}

.detail-inquiry-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #dce3d6;
}

.detail-inquiry-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.detail-inquiry-card div {
  background: #58af45;
  color: #fff;
  padding: 16px;
}

.detail-inquiry-card p {
  font-family: "Sora", sans-serif;
}

.detail-inquiry-card a {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 0;
  }

  .nav {
    min-height: auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0 2px;
    border-top: 1px solid var(--stroke);
  }

  .nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links > li > a {
    width: calc(100% - 40px);
    padding: 9px 0;
    font-size: 0.95rem;
  }

  .has-dropdown > a::after,
  .has-submenu > a::after {
    display: none;
  }

  .submenu-toggle {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--stroke);
    background: #fff;
    border-radius: 8px;
    color: #4f5c66;
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: 8px;
  }

  .submenu-toggle:hover {
    background: #edf5e9;
  }

  .nav-links > li > a,
  .dropdown-menu a {
    display: inline-flex;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-left: 12px;
    padding: 4px 0 4px 8px;
    border: 0;
    border-left: 2px solid var(--stroke);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    display: none;
  }

  .dropdown-submenu {
    left: auto;
    top: auto;
  }

  .mobile-open > .dropdown-menu {
    display: block;
  }

  .mobile-open > .submenu-toggle {
    transform: rotate(180deg);
  }

  .search-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .activities .activity-wrap,
  .activity-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .spot-grid,
  .tour-grid,
  .deal-grid,
  .blog-grid,
  .visa-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-wrap,
  .newsletter form {
    flex-direction: column;
    align-items: stretch;
  }

  .about-intro,
  .about-activity-columns,
  .about-activities {
    grid-template-columns: 1fr;
  }

  .about-intro-side {
    justify-content: start;
  }

  .about-trip-strip,
  .about-feature-grid,
  .about-stats,
  .about-why-grid,
  .about-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-activities {
    min-height: 0;
  }

  .about-activities-image {
    min-height: 320px;
  }

  .contact-section,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 40px min(5vw, 34px);
  }

  .contact-submit {
    min-width: 190px;
  }

  .package-section {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .detail-top-gallery,
  .detail-content-wrap {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .detail-check-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  main {
    gap: 58px;
  }

  .topbar {
    font-size: 0.8rem;
    padding: 8px;
  }

  .nav-links {
    gap: 8px 12px;
  }

  .nav-links > li > a {
    font-size: 0.9rem;
  }

  .hero {
    width: 92%;
  }

  .hero-carousel {
    min-height: 470px;
  }

  .slide {
    padding: 26px;
  }

  .search-strip {
    width: 100%;
    margin-top: 14px;
    grid-template-columns: 1fr;
  }

  .spot-grid,
  .tour-grid,
  .deal-grid,
  .blog-grid,
  .visa-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .testimonial-slider .carousel-btn {
    display: none;
  }

  .about-hero,
  .about-hero-overlay {
    min-height: 320px;
  }

  .about-trip-strip,
  .about-feature-grid,
  .about-stats,
  .about-why-grid,
  .about-list-grid {
    grid-template-columns: 1fr;
  }

  .about-activities-content {
    padding: 46px 5%;
  }

  .contact-hero,
  .contact-hero-overlay {
    min-height: 320px;
  }

  .contact-section {
    margin-top: 52px;
    gap: 18px;
  }

  .contact-info-card {
    padding: 26px 16px 18px;
  }

  .contact-info-card h3 {
    left: 16px;
    font-size: 1.5rem;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .contact-info-row p {
    font-size: 0.98rem;
  }

  .contact-form-wrap {
    padding: 28px 16px;
  }

  .contact-submit {
    width: 100%;
  }

  .package-hero,
  .package-hero-overlay {
    min-height: 280px;
  }

  .kashmir-listing-section {
    margin-top: 52px;
  }

  .package-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .package-toolbar-right {
    width: 100%;
    flex-wrap: wrap;
  }

  .package-toolbar select {
    width: 100%;
  }

  .package-sidebar {
    grid-template-columns: 1fr;
  }

  .package-filter-box {
    padding: 16px;
  }

  .package-card {
    padding: 12px;
  }

  .package-card h3 {
    font-size: 1.45rem;
  }

  .package-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-bottom .btn {
    width: 100%;
    text-align: center;
  }

  .detail-hero,
  .detail-hero-overlay {
    min-height: 270px;
  }

  .detail-main-photo {
    height: 260px;
  }

  .detail-side-gallery {
    grid-template-columns: 1fr;
  }

  .detail-side-gallery img,
  .detail-gallery-cta {
    height: 170px;
  }

  .detail-day > header {
    grid-template-columns: 76px 1fr auto;
  }

  .package-pagination {
    flex-wrap: wrap;
  }
}

        .package-pagination {
            display: flex;
            gap: 0px 3px;
            margin-top: 30px;
        }

        .page-link {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: #fff;
            font: inherit;
            color: #333;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .page-link.active{
            background: #3f9430;
            color: white;
            border-color: #3f9430;
        }

        .page-link:hover {
            background: #b4eda1;
        }
