:root {
  --navy: #0e2a52;
  --blue: #1d63ed;
  --blue-dark: #154fc2;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #1c2733;
  --muted: #6b7686;
  --line: #e7ecf3;
  --amber: #f5a623;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(14, 42, 82, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--blue);
  font-style: italic;
  font-weight: 600;
  text-align: center;
  margin-bottom: 6px;
  font-size: .95rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-title:after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--blue);
  margin: 14px auto 0;
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: .2s;
  font-size: .95rem;
}

.btn:hover {
  background: var(--blue-dark);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 160px;
  height: 30px;
  /* border-radius: 50%; */
}

@media (max-width:1034.9px) {
  .brand img {
    width: 130px;
  }
}
@media (max-width:360.9px) {
  .brand img {
    width: 125px;
  }
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.brand-name span {
  display: block;
  font-size: .7rem;
  letter-spacing: 2px;
  color: var(--blue);
  font-weight: 600;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 500;
  color: var(--text);
  font-size: .95rem;
}

nav a.active {
  color: var(--blue);
  font-weight: 700;
}

nav ul>li {
  position: relative;
}

/* Submenu - shared base */
.nav-link-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link-row .nav-link {
  font-weight: 500;
  color: var(--text);
  font-size: .95rem;
}

.caret-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .65rem;
  color: var(--muted);
  padding: 4px;
  line-height: 1;
  transition: transform .2s ease;
}

.submenu li {
  width: 100%;
}

.submenu a {
  font-weight: 500;
}

/* Desktop: dropdown panel on hover/focus or .open */
@media (min-width:1001px) {
  .has-submenu .nav-link-row {
    cursor: pointer;
  }

  .has-submenu .caret-btn {
    pointer-events: none;
  }

  .has-submenu .submenu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 80;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu,
  .has-submenu.open .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .has-submenu:hover .caret-btn,
  .has-submenu.open .caret-btn {
    transform: rotate(180deg);
  }

  .submenu a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: .86rem;
    color: var(--text);
  }

  .submenu a:hover {
    background: var(--bg);
    color: var(--blue);
  }
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: .85rem;
}

@media (max-width: 529.9px) {
  .header-cta {
    gap: 3px;
    padding: 9px 10px;
  }
}

.header-cta strong {
  display: block;
  font-size: .85rem;
}

@media (max-width: 559.9px) {
  .header-cta strong {
    font-size: .65rem;
  }
}

.header-cta .cta-sub {
  display: block;
  font-size: .74rem;
  font-weight: 400;
  opacity: .9;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
  padding: 4px;
}

.nav-close {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 5;
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

body.no-scroll {
  overflow: hidden;
}

/* HERO */
.hero {
  position: relative;
  padding: 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 5%, rgba(255, 255, 255, .85) 10%, rgba(255, 255, 255, .35) 40%, rgba(255, 255, 255, .05) 50%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  padding: 64px 24px;
}

@media (max-width:1000px) {
  .hero-inner {
    padding: 10px 24px;
  }
}

.hero-copy h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  color: #13213a;
  font-weight: 800;
}

.hero-copy h1 em {
  display: block;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--blue);
  font-weight: 600;
}

.hero-copy p {
  margin-top: 14px;
  max-width: 460px;
  color: #000;
  font-size: 1rem;
}

.trust-row {
  display: flex;
  gap: 26px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: #1c2733;
  font-weight: 600;
  max-width: 150px;
  background: rgb(165 159 159 / 23%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .35);
  /* color: #fff; */
  padding: 6px 4px;
  border-radius: 20px;
}

.trust-item .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.hero-art {
  display: none;
}

/* QUOTE FORM */
.quote-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.quote-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.quote-card h3 .dot {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: .78rem;
  color: #154fc2;
  margin-bottom: 5px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: .88rem;
  color: var(--text);
  background: #f0f0f0;
  outline: none;
}

.two-field {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}
.two-field .field {
  width: 50%;
}

.quote-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

/* FILTER PILLS */
.filters-wrap {
  margin: 30px 0 36px;
  position: relative;
}

.filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 4px 12px;
  justify-content: flex-start;
}

.filters::-webkit-scrollbar {
  display: none;
}

.pill {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 9px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: .15s;
}

.pill.active,
.pill:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* PACKAGE GRID */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pkg-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}

.pkg-card:hover {
  transform: translateY(-4px);
}

.pkg-img {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(14, 42, 82, .85);
  color: #fff;
  font-size: .65rem;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.pkg-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--blue);
}

.pkg-body {
  padding: 16px;
}

.pkg-body h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.pkg-body h4 a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.pkg-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .78rem;
  margin-bottom: 10px;
}

.pkg-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.pkg-price {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

.pkg-price span {
  display: block;
  font-weight: 400;
  font-size: .68rem;
  color: var(--muted);
}

.pkg-rating {
  font-size: .78rem;
  color: var(--amber);
  font-weight: 600;
}

.view-all {
  text-align: center;
  margin-top: 32px;
}

.empty-msg {
  text-align: center;
  color: var(--muted);
  padding: 50px 0;
  grid-column: 1/-1;
  font-size: .95rem;
}

/* CTA STRIP */
.cta-strip {
  background: var(--navy);
  border-radius: 20px;
  padding: 50px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px auto;
  color: #fff;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-left .avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.cta-left h4 {
  font-size: 1.05rem;
}

.cta-left p {
  font-size: .8rem;
  color: #c9d4e6;
  margin-top: 2px;
}

.cta-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: .88rem;
}

.cta-whatsapp {
  background: #25d366;
  color: #fff;
}

.cta-call {
  background: #fff;
  color: var(--navy);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e8f0ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-card p {
  color: var(--muted);
  font-size: .86rem;
  margin-bottom: 12px;
}

.service-card a {
  color: var(--blue);
  font-weight: 600;
  font-size: .85rem;
}

/* TESTIMONIALS */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.test-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.stars {
  color: var(--amber);
  font-size: .85rem;
  margin-bottom: 10px;
}

.test-card p {
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 18px;
}

.test-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-person .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.test-person strong {
  display: block;
  font-size: .88rem;
  color: var(--navy);
}

.test-person span {
  font-size: .76rem;
  color: var(--muted);
}

/* DESTINATIONS GRID */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .75));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #fff;
}

.dest-overlay h5 {
  font-size: 1rem;
}

.dest-overlay a {
  font-size: .74rem;
  color: #ffd47a;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.why-card .ico {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.why-card h5 {
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-card p {
  font-size: .72rem;
  color: var(--muted);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: #cfdaee;
  margin-top: 70px;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 180px;
  height: 40px;
  /* border-radius: 50%; */
}

/* @media (max-width:749.9px) {
  .footer-brand img {
    width: 110px;
    height: 70px;
  }
} */

.footer-brand strong {
  color: #fff;
  font-size: 1.05rem;
}

footer h6 {
  color: #fff;
  margin-bottom: 14px;
  font-size: .95rem;
}

footer ul li {
  margin-bottom: 9px;
  font-size: .85rem;
}

footer ul li a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: .78rem;
  color: #8fa0bf;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 36px;
  padding-top: 20px;
}

.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  z-index: 60;
}

section {
  padding: 54px 0;
}

@media (max-width:1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 50px 0;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .92) 55%, #fff 100%);
  }

  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-toggle {
    display: block;
  }

  /* Off-canvas nav, slides in from the right */
  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82%);
    background: #fff;
    box-shadow: -12px 0 30px rgba(10, 20, 35, .18);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 200;
    overflow-y: auto;
    padding: 70px 26px 30px;
    display: block;
  }

  nav.open {
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 13px 6px;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg);
    border: none;
    font-size: 1.1rem;
    color: var(--navy);
    cursor: pointer;
  }

  /* Accordion submenu for Tour Packages / Destinations */
  .nav-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .nav-link-row .nav-link {
    border-bottom: none;
    flex: 1;
    padding: 13px 6px;
  }

  .caret-btn {
    font-size: .9rem;
    color: var(--navy);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .has-submenu.open .caret-btn {
    transform: rotate(180deg);
  }

  .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding-left: 14px;
  }

  .has-submenu.open .submenu {
    max-height: 600px;
  }

  .submenu.active {
    max-height: fit-content;

  }

  .submenu a {
    border-bottom: none;
    padding: 11px 6px;
    font-size: .92rem;
    color: var(--muted);
  }

  .submenu a:hover,
  .submenu a:active {
    color: var(--blue);
  }
}

@media (max-width:560px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 1.7rem;
  }

  .header-cta .cta-sub {
    display: none;
  }
}

@media (max-width:380px) {
  .header-cta strong {
    font-size: .55rem;
  }
}

.modal {
  position: fixed;
  /* inset: 0; */
  top: 0;
  display: flex;
  justify-content: center;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  padding-top: 1.5rem;
}

.modal.show {
  display: flex;
  background: rgba(0, 0, .8, .8);
}
.modal.hide {
  display: none;
}

.modal .modal-content {
  transform: translateY(-130vh);
  width: 50%;
  height: fit-content;
  background: #fff;
  position: relative;
  transition: .4s all ease-in;
}
@media (max-width:759.9px) {
  .modal .modal-content {
    width: 90%;
    overflow-y: auto;
    height: 600px;
  }
}


.modal.show .modal-content {
  transform: translateY(0);

}
.modal .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  /* padding: 5px; */
  width: 30px;
  height: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  /* font-size: 18px; */
}
.modal-header-bg {
  background-image: url(../media/images/welcome-form-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 180px;
  width: 100%;
}
@media (max-width:549.9px) {
  .modal-header-bg {
    height: 120px;
  }
}
.form-container {
  padding: 2rem 3rem;
}
@media (max-width:759.9px) {
  .form-container {
    padding: 2rem 1rem;
  }

}

.swal2-container {
  z-index: 99999;
}