/* ===================================
   P SQUARE TRIPS — Main Stylesheet
   Inspired by heritagexp.com layout
   =================================== */

/* === CSS RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #1a7a9a;
  --teal-dark:   #145f78;
  --teal-light:  #2aafd4;
  --orange:      #e07b2a;
  --orange-dark: #c4621a;
  --red:         #e03030;
  --blue-brand:  #3a8fd4;
  --bg-light:    #f5f0e8;
  --bg-pattern:  #ede8dc;
  --text-dark:   #1a2a3a;
  --text-mid:    #3a5068;
  --text-light:  #6a8098;
  --white:       #ffffff;
  --shadow:      0 8px 32px rgba(0,0,0,.14);
  --radius:      14px;
  --transition:  .3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset to prevent sticky header from covering anchor targets */
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TOP BAR === */
.top-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .3px;
  position: relative;
  z-index: 100;
}

/* === HEADER === */
.header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.logo-img:hover { transform: scale(1.04); }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: .5px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); }

.arrow { font-size: .7rem; margin-left: 2px; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 1000;
  border-top: 3px solid var(--teal);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--teal); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all var(--transition);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .3px;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,123,42,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal-dark);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da84e;
  border-color: #1da84e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.btn-call {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-call:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

/* === HERO === */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 560px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,30,60,.72) 0%,
    rgba(10,30,60,.55) 50%,
    rgba(10,30,60,.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 40px;
  animation: fadeInUp .9s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-title-accent { color: #f5c842; }
.hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.12rem);
  color: rgba(255,255,255,.9);
  margin: 16px 0 30px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 26px;
  height: 26px;
  border-right: 3px solid rgba(255,255,255,.7);
  border-bottom: 3px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* === TRAVEL ICON / PATTERN BG shared === */
.features, .stats, .categories, .trips-section, .testimonials, .experiences {
  background: var(--bg-pattern);
  position: relative;
}
.features::before, .stats::before, .categories::before,
.trips-section::before, .testimonials::before, .experiences::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8b89a' fill-opacity='0.18'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
}

/* === FEATURES === */
.features { padding: 50px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 3px solid var(--orange);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: .88rem;
  opacity: .85;
}

/* === STATS === */
.stats { padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 20px;
  transition: transform var(--transition);
}
.stat-item:hover { transform: translateY(-4px); }
.stat-icon { font-size: 2.6rem; margin-bottom: 10px; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .92rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* === SECTION TITLES === */
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* === CATEGORIES GRID === */
.categories { padding: 56px 0 64px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.category-card {
  display: block;
  color: inherit;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2.5;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,122,154,.55) 0%,
    rgba(10,30,60,.35) 100%
  );
  transition: opacity var(--transition);
}
.category-card:hover .category-overlay { opacity: .85; }
.category-label {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  padding: 0 12px;
  text-align: left;
  z-index: 2;
}
.category-label span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0,0,0,.5);
  line-height: 1.2;
  letter-spacing: .5px;
}
.category-label small {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  display: block;
  margin-top: 2px;
}

/* === TRIPS SLIDER === */
.trips-section { padding: 56px 0 64px; }
.trips-section-alt { background: #f0ece3; }

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.section-title-left {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--teal-dark);
}
.section-title-left::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 6px;
}
.slider-controls { display: flex; gap: 10px; }
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--white);
  color: var(--teal-dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-weight: 700;
}
.slider-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}

.slider-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.slider-track {
  display: flex;
  gap: 18px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.trip-card {
  display: block;
  color: inherit;
  position: relative;
  min-width: calc(25% - 14px);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.trip-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.trip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.trip-card:hover img { transform: scale(1.08); }
.trip-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.trip-label span {
  font-family: 'Cinzel', serif;
  font-size: clamp(.9rem, 1.3vw, 1.15rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  display: block;
}
.trip-label small {
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.trip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,122,154,.55) 0%,
    transparent 60%
  );
  z-index: 1;
}

/* === TESTIMONIALS === */
.testimonials { padding: 64px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.slider-track .testimonial-card {
  min-width: calc(33.333% - 12px);
  max-width: calc(33.333% - 12px);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .slider-track .testimonial-card {
    min-width: calc(50% - 9px);
    max-width: calc(50% - 9px);
  }
}
@media (max-width: 768px) {
  .slider-track .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }
}
.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}
.stars {
  color: #f5c842;
  font-size: 1.15rem;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* === ABOUT === */
.about {
  background: var(--white);
  padding: 72px 0;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-accent { color: var(--orange); }
.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .97rem;
}
.about-text .btn { margin-top: 8px; }
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 420px;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(224,123,42,.4);
  text-align: center;
}
.badge-number {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.badge-text { font-size: .7rem; font-weight: 600; line-height: 1.2; text-align: center; padding: 0 8px; }

/* === EXPERIENCES === */
.experiences { padding: 64px 0; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-top: 4px solid var(--teal);
  transition: all var(--transition);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  border-top-color: var(--orange);
}
.exp-icon { font-size: 2.6rem; margin-bottom: 14px; }
.exp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.exp-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* === CONTACT CTA === */
.contact-cta {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 72px 0;
}
.cta-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-box p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: #e8e0cc;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b0a080' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.footer-top { padding: 60px 0 40px; position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .9rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--teal); }
.footer-contact-block p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer-contact-block a { color: var(--teal-dark); font-weight: 600; }
.footer-contact-block a:hover { color: var(--orange); }
.footer-address {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Social icons */
.footer-social p { font-size: .9rem; color: var(--text-mid); margin-bottom: 10px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { background: var(--teal); transform: translateY(-3px); }

/* WhatsApp in footer */
.whatsapp-float-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(37,211,102,.35);
}
.whatsapp-float-footer:hover {
  background: #1da84e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.45);
}
.whatsapp-float-footer svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 18px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-bottom p { font-size: .88rem; color: var(--text-mid); }
.footer-bottom strong { color: var(--teal-dark); }

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: var(--white);
  border-radius: 30px;
  padding: 12px 18px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  z-index: 9000;
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float span {
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
}
.whatsapp-float:hover {
  background: #1da84e;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(37,211,102,.55);
}

/* === SCROLL ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  .about-badge { bottom: -10px; right: 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* RESPONSIVE HEADER & MOBILE NAVIGATION */
  .header-inner { height: 70px; }
  .logo-img { height: 54px; }

  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    gap: 0;
    z-index: 998;
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 24px; width: 100%; border-radius: 0; font-size: .95rem; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding-left: 20px;
    background: var(--bg-light);
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
}

@media (max-width: 768px) {

  .hero { min-height: 480px; }
  .hero-content { padding: 0 24px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .trip-card { min-width: calc(50% - 10px); }

  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .trip-card { min-width: calc(85% - 10px); }
  .whatsapp-float span { display: none; }
  .whatsapp-float { border-radius: 50%; padding: 14px; }
}

/* Plan link utility for travel styles */
.exp-plan-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.88rem;
  border-bottom: 1.5px solid var(--teal);
  transition: all var(--transition);
}
.exp-plan-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

