* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: none;
}

body {
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Scroll to Top Button - Top Center */
.scroll-top-btn {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  position: relative;
}

.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 52px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* CTA Button — shimmer + glow animations */
@keyframes navCtaGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(30, 47, 110, 0.45);
  }
  50% {
    box-shadow: 0 4px 28px rgba(30, 47, 110, 0.85), 0 0 22px rgba(90, 120, 220, 0.4);
  }
}

@keyframes navCtaShimmer {
  0%   { left: -100%; }
  55%, 100% { left: 150%; }
}

.nav-cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: #1e2f6e;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: navCtaGlow 2.6s ease-in-out infinite;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: navCtaShimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

.nav-cta:hover {
  background: #162459;
  transform: scale(1.07);
  box-shadow: 0 6px 32px rgba(30, 47, 110, 0.65);
  animation: none;
}

.nav-cta:hover::after {
  animation: none;
}

/* ===== Destinations Dropdown ===== */
.nav-dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.nav-dropdown-wrapper.open .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(18, 28, 52, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 998;
}

.nav-dropdown-wrapper.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 48px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
  .contact-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10, 16, 38, 0.72);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  .contact-modal-overlay.open {
    opacity: 1; pointer-events: auto;
  }

  /* Box */
  .contact-modal-box {
    background: #fff;
    border-radius: 28px;
    padding: 40px 36px 36px;
    max-width: 420px; width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 32px 80px rgba(17, 30, 69, 0.22);
    transform: translateY(24px) scale(0.96);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  }
  .contact-modal-overlay.open .contact-modal-box {
    transform: translateY(0) scale(1);
  }

  /* Close */
  .contact-modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none;
    font-size: 1.5rem; color: #a0aec0; cursor: pointer;
    line-height: 1; transition: color .2s ease;
  }
  .contact-modal-close:hover { color: #1a2a5e; }

  /* Icon + text */
  .contact-modal-icon { font-size: 2.4rem; margin-bottom: 12px; }
  .contact-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 800;
    color: #1a2a5e; margin-bottom: 8px;
  }
  .contact-modal-sub {
    font-size: .84rem; color: #718096;
    line-height: 1.65; margin-bottom: 28px;
  }

  /* Action buttons */
  .contact-modal-actions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

  .contact-action-btn {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; border-radius: 18px;
    text-decoration: none; text-align: left;
    border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .contact-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }

  /* Call */
  .call-btn {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #bfdbfe;
  }
  .call-btn:hover { border-color: #1a2a5e; }
  .call-btn .cab-icon {
    width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, #1a2a5e, #2d4a8a);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
  }

  /* WhatsApp */
  .wa-btn {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #bbf7d0;
  }
  .wa-btn:hover { border-color: #25D366; }
  .wa-btn .cab-icon {
    width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
  }

  /* Text inside buttons */
  .cab-text { flex: 1; display: flex; flex-direction: column; }
  .cab-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #718096; margin-bottom: 2px; }
  .call-btn .cab-num { font-size: .98rem; font-weight: 800; color: #1a2a5e; }
  .wa-btn   .cab-num { font-size: .98rem; font-weight: 800; color: #15803d; }
  .cab-arrow { font-size: .75rem; color: #cbd5e0; align-self: center; }
  .contact-action-btn:hover .cab-arrow { color: #1a2a5e; }

  /* Hours */
  .contact-modal-hours {
    font-size: .75rem; color: #a0aec0; font-weight: 500;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .contact-modal-hours i { color: #FF6B35; }

.continent-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.continent-emoji {
  font-size: 15px;
}

.country-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-list li a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  display: block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.country-list li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Asia — 2-column country list */
.dropdown-continent.asia .country-list {
  columns: 2;
  column-gap: 16px;
}

.coming-soon-text {
  color: rgba(255, 255, 255, 0.38);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-style: italic;
  margin-top: 6px;
}

/* Dropdown Mobile */
@media (max-width: 768px) {
  .nav-dropdown-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 13px 30px !important;
    border-bottom: none !important;
  }

  .nav-dropdown-wrapper.open .nav-dropdown-icon {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.18);
    box-shadow: none;
    border-top: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 100%;
  }

  .nav-dropdown-wrapper.open .nav-dropdown {
    visibility: visible;
    max-height: 1000px;
  }

  .dropdown-inner {
    grid-template-columns: 1fr 1fr;
    padding: 16px 20px 20px;
    gap: 20px;
  }

  .dropdown-continent.asia {
    grid-column: span 2;
  }

  .dropdown-continent.asia .country-list {
    columns: 2;
    column-gap: 12px;
  }

  .country-list li a {
    font-size: 13px;
    line-height: 1.9;
  }

  .continent-header {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .dropdown-inner {
    grid-template-columns: 1fr;
    padding: 12px 16px 16px;
    gap: 18px;
  }

  .dropdown-continent.asia {
    grid-column: span 1;
  }

  .dropdown-continent.asia .country-list {
    columns: 2;
    column-gap: 10px;
  }
}

/* Hamburger Button */
.hamburger {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Navbar Mobile */
@media (max-width: 768px) {
  .nav-container {
    grid-template-columns: 1fr auto;
  }

  .hamburger {
    display: flex;
    grid-column: 2;
  }

  .nav-links {
    display: none;
    grid-column: auto;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(20, 35, 70, 0.96);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-link {
    padding: 13px 30px;
    border-bottom: none;
    width: 100%;
    font-size: 15px;
  }

  .nav-cta {
    grid-column: auto;
    justify-self: auto;
    position: static;
    display: none;
    animation: none;
  }

  .nav-cta::after {
    display: none;
  }

  .nav-cta.active {
    display: inline-flex;
    margin: 8px 30px 0;
    animation: navCtaGlow 2.6s ease-in-out infinite;
  }

  .nav-cta.active::after {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: url("../assets/hero.jpg") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(20, 40, 80, 0.7) 0%, rgba(20, 40, 80, 0.4) 50%, rgba(20, 40, 80, 0.2) 100%);
  z-index: 1;
}

.hero-center {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
}

/* Hero Logo */
.hero-logo {
  display: block;
  margin-bottom: -80px;
  text-align: center;
}

.hero-logo img {
  height: 330px;
  width: auto;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: 0.8px;
  margin-bottom: 60px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-headline .line {
  display: block;
}

.hero-headline .line:nth-child(1) {
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-headline .line:nth-child(2) {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-headline .line:nth-child(3) {
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.95);
  color: #1A237E;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease-out 0.8s forwards, bounce 2s ease-in-out 1.8s infinite;
  opacity: 0;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  background: #ffffff;
}

.hero-cta i {
  font-size: 14px;
  animation: arrowBounce 2s ease-in-out 1.8s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Package Section */
.package-section {
  padding: 60px 40px;
  background: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.package-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.package-section.alt-bg {
  background: #f0f2f5;
}

.package-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.section-title {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.section-text {
  display: flex;
  flex-direction: column;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.section-icon i {
  color: #ffffff;
  font-size: 22px;
}

.section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1A237E;
  margin: 0;
  line-height: 1.2;
}

.section-title p {
  font-size: 16px;
  color: #666;
  margin: 6px 0 0 0;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #1A237E;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #283593;
  transform: translateX(5px);
}

.view-all-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* Carousel Container */
.carousel-container,
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 20;
  color: #1A237E;
}

.carousel-arrow:hover {
  background: #1A237E;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

.carousel-arrow i {
  font-size: 16px;
}

/* Package Carousel */
.package-carousel {
  overflow: hidden;
  position: relative;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* Package Card */
.package-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  overflow: visible;
  cursor: pointer;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

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

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

.card-badges {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #1A237E;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  white-space: nowrap;
  text-align: center;
}

.badge.flight {
  background: #E3F2FD;
  color: #1565C0;
}

.badge.group {
  background: #FFF3E0;
  color: #E65100;
}

/* Price Badge - Inside Image */
.price-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  z-index: 3;
}

.price-badge .price {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.price-badge .per-person {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  margin-top: 4px;
}

.card-content {
  padding: 35px 20px 20px;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
}

.location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.location i {
  color: #999;
  font-size: 12px;
}

.location span {
  color: #888;
  font-size: 12px;
  font-weight: 500;
}

.package-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A237E;
  margin-bottom: 12px;
  line-height: 1.4;
}

.duration {
  display: flex;
  align-items: center;
  gap: 6px;
}

.duration i {
  color: #FF6B35;
  font-size: 14px;
}

.duration span {
  color: #FF6B35;
  font-size: 14px;
  font-weight: 600;
}

/* View All Container */
.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* Features Section - All-Inclusive */
.features-section {
  padding: 50px 40px;
  background: #f0f2f5;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 35px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  border-radius: 50%;
  margin-bottom: 20px;
}

.feature-icon i {
  color: #ffffff;
  font-size: 28px;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A237E;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Trust Section - Experience & Stats */
.trust-section {
  position: relative;
  padding: 80px 40px;
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  overflow: hidden;
}

.trust-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") center/80px repeat;
  pointer-events: none;
}

.trust-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-header {
  margin-bottom: 60px;
}

.trust-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpStagger 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUpStagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-icon i {
  color: #FF6B35;
  font-size: 28px;
}

.stat-number {
  margin-bottom: 8px;
}

.stat-number .counter {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #FF6B35;
  line-height: 1;
}

.stat-number .suffix {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #FF6B35;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.goal-section {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #f8f9fa;
  margin: 40px -40px 0 -40px;
  padding-bottom: 80px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 30px 30px 0 0;
}

.goal-content {
  text-align: center;
}

.goal-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.goal-main {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1A237E;
  margin-bottom: 12px;
}

.goal-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* Contact Section with Map */
.contact-section {
  padding: 50px 40px;
  background: #ffffff;
}

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

.contact-info {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.map-wrapper {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  display: block;
}

.contact-logo-section {
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: #1e2936;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-logo {
  display: inline-block;
  margin-top: -30px;
  margin-bottom: -30px;
}

.footer-logo img {
  height: 160px;
  width: auto;
}

.contact-tagline {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 25px;
  font-style: italic;
}

.contact-cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.contact-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.contact-address {
  margin-top: 20px;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
}

/* ===== Packages Page ===== */

/* Scroll margin for fixed navbar */
.all-packages-section,
.dest-browse-section {
  scroll-margin-top: 80px;
}

/* Page Hero */
.packages-page-hero {
  background: linear-gradient(135deg, #1a2a5e 0%, #2d4a8a 100%);
  padding: 120px 40px 50px;
  text-align: center;
  color: #ffffff;
}

.packages-page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.packages-page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
}

/* Section tabs / jump links */
.packages-jump-nav {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.packages-jump-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
}

.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  color: #666;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.jump-link:hover,
.jump-link.active {
  color: #1A237E;
  border-bottom-color: #1A237E;
}

.jump-link i {
  font-size: 13px;
}

/* All Packages Section */
.all-packages-section {
  padding: 60px 40px;
  background: #ffffff;
}

.all-packages-section.alt-bg {
  background: #f0f2f5;
}

.all-packages-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Packages Grid — 3 columns */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 35px;
}

.packages-grid .package-card {
  flex: none;
  min-width: 0;
  width: 100%;
}

/* Browse by Destination Section */
.dest-browse-section {
  padding: 60px 40px;
  background: #f0f2f5;
}

.dest-browse-container {
  max-width: 1400px;
  margin: 0 auto;
}

.dest-continent-group {
  margin-top: 36px;
}

.dest-continent-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e4f0;
}

.dest-continent-title span {
  font-size: 20px;
}

.dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dest-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: #ffffff;
  border: 1.5px solid #d0d5e8;
  border-radius: 50px;
  color: #1A237E;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s ease;
  cursor: pointer;
}

.dest-chip:hover {
  background: #1A237E;
  color: #ffffff;
  border-color: #1A237E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
}

.dest-coming-soon-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: #f5f5f5;
  border: 1.5px dashed #ccc;
  border-radius: 50px;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-style: italic;
}

/*new updated Hero CSS



/* Packages Page Responsive */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

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

  .packages-jump-nav-inner {
    padding: 0 20px;
    overflow-x: auto;
  }

  .jump-link {
    padding: 14px 18px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .packages-page-hero {
    padding: 100px 20px 40px;
  }

  .packages-page-hero h1 {
    font-size: 30px;
  }

  .packages-page-hero p {
    font-size: 15px;
  }

  .all-packages-section {
    padding: 50px 20px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .dest-browse-section {
    padding: 50px 20px;
  }

  .dest-chip {
    font-size: 12px;
    padding: 8px 16px;
  }
}

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

  .packages-page-hero h1 {
    font-size: 26px;
  }
}

/* ===== Destinations Page ===== */

.destinations-page-hero {
  background: linear-gradient(135deg, #1a3a5e 0%, #2d5a8a 100%);
  padding: 120px 40px 50px;
  text-align: center;
  color: #ffffff;
}

.destinations-page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.destinations-page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
}

.destinations-page-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px 60px;
  gap: 36px;
  align-items: flex-start;
}

/* Sidebar */
.dest-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 82px;
  max-height: calc(100vh - 92px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  padding: 16px 0 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.dest-sidebar::-webkit-scrollbar {
  width: 4px;
}

.dest-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.dest-sidebar::-webkit-scrollbar-thumb {
  background: #d0d5e8;
  border-radius: 4px;
}

.dest-sidebar-continent-title {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 14px 18px 5px;
}

.dest-sidebar-link {
  display: block;
  padding: 7px 18px;
  color: #555;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  line-height: 1.4;
}

.dest-sidebar-link:hover,
.dest-sidebar-link.active {
  color: #1A237E;
  background: #f0f2f8;
  border-left-color: #1A237E;
  font-weight: 500;
}

/* Main Content */
.dest-main-content {
  flex: 1;
  min-width: 0;
}

.dest-continent-divider {
  background: linear-gradient(135deg, #1A237E 0%, #2d4a8a 100%);
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 10px;
  margin: 44px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.dest-continent-divider:first-child {
  margin-top: 0;
}

.destination-section {
  padding: 32px 0;
  border-bottom: 1px solid #eaeaea;
  scroll-margin-top: 90px;
}

.destination-section:last-child {
  border-bottom: none;
}

.dest-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.dest-section-flag {
  font-size: 26px;
  line-height: 1;
}

.dest-section-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A237E;
  margin: 0;
}

.dest-section-info p {
  font-size: 13px;
  color: #888;
  margin: 2px 0 0;
}

.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.dest-cards-grid .package-card {
  flex: none;
  min-width: 0;
  width: 100%;
}

/* Coming Soon */
.dest-coming-soon-section {
  padding: 32px 0;
  text-align: center;
}

.dest-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: #f8f8f8;
  border: 2px dashed #ccc;
  border-radius: 12px;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: italic;
}

/* Destinations Page Responsive */
@media (max-width: 1024px) {
  .dest-sidebar {
    width: 190px;
  }

  .destinations-page-layout {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .dest-sidebar {
    display: none;
  }

  .destinations-page-layout {
    padding: 30px 20px 50px;
  }
}

@media (max-width: 768px) {
  .destinations-page-hero {
    padding: 100px 20px 40px;
  }

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

  .dest-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dest-continent-divider {
    font-size: 14px;
    padding: 11px 18px;
  }
}

/* Privacy Footer */
.privacy-footer {
  background: #D3D3D3;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.privacy-footer a {
  margin: 0 12px;
  text-decoration: none;
  color: #666;
  font-size: 12px;
  transition: color 0.3s ease;
}

.privacy-footer a:hover {
  color: #007bff;
}

.privacy-footer p {
  margin-top: 12px;
  color: #999;
  font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .package-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 992px) {
  .package-card {
    flex: 0 0 calc(50% - 10px);
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  
  .carousel-arrow.prev {
    left: 0;
  }
  
  .carousel-arrow.next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .hero-center {
    padding: 30px 20px;
  }
  
  /* Hero Logo Mobile */
  .hero-logo {
    margin-bottom: -30px;
  }
  
  .hero-logo img {
    height: 225px;
  }
  
  .hero-headline {
    font-size: 36px;
  }
  
  .hero-cta {
    padding: 14px 26px;
    font-size: 14px;
  }
  
  .package-section {
    padding: 50px 20px;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .view-all-btn {
    width: 100%;
    justify-content: center;
  }
  
  .carousel-track {
    gap: 15px;
  }
  
  .carousel-container,
  .carousel-wrapper {
    padding: 0 15px;
  }
  
  .carousel-arrow.prev {
    left: -10px;
  }
  
  .carousel-arrow.next {
    right: -10px;
  }
  
  .package-card {
    flex: 0 0 100%;
    min-width: 150px;
  }
  
  .card-image {
    height: 250px;
  }
  
  .price-badge {
    padding: 8px 14px;
    bottom: 12px;
    right: 12px;
  }
  
  .price-badge .price {
    font-size: 18px;
  }
  
  .price-badge .per-person {
    font-size: 9px;
  }
  
  .package-title {
    font-size: 15px;
  }
  
  .duration span {
    font-size: 12px;
  }
  
  .scroll-top-btn {
    top: 15px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  
  /* Features Section Responsive - Tablet 2x2 */
  .features-section {
    padding: 50px 30px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  /* Trust Section Tablet */
  .trust-section {
    padding: 60px 30px;
  }
  
  .trust-header h2 {
    font-size: 28px;
  }
  
  .stats-grid {
    gap: 30px;
  }
  
  .stat-number .counter {
    font-size: 44px;
  }
  
  .stat-number .suffix {
    font-size: 34px;
  }
  
  .stat-label {
    font-size: 18px;
  }
  
  .goal-section {
    margin: 40px -30px 0 -30px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 25px 25px 0 0;
  }
  
  /* Contact Section Responsive */
  .contact-section {
    padding: 40px 30px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 25px;
  }
  
  .map-wrapper {
    order: 1;
  }
  
  .contact-logo-section {
    width: 100%;
    order: 2;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 30px;
  }
  
  .package-card {
    flex: 0 0 100%;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  
  .carousel-arrow i {
    font-size: 14px;
  }
  
  /* Features Section Responsive */
  .features-section {
    padding: 50px 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 24px;
  }
  
  /* Trust Section Responsive */
  .trust-section {
    padding: 60px 20px;
  }
  
  .trust-header h2 {
    font-size: 24px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .stat-number .counter {
    font-size: 42px;
  }
  
  .stat-number .suffix {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 20px;
  }
  
  .goal-section {
    margin: 30px -20px 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px 20px 0 0;
  }
  
  .goal-main {
    font-size: 22px;
  }
  
  .goal-sub {
    font-size: 14px;
  }
  
  /* Contact Section Mobile */
  .contact-section {
    padding: 30px 20px;
  }
  
  .contact-logo-section {
    padding: 30px 20px;
    width: 100%;
  }
  
  .footer-logo img {
    height: 120px;
  }
  
  .contact-tagline {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .contact-cta-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* ABOUT PAGE - IMPORT FONTS & NAVBAR OVERRIDE */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Poppins:wght@400;500;600;700;800&display=swap');

.about-hero ~ .navbar {
  position: absolute !important;
}
.about-hero ~ .navbar .nav-container { 
  background: transparent !important; 
  border: none !important; 
  box-shadow: none !important; 
}
.about-hero ~ .navbar .nav-link, 
.about-hero ~ .navbar .nav-cta { 
  color: #fff !important; 
}
.about-hero ~ .navbar .nav-cta { 
  border: 1px solid rgba(255,255,255,.45); 
  background: rgba(255,255,255,.14); 
}
.about-hero ~ .navbar .hamburger span { 
  background: #fff !important; 
}

/* ── ABOUT PAGE HERO ── */
.about-hero {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #1a2a5e 0%, #2d4a8a 60%, #1a3a7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 { 
  width: 500px; 
  height: 500px; 
  background: #FF6B35; 
  top: -150px; 
  right: -100px; 
  animation-delay: 0s; 
}
.hero-orb-2 { 
  width: 350px; 
  height: 350px; 
  background: #60a5fa; 
  bottom: -100px; 
  left: -80px; 
  animation-delay: 2s; 
}
.hero-orb-3 { 
  width: 200px; 
  height: 200px; 
  background: #fbbf24; 
  top: 40%; 
  left: 40%; 
  animation-delay: 4s; 
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -30px) scale(1.08); }
}

.hero-dots {
  position: absolute; 
  inset: 0; 
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative; 
  z-index: 2; 
  text-align: center; 
  max-width: 720px;
}
.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: rgba(255,255,255,0.12); 
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px); 
  border-radius: 40px;
  padding: 8px 20px; 
  color: #fff; 
  font-size: 0.82rem; 
  font-weight: 600;
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
  margin-bottom: 24px;
  animation: fadeDown 0.7s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800; 
  color: #fff; 
  line-height: 1.18;
  margin-bottom: 20px;
  animation: fadeDown 0.7s 0.15s ease both;
}
.hero-title span { 
  color: #FF8C42; 
  font-style: italic; 
}
.hero-sub {
  font-size: 1.1rem; 
  color: rgba(255,255,255,0.8); 
  line-height: 1.7;
  max-width: 560px; 
  margin: 0 auto 36px;
  animation: fadeDown 0.7s 0.3s ease both;
}
.hero-scroll-hint {
  position: absolute; 
  bottom: 24px; 
  left: 50%; 
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5); 
  font-size: 0.78rem; 
  letter-spacing: 0.12em;
  text-transform: uppercase; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px;
  animation: fadeDown 1s 0.8s ease both;
}
.scroll-line {
  width: 1px; 
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 
  0%,100%{opacity:0.4} 
  50%{opacity:1} 
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WAVE ── */
.wave-divider { 
  display:block; 
  width:100%; 
  line-height:0; 
  margin-top:-2px; 
}

/* ── SECTIONS ── */
.section { 
  padding: 96px 24px; 
}
.section-inner { 
  max-width: 1140px; 
  margin: 0 auto; 
}
.section-label {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  font-size: 0.78rem; 
  font-weight: 700; 
  letter-spacing: 0.12em;
  text-transform: uppercase; 
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before, 
.section-label::after {
  content:''; 
  display:inline-block; 
  height:1px; 
  width:28px;
  background: var(--orange); 
  opacity: 0.5;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 800;
  color: var(--gray-dark); 
  line-height: 1.22; 
  margin-bottom: 16px;
}
.section-title span { 
  color: var(--navy); 
}
.section-desc { 
  font-size: 1.05rem; 
  color: var(--gray-text); 
  line-height: 1.75; 
  max-width: 560px; 
}

/* ── WHO WE ARE ── */
.who-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 72px; 
  align-items: center;
}
@media(max-width:860px){ 
  .who-grid{grid-template-columns:1fr; gap:48px;} 
}

.who-visual { 
  position: relative; 
}
.who-img-wrap {
  position: relative; 
  border-radius: 32px; 
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(26,42,94,0.22);
}
.who-img-wrap img { 
  width: 100%; 
  height: 420px; 
  object-fit: cover; 
  display: block; 
  transition: transform 0.6s ease; 
}
.who-img-wrap:hover img { 
  transform: scale(1.04); 
}

.who-float-card {
  position: absolute; 
  background: #fff;
  border-radius: 20px; 
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(26,42,94,0.15);
  display: flex; 
  align-items: center; 
  gap: 14px;
  animation: floatCard 4s ease-in-out infinite alternate;
}
.who-float-card.card-1 { 
  bottom: -24px; 
  left: -28px; 
}
.who-float-card.card-2 { 
  top: -24px; 
  right: -28px; 
  animation-delay: 2s; 
}
@media(max-width:600px){ 
  .who-float-card.card-1{left:12px;} 
  .who-float-card.card-2{right:12px;} 
}

@keyframes floatCard {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.float-icon {
  width: 48px; 
  height: 48px; 
  border-radius: 14px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.3rem; 
  flex-shrink: 0;
}
.float-icon.blue  { 
  background: linear-gradient(135deg,#1a2a5e,#2d4a8a); 
  color:#fff; 
}
.float-icon.orange{ 
  background: linear-gradient(135deg,#FF6B35,#FF8C42); 
  color:#fff; 
}
.float-text h5 { 
  font-size: 0.88rem; 
  font-weight: 700; 
  color: var(--gray-dark); 
}
.float-text p  { 
  font-size: 0.76rem; 
  color: var(--gray-text); 
}

.who-text {  }
.who-pillars {
  display: grid; 
  grid-template-columns: 1fr 1fr; 


