/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* --- -style Navbar --- */
.tevily-nav{
  position: sticky; top:0; z-index:1000;
  background:#fff; transition: box-shadow .25s ease;
}
.tevily-nav.sticky, .tevily-nav.scrolled{
  box-shadow: 0 10px 30px rgba(15, 153, 163, 0.06);
}

.nav-inner{
  max-width: 1240px; margin: 0 auto;
  height: 84px; padding: 0 20px;
  display:flex; align-items:center; gap: 18px;
}

.brand img{ height: 70px; display:block; }

/* center menu */
.nav-menu{
  list-style:none; display:flex; align-items:center; gap: 34px;
  margin:0 auto; padding:0;
}

/* Navigation links adopt theme colours for a cohesive palette */
.nav-item > a{
  position: relative;
  display: inline-block;
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--heading-color);
  text-decoration: none;
  transition: color .2s ease;
}
/* Hover state shifts to primary colour */
.nav-item > a:hover{
  color: var(--primary-color);
}

/* active underline uses secondary accent */
.nav-item > a::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-item.active > a::after,
.nav-item:hover > a::after{
  transform: scaleX(1);
}

/* dropdown like the screenshot */
.has-dropdown{ position:relative; }
.has-dropdown .chev{
  display:inline-block; width:7px; height:7px; margin-left:6px;
  border-right:2px solid currentColor; border-bottom:2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
/* Center dropdown labels */
.has-dropdown .dropdown { text-align: center; }

.has-dropdown .dropdown a{
  display: flex;               /* robust centering (icons + text) */
  justify-content: center;
  align-items: center;
  gap: 8px;                    /* space if you add icons later */
  text-align: center;
  padding: 10px 0;             /* symmetric so it truly centers */
}

/* Keep the hover highlight tidy while centered */
.has-dropdown .dropdown a:hover{
  background: #f7f7f7;
  color: #084d43;
  border-radius: 8px;
}

.has-dropdown .dropdown{
  position:absolute; top:100%; left:50%; transform: translateX(-50%) translateY(10px);
  min-width: 230px; background:#fff; border-radius:12px; padding:10px 0;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  opacity:0; visibility:hidden; transition: opacity .18s ease, transform .18s ease;
}
.has-dropdown:hover .dropdown{
  opacity:1; visibility:visible; transform: translateX(-50%) translateY(0);
}
.dropdown a{
  display:block; padding:10px 18px; color:#9b8438; font-weight:600; text-decoration:none;
}
.dropdown a:hover{ background:#f7f7f7; color:#084d43 }

/* right actions */
.nav-actions{ display:flex; align-items:center; gap: 12px; }
.icon-btn{
  width:40px; height:40px; border-radius:50%;
  display:grid; place-items:center;
  background:#f6f6f6; border:1px solid #eee; color:#2a2a2a;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.icon-btn:hover{ background:#fff; box-shadow:0 8px 22px rgba(0,0,0,.08); transform: translateY(-1px); }

/* Primary call‑to‑action button in the nav; uses secondary colour with dark text */
.cta-btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:10px;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  font-weight:800;
  text-decoration:none;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  transition: filter .2s ease;
}
.cta-btn:hover{
  filter: brightness(1.05);
}

/* Keep your existing desktop nav styles */

/* Mobile: centered dropdown panel under the nav */
/* Keep your existing desktop nav styles */

/* Mobile: centered dropdown panel under the nav */
@media (max-width: 992px){
  .tevily-nav{ --nav-h: 84px; }          /* make nav height reusable */
  .nav-inner{ height: var(--nav-h); }
  @media (max-width: 992px){
  .has-dropdown .dropdown { text-align: center; }
  .has-dropdown .dropdown a{
    display: flex; justify-content: center; align-items: center; gap: 8px;
    text-align: center; padding: 10px 0;
  }
}

  .nav-menu{
    position: absolute;
    top: var(--nav-h);                    /* sits right below the bar */
    left: 50%;
    transform: translate(-50%, -8px);     /* slide-up start */
    width: min(92vw, 360px);
    max-height: calc(100vh - var(--nav-h) - 24px);
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 0; padding: 12px;

    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,.14);
    border: 1px solid rgba(0,0,0,.06);

    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 1100;
  }
  .nav-menu.active{
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  .nav-item{ width: 100%; }
  .nav-item > a{
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 10px;
    border-radius: 10px;
  }
  .nav-item > a:hover{ background: #f7f7f7; }

  /* center the little underline correctly for mobile */
  .nav-item > a::after{ bottom: -4px; left: 20%; right: 20%; }

  /* dropdowns: show inline (stacked) when the panel is open */
  .has-dropdown .dropdown{
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1; visibility: visible;
    padding: 0; min-width: 0; margin-top: 4px;
    width: 100%;
  }
  .dropdown a{ padding: 10px 0; }

  /* show the hamburger on mobile */
  .hamburger{ display: block; }
}


/* ============================
   Skyten Holidays – HERO (Tevily-style)
   Works with your existing HTML:
   <header id="home" class="hero hero--revamped"> ... </header>
   ============================ */

/* Optional script font for the “brushy” accent (safe to leave in CSS) */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

.hero.hero--revamped{
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 980px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #061423; /* fallback if media fails */
}

/* Media layer (your video/image) */
.hero.hero--revamped .hero-media{
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero.hero--revamped .hero-media video,
.hero.hero--revamped .hero-media img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.05) contrast(1.05) brightness(.92);
  transform: scale(1.02);
}
/* start with video showing (your JS alternates) */
#hero-image{ display:none; }

/* Soft dark overlay like the reference */
.hero.hero--revamped::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(255, 243, 243, 0.25) 0%, rgba(224, 245, 248, 0.349) 55%, rgba(5, 52, 58, 0.884) 100%);
  z-index: 1; pointer-events: none;
}
/* extra vignette */
.hero.hero--revamped::after{
  content:"";
  position:absolute; inset: -10%;
  background: radial-gradient(80% 60% at 50% 20%, rgba(0,0,0,.0), rgba(0,0,0,.55) 70%);
  z-index: 1; pointer-events: none;
}

/* Content card centered */
.hero.hero--revamped .hero-content{
  position: relative; z-index: 2;
  text-align: center;
  width: min(92vw, 1100px);
  padding: 0 24px;
}

/* Main headline (elegant + big like screenshot) */
.hero.hero--revamped h1{
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: .2px;
  color: #ffffff;
  text-wrap: balance;
  margin-bottom: 18px;
  position: relative;
}

/* Golden highlight on brand word */
.hero.hero--revamped h1 span{
  background: linear-gradient(90deg,#ffd400,#fff1a8 45%,#ffd400);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Stack slides for crossfade */
.hero--revamped .hero-media {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero--revamped .hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  filter: saturate(1.05) contrast(1.05) brightness(.92);
  transform: scale(1.02);
}
/* visible frame */
.hero--revamped .hero-slide.is-active { opacity: 1; }

/* Remove this old rule if present; it hides images */
/* #hero-image{ display:none; }  <-- delete this line from your CSS */


/* Brush underline under the headline (mimics Tevily stroke) */
.hero.hero--revamped h1::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: min(72vw, 720px);
  height: 10px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: .95;
  /* hand-drawn stroke SVG */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1100 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 40 C250 30 450 15 750 25 C920 30 1040 20 1090 18' stroke='%23ffffff' stroke-width='12' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* Subheading like “Where Would You Like To Go?” */
.hero.hero--revamped p{
  margin-top: 28px;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  color: rgba(255,255,255,.95);
}

/* CTA */
.hero.hero--revamped .hero-actions{
  margin-top: clamp(18px, 3vw, 28px);
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

.hero.hero--revamped .hero-btn{
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800; letter-spacing:.3px;
  background: #f1ca19; /* coral like the ref button */
  color: #fff;
  box-shadow: 0 12px 30px rgba(243,107,79,.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  text-transform: uppercase;
}
.hero.hero--revamped .hero-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(243,107,79,.45);
  filter: brightness(1.05);
}

/* Decorative bottom white wave (already in your HTML) */
.hero.hero--revamped .wave{
  position: absolute; left: 0; bottom: -1px; width: 100%; z-index: 2; pointer-events: none;
}
.hero.hero--revamped .wave path{ fill:#ffffff; }

/* Scroll cue (kept minimal) */
.hero.hero--revamped .scroll-cue{
  position: absolute; left:50%; bottom: 16px; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.85); font-size: 12px;
  display: grid; place-items: center; gap: 6px; text-decoration: none;
}
.hero.hero--revamped .mouse{
  width:22px; height:34px; border:2px solid rgba(255,255,255,.7);
  border-radius:14px; position:relative;
}
.hero.hero--revamped .wheel{
  width:2px; height:6px; background:rgba(255,255,255,.85);
  position:absolute; left:50%; top:6px; transform:translateX(-50%);
  border-radius:2px; animation: hero-wheel 1.8s ease-in-out infinite;
}
@keyframes hero-wheel{
  0%{opacity:.9; transform:translate(-50%,0)}
  100%{opacity:.1; transform:translate(-50%,10px)}
}

/* Optional: round ghost arrows like the ref (no HTML needed) */
.hero.hero--revamped .nav-arrow{
  position:absolute; top:50%; transform: translateY(-50%);
  width:56px; height:56px; border-radius:50%;
  border:2px solid rgba(255,255,255,.55);
  display:grid; place-items:center;
  color:#fff; z-index:2; opacity:.9;
  backdrop-filter: blur(3px);
}
.hero.hero--revamped .nav-arrow.left{ left: 26px; }
.hero.hero--revamped .nav-arrow.right{ right: 26px; }
.hero.hero--revamped .nav-arrow::before{
  content:""; width:10px; height:10px; border-top:2px solid #fff; border-right:2px solid #fff;
  transform: rotate(135deg); /* left */
}
.hero.hero--revamped .nav-arrow.right::before{
  transform: rotate(-45deg); /* right */
}

/* Responsive tweaks */
@media (max-width: 768px){
  .hero.hero--revamped h1{ font-size: clamp(30px, 6.4vw, 40px); }
  .hero.hero--revamped h1::after{ width: min(84vw, 560px); bottom: -12px; }
  .hero.hero--revamped p{ margin-top: 22px; font-size: clamp(15px, 3.8vw, 18px); }
}

/* Sections */
.section {
  padding: 100px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  color: #C1A857;
  margin-bottom: 1rem;
}

.about {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 80px 20px;
}

.about-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2.7rem;
  color: #ffc107;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-text h2 span {
  color: #ffffff;
}

.about-text p {
  font-size: 1.05rem;
  color: #ddd;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.feature-icon img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
  filter: brightness(1.2);
}

.feature-box h3 {
  color: #ffc107;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .about-flex-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-features {
    width: 100%;
  }
}

.about-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.about-text {
  flex: 1 1 50%;
  color: #fff;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.about-text h2 span {
  color: #fff;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #eee;
}

.about-features {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  border-left: 4px solid #ffc107;
  transition: all 0.3s ease;
}

.mini-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.mini-feature img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mini-feature:hover img {
  transform: scale(1.1) rotate(5deg);
}

.mini-feature h4 {
  margin: 0 0 5px;
  color: #ffc107;
}

.mini-feature p {
  margin: 0;
  color: #ccc;
  font-size: 0.95rem;
}


.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: 15px;
  width: 270px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
}

.feature-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

.feature-box h3 {
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

/* Contact */
.contact p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

/* Footer */
footer {
  background-color: #002b45;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 30px;
}

.footer-contact {
  margin-top: 10px;
}

.footer-contact a {
  display: inline-block;
}

.social-icon {
  width: 28px;
  height: 28px;
  margin: 0 10px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .cards {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* Reset + Basic */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  /* Match our brand dark tone instead of static color */
  background: var(--dark-color);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  /* Top segment uses our secondary brand color */
  border-top-color: var(--secondary-color);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Brand logo inside preloader */
.preloader-logo {
  width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
  animation: logo-pop 600ms ease-out both;
}

/* Wrapper for logo and spinner in the preloader */
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@keyframes logo-pop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Services Cards */
.services {
  padding: 80px 20px;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  /* Match About section */
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 2.8rem;
  color: #ffd207;
  margin-bottom: 50px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card h3 {
  padding: 15px;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  margin: 0;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.card:hover img {
  transform: scale(1.08);
}

.card:hover h3 {
  background: rgba(255, 215, 0, 0.9);
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .card-container {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 180px;
  }
}

/* Map */
.map {
  padding: 60px 20px;
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Removed redundant early footer styles; consolidated definitions appear later for consistency */

/* Removed outdated footer box and middle layout definitions; the design has been refreshed below */

/* Top portion of footer uses the primary colour background */
.footer-top {
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 20px 40px;
  position: relative;
  gap: 20px;
}

/* Footer call/help boxes use a warm gradient from the secondary palette and dark text */
.footer-box {
  background: linear-gradient(90deg, var(--secondary-color), #ffce45, var(--secondary-color));
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 280px;
  flex: 1;
  justify-content: center;
  color: var(--dark-color);
  z-index: 1;
}

.footer-box.logo-box {
  background: white;
  border-radius: 25px;
  padding: 30px 50px;
  z-index: 2;
  margin: 0 -60px;
  /* Creates the overlap */
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.footer-box.logo-box img {
  max-height: 80px;
  width: auto;
}

.icon-circle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: white;
}

/* Icons in call and help boxes adopt the primary colour for consistency */
.call-box i,
.help-box i {
  color: var(--primary-color);
}

.footer-text {
  text-align: left;
}

.footer-text p {
  margin: 0;
  font-size: 1rem;
}

.footer-text strong {
  font-size: 1.2rem;
  display: block;
  margin-top: 5px;
}

.hamburger i {
  color: black;
  /* Ensures hamburger icon is black */
  font-size: 24px;
}

footer {
  background-color: #002b45;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-message {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.social-icons a {
  margin-right: 15px;
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: white;
}

.footer-center h3,
.footer-right h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-center ul {
  list-style: none;
  padding: 0;
}

.footer-center li {
  margin: 8px 0;
}

.footer-center a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: white;
}

.footer-right p,
.footer-right h4 {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.footer-right h4 {
  margin-top: 15px;
  font-size: 17px;
  color: #fff;
}

.footer-right i {
  margin-right: 8px;
  color: #00aaff;
}

.footer-bottom {
  background-color: black;
  color: white;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
}


/* Responsive */
/* Default menu layout (desktop) */
.menu {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  /* Mobile slide-in drawer */
  .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;
    width: 82%;
    max-width: 360px;
    background: #ffffff;
    padding: 80px 20px 20px; /* space for nav height */
    box-shadow: -12px 0 24px rgba(0, 0, 0, 0.18);
    z-index: 1100;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 260ms ease, opacity 260ms ease;
    border-radius: 12px 0 0 12px;
  }

  .menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .menu a {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 1rem;
  }

  .menu a:last-child { border-bottom: none; }

  .hamburger {
    display: block;
    background: transparent;
    border: none;
    padding: 8px;
    line-height: 1;
  }
}

/* Backdrop behind mobile menu */
.menu-backdrop[hidden] { display: none !important; }
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 220ms ease;
}
.menu-backdrop.show { opacity: 1; }

/* Prevent body scroll when menu open */
body.menu-open { overflow: hidden; }


.footer-middle {
  flex-direction: column;
  gap: 20px;
}

.footer-about,
.footer-links,
.footer-contact {
  width: 100%;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
}

/* Typography: headings use Playfair Display */
h1, h2, h3, h4, .section-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Topbar */
.topbar {
  background: #0b637ed7;
  color: #fff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.topbar i {
  margin-right: 6px;
}

.topbar-right a {
  color: rgb(255, 255, 255);
  margin: 0 6px;
}

.topbar-right span {
  margin-left: 12px;
}

/* Navbar */
nav {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  position: sticky; /* stick to top without layout jump */
  top: 0;
  z-index: 1000; /* ensure above hero/video/backdrops */
  transition: box-shadow 0.3s ease;
}

/* Add shadow only when scrolled (JS toggles .sticky) */
nav.sticky {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 60px;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

.menu {
  display: flex;
  gap: 16px;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 4px 8px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.menu a:hover {
  color: #f7c600;
}

.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #000428, #004e92);
  text-align: center;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero-image {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
}

.hero span {
  color: yellow;
}

.hero-btn {
  margin-top: 20px;
  background: yellow;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
}

/* Destination Cards */
.services {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}



.card {
  width: 220px;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.card h3 {
  padding: 12px;
}

/* Map Section */
.map {
  padding: 60px 20px;
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-size: 15px;
  color: #333;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 4px;
  transform: scale(1.2);
}

.submit-wrapper {
  margin-bottom: 60px;
  /* adds spacing before footer */
  text-align: left;
}

.submit-btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to right, #ffc107, #ff9800);
  border: none;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block;
}

.submit-btn:hover {
  background: linear-gradient(to right, #ffb300, #f57c00);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: #002244;
  color: white;
}

.footer-box.logo-box img {
  width: 180px;
  /* or whatever size looks best */
  height: auto;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.footer-box.logo-box img:hover {
  transform: scale(1.05);
  /* optional hover effect */
}

/* Vibration Animation */
@keyframes vibrate {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  60% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-4deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Phone Icon Animation + Color */
.footer-box .fa-phone {
  animation: vibrate 1.5s infinite;
  color: #28a745;
  /* Green */
  font-size: 24px;
}

/* Envelope Icon Animation + Color */
/* Envelope icon inherits the primary colour; vibration effect retained */
.footer-box .fa-envelope {
  animation: vibrate 1.5s infinite;
  color: var(--primary-color);
  font-size: 24px;
}

/* Legacy footer flexbox layout removed. A refreshed footer layout is defined later using the footer-container grid. */

.footer-links a {
  color: yellow;
  text-decoration: none;
}

.footer-contact i {
  margin-right: 6px;
}

.footer-bottom {
  background: black;
  text-align: center;
  padding: 15px;
}

.footer-bottom a {
  color: yellow;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  /* Keep hamburger visible */
  .hamburger { display: block; }

  /* Typography tweaks */
  .hero h1 { font-size: 32px; }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 per row */
  gap: 20px;
  padding: 2rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card h3 {
  position: absolute;
  bottom: 0;
  margin: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card:hover img {
  transform: scale(1.1);
}

.card:hover h3 {
  background: rgba(255, 215, 0, 0.8);
  /* Yellow glow */
  color: #000;
}

.card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* Responsive */
@media (max-width: 992px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.tour-journey {
  background: linear-gradient(to left, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.journey-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #ffffff;
  font-weight: 700;
}

.journey-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  width: 22%;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.icon-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 30px;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, filter 0.3s ease, transform 0.3s;
  border: 2px solid #ffffff33;
}

.icon-container img {
  width: 50px;
  height: 50px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Styling for icons inside the booking journey (replaces images) */
.icon-container i {
  font-size: 48px;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.icon-container:hover i {
  transform: scale(1.1);
}

.icon-container:hover {
  background: #ffffff33;
  transform: scale(1.1);
}

.icon-container:hover img {
  filter: brightness(100%) invert(100%);
  transform: scale(1.1);
}

.step-number {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  color: #203a43;
  font-weight: bold;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 14px;
}

.journey-connector {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 0;
}

.step h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 10px;
}

@media (max-width: 992px) {
  .step {
    width: 45%;
    margin-bottom: 60px;
  }
  .journey-connector {
    display: none;
    /* Hide curve on small screens */
  }
}

@media (max-width: 576px) {
  .step {
    width: 100%;
  }
}

/* =========================================================
   Testimonials: What They’re Saying (updated, avatars in-card)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

.testimonial-section.tstyle-v2{
  --brand:#203a43;
  --accent:#ffc107;
  --ink:#2c2f36;
  --muted:#e8f2ff;
  --card:#124255;

  position: relative;
  overflow: hidden;

  /* subtle light-to-grey split like the screenshot */
  background: linear-gradient(180deg,#ffffff 0%, #f7f6f6 44%, #f1efeb 45%);
  padding: 90px 20px 120px;
  text-align:center;
}

/* Header */
.tst-header{ max-width: 960px; margin: 0 auto 10px; }
.tst-kicker{
  display:inline-block;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--accent);
  letter-spacing:.3px;
  margin-bottom: 6px;
}
.tst-header h2{
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 46px);
  color: #2a2e37;
}

/* ===== Avatars INSIDE each card ===== */
.tst-avatar--card{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: clamp(110px, 15vw, 140px);
  height: clamp(110px, 15vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  background:#eaeaea;
  border: 8px solid #fff;
  box-shadow: 0 22px 45px rgba(0,0,0,.12);
  z-index: 2;
}

/* If the old row of avatars is still in the DOM, hide it */
.tst-avatars{ display:none !important; }

/* Cards grid */
.tst-grid{
  max-width: 1200px;
  margin: 0 auto; /* no overlap needed now */
  display:grid;
  grid-template-columns: repeat(3, minmax(250px,1fr));
  gap: clamp(18px, 3vw, 28px);
  padding: 10px 10px;
  padding-top: 150px;
}

.tst-card{
  position:relative;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  /* extra top padding to make space for the centered avatar */
  padding: 92px 32px 34px;
  text-align:center;
  box-shadow: 0 24px 60px rgba(20,30,50,.09);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tst-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(20,30,50,.12);
}

/* Stars + text + author */
.tst-stars{ margin-bottom: 16px; }
.tst-stars i{ color: var(--accent); margin: 0 2px; }

.tst-text{
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
  max-width: 52ch;
  margin: 0 auto 22px;
}

.tst-author h4{
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 800;
}
.tst-author span{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1120px){
  .tst-grid{ grid-template-columns: repeat(2, minmax(260px,1fr)); }
}
@media (max-width: 680px){
  .tst-grid{ grid-template-columns: 1fr; }
}

/* Decorative doodles (plane + birds) */

.tst-birds{
  position: absolute; right: 2%; top: 2%;
  width: clamp(140px, 18vw, 220px);
  height: auto;
  opacity: .16;
  pointer-events: none;
}
.tst-birds path{
  fill: none;
  stroke: rgb(9, 38, 49);
  stroke-width: 2;
  stroke-linecap: round;
}

@keyframes tstDash{ to{ stroke-dashoffset: -180; } }


/* =================== CONTACT (revamped) =================== */
.contact--revamped{
  /* Use global palette variables for cohesive styling */
  --brand: var(--primary-color);
  --accent: var(--secondary-color);
  --ink: var(--text-color);
  --muted: var(--muted-color);
  --card: var(--card-bg);

  /* Light background to align with other sections */
  background: var(--light-color);
  padding: 80px 20px 100px;
  color: var(--ink);
}

.contact--revamped .contact-shell{
  max-width: 1200px; margin: 0 auto;
}

.contact--revamped .contact-head{
  text-align: center; margin-bottom: 24px;
}
.contact--revamped .section-title{
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--brand);
  margin-bottom: 6px;
}
.contact--revamped .section-subtitle{
  color: var(--muted);
  font-size: 16px;
}

/* Grid */
.contact--revamped .contact-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
@media (max-width: 980px){
  .contact--revamped .contact-grid{ grid-template-columns: 1fr; }
}

/* Cards */
.contact--revamped .contact-card{
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(20,30,50,.07);
  border: 1px solid rgba(0,0,0,.06);
  padding: clamp(18px, 2.8vw, 28px);
}

/* Left info card on dark brand */
.contact--revamped .info-card{
  background: var(--brand);
  color: #fff;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 16px 50px rgba(32,58,67,.25);
}
.contact--revamped .info-card a{ color: var(--accent); text-decoration: none; }
.contact--revamped .info-card a:hover{ text-decoration: underline; }

/* Info items */
.contact--revamped .info-item{
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.16);
}
.contact--revamped .info-item:last-of-type{ border-bottom: none; }

.contact--revamped .icon-circle{
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,193,7,.2);
  border: 1px solid rgba(255,193,7,.5);
  color: var(--accent);
}
.contact--revamped .icon-circle i{ font-size: 18px; }

.contact--revamped .info-copy h4{
  margin: 0 0 6px; font-weight: 700; font-size: 1rem; color: #fff;
}
.contact--revamped .info-copy p{
  margin: 0; line-height: 1.7; color: rgba(255,255,255,.9);
}

/* Map */
.contact--revamped .map-wrap{
  margin-top: 18px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), 0 10px 26px rgba(0,0,0,.2);
}
.contact--revamped .map-wrap iframe{
  width: 100%; height: 240px; border: 0; display: block;
}
@media (max-width: 480px){
  .contact--revamped .map-wrap iframe{ height: 200px; }
}

/* Right form card */
.contact--revamped .form-card h3{
  margin: 0 0 14px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand);
}
.contact--revamped .form-card form{
  display: grid; gap: 12px;
}

/* Inputs */
.contact--revamped .form-card label{
  font-size: .92rem; font-weight: 600; color: var(--ink);
}
.contact--revamped .form-card input,
.contact--revamped .form-card textarea{
  width: 100%;
  border: 1px solid #d9e0e4;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.contact--revamped .form-card textarea{ resize: vertical; min-height: 120px; }
.contact--revamped .form-card input::placeholder,
.contact--revamped .form-card textarea::placeholder{ color: #9aa7af; }
.contact--revamped .form-card input:focus,
.contact--revamped .form-card textarea:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(32,58,67,.15);
}

/* Consent */
.contact--revamped .form-card .consent{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
}
.contact--revamped .form-card .consent input{
  width: 18px; height: 18px; margin-top: 2px;
}

/* Button */
.contact--revamped .btn-send{
  margin-top: 6px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(90deg, #ffcc00, #ffb300);
  color: #000;
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.contact--revamped .btn-send:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(255,193,7,.35);
}

/* Tiny tweaks on narrow screens */
@media (max-width: 520px){
  .contact--revamped .info-item{ grid-template-columns: 40px 1fr; }
  .contact--revamped .icon-circle{ width: 40px; height: 40px; }
}

.international-section {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  /* same as about section */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.destination-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.destination-info {
  padding: 20px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.destination-info h3 {
  font-size: 1.3rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.destination-info p {
  color: #ddd;
  font-size: 0.95rem;
  flex-grow: 1;
}

.enquire-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(to right, #ffcc00, #ffaa00);
  color: black;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: linear-gradient(to right, #ffe600, #e4bb06);
}

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

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

@media (max-width: 768px) {
  .contact-form .form-group {
    width: 100%;
  }

  .hero .hero-content h1 {
    font-size: 28px;
  }

  .footer .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .footer-section {
    margin-bottom: 20px;
  }

  .submit-btn {
    width: 100%;
  }
}

/* ====== Custom UI/UX Improvements ====== */

/* Color palette */
:root {
  --primary-color: #014f86;
  --secondary-color: #ffd166;
  --dark-color: #0d3b66;
  --light-color: #f5faff;
  --text-color: #263238;
  --heading-color: #013a63;
  --muted-color: #6c757d;
  --card-bg: #ffffff;
}

/* Global base */
body {
  background-color: var(--light-color);
  color: var(--text-color);
  line-height: 1.7;
  /* Prevent horizontal overflow on mobile */
  overflow-x: hidden;
}

/* Topbar */
.topbar {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 14px;
}

.topbar a {
  color: #ffffff;
  margin-left: 8px;
  transition: color 0.3s;
}

.topbar a:hover {
  color: var(--secondary-color);
}

/* Navbar */
.tevily-nav {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.nav-item > a {
  color: var(--primary-color);
  font-weight: 500;
}

.nav-item > a:hover {
  color: var(--secondary-color);
}

.nav-item > a::after {
  background-color: var(--secondary-color);
}

/* Duplicate definition overwritten above; keep here for fallback consistency */
.cta-btn {
  background-color: var(--secondary-color);
  color: var(--dark-color);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.cta-btn:hover {
  filter: brightness(1.05);
}

/* Hero */
.hero.hero--revamped .hero-slide {
  filter: brightness(0.8) contrast(1.1);
}

.hero.hero--revamped::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.hero.hero--revamped h1 {
  font-size: clamp(40px, 7vw, 72px);
}

.hero.hero--revamped .hero-btn {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.hero.hero--revamped .hero-btn:hover {
  box-shadow: 0 8px 20px rgba(255,209,102,0.5);
}

/* Section headings */
.section-title, h2 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

/* About section */
.about {
  background: var(--light-color);
  color: var(--text-color);
}

.about-text h2 span {
  color: var(--primary-color);
}

/* Override About text colors for better readability */
.about-text h2 {
  color: var(--primary-color);
}

.about-text p {
  color: var(--text-color);
}

.mini-feature {
  display: flex;
  background-color: var(--card-bg);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  align-items: center;
}

.mini-feature h4 {
  color: var(--primary-color);
}

.mini-feature p {
  color: var(--muted-color);
}

/* Travel Packages */
.card-container {
  gap: 24px;
}

.card {
  background-color: var(--card-bg);
  color: var(--heading-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card h3 {
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  color: var(--primary-color);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card:hover h3 {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

/* Tour Booking Journey */
.tour-journey {
  background: var(--dark-color);
  color: #ffffff;
  padding: 80px 20px;
}

.tour-journey .journey-title {
  color: #ffffff;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.journey-steps .step {
  background-color: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
}

.journey-steps .step:hover {
  background-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.journey-steps .step-number {
  background: var(--secondary-color);
  color: var(--dark-color);
  border-radius: 50%;
  padding: 8px 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

.journey-steps h3 {
  margin-bottom: 8px;
  color: #ffffff;
}

.journey-steps p {
  color: #e0e6ed;
  font-size: 14px;
}

/*
 * Ensure Tour Booking Journey steps align properly across devices.
 * Remove fixed widths set earlier so the CSS grid layout can manage sizing.
 */
.journey-steps .step {
  width: auto;
}

/* Stack About section columns on small screens for better mobile responsiveness */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-text, .about-features {
    flex: 1 1 100%;
  }
}

/* Testimonials */
.testimonial-section {
  background: var(--light-color);
  color: var(--text-color);
  padding: 80px 20px;
}

.tst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.tst-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.tst-stars {
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.tst-avatar--card {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}

.tst-text {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--muted-color);
}

.tst-author h4 {
  margin-bottom: 2px;
  color: var(--primary-color);
}

/* International Destinations */
.international-section {
  background: var(--light-color);
  padding: 80px 20px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.destination-card .destination-info {
  padding: 20px;
  background-color: #ffffff;
}

.destination-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.destination-card p {
  color: var(--muted-color);
  font-size: 14px;
  margin-bottom: 12px;
}

.enquire-btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  transition: filter 0.3s;
}

.enquire-btn:hover {
  filter: brightness(1.05);
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Contact section */
.contact-section {
  background: var(--light-color);
  padding: 80px 20px;
}

.contact-shell {
  max-width: 1100px;
  margin: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

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

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 30px;
}

.info-card .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-card .icon-circle {
  background-color: var(--secondary-color);
  color: var(--dark-color);
  border: none;
  padding: 12px;
  border-radius: 50%;
  margin-right: 16px;
}

.info-card h4 {
  margin-bottom: 4px;
  color: var(--primary-color);
}

.info-card p, .info-card a {
  font-size: 14px;
  color: var(--muted-color);
}

.form-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.form-card label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-color);
  background-color: #ffffff;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(255,209,102,0.3);
}

.form-card .consent {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted-color);
  margin-bottom: 16px;
}

.form-card .btn-send {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-card .btn-send:hover {
  filter: brightness(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-left .social-icons a {
  color: var(--secondary-color);
}

.footer-left .social-icons a:hover {
  color: #ffffff;
}

.footer-center h3,
.footer-right h3 {
  color: var(--secondary-color);
}

.footer-center a {
  color: #e0e6ed;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-center a:hover {
  color: #ffffff;
}

.footer-right p,
.footer-right h4,
.footer-right a {
  color: #e0e6ed;
  font-size: 14px;
}

.footer-right a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #e0e6ed;
}

/*
 * Additional UI/UX Improvements (override)
 * These overrides enhance readability and visual consistency across sections by
 * applying a light background, improved contrast, and refined card styling.
 */

/* Travel Packages section override */
.services {
  /* Light background for better contrast */
  background-color: var(--light-color) !important;
  color: var(--text-color);
}

.services .section-title {
  color: var(--primary-color);
}

/* Card styling for travel packages */
.services .card {
  background-color: var(--card-bg);
  color: var(--heading-color);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.services .card h3 {
  /* place heading on white backdrop */
  background-color: rgba(255,255,255,0.95);
  color: var(--primary-color);
  margin: 0;
}

/* Testimonials section override */
.testimonial-section.tstyle-v2 {
  background-color: var(--light-color);
  color: var(--text-color);
}

.testimonial-section.tstyle-v2 .tst-header h2 {
  color: var(--primary-color);
}

.testimonial-section.tstyle-v2 .tst-kicker {
  color: var(--secondary-color);
}

.testimonial-section.tstyle-v2 .tst-card {
  background-color: var(--card-bg);
  color: var(--text-color);
}

.testimonial-section.tstyle-v2 .tst-stars i {
  color: var(--secondary-color);
}

.testimonial-section.tstyle-v2 .tst-author h4 {
  color: var(--primary-color);
}

.testimonial-section.tstyle-v2 .tst-author span {
  color: var(--muted-color);
}

/* International Destinations override */
.international-section {
  background-color: var(--light-color) !important;
  color: var(--text-color);
}

.international-section .section-title {
  color: var(--primary-color);
}

.international-section .section-subtitle {
  color: var(--muted-color);
}

.international-section .destination-card {
  background-color: var(--card-bg);
  color: var(--text-color);
}

.international-section .destination-card .destination-info {
  background-color: #ffffff;
}

.international-section .destination-card h3 {
  color: var(--primary-color);
}

.international-section .destination-card p {
  color: var(--muted-color);
}

.international-section .enquire-btn {
  background-color: var(--secondary-color);
  color: var(--dark-color);
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
}

.international-section .enquire-btn:hover {
  filter: brightness(1.05);
}

/* Floating WhatsApp chat button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float i {
  font-size: 28px;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Ensure the button scales down slightly on very small screens */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float i {
    font-size: 22px;
  }
}