/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* HIDDEN ELEMENTS */
.hidden {
  display: none !important;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #012c60;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

.desktop-nav {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex: 1;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a:hover {
  color: #cce5ff;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.badge-trending {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
}

.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.icon {
  width: 20px;
  height: 20px;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: #012c60;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

#myAccountLink {
  text-decoration: none;
}

.profile-btn:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.search-box {
  position: absolute;
  top: 75px;
  right: 20px;
  background: white;
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-box input {
  flex: 1;
  outline: none;
  border: none;
  color: #012c60;
}

.search-box button {
  background: #014f8c;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.mobile-menu {
  background: #012c60;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  color: white;
  padding: 8px 0;
  text-decoration: none;
}

/* ===================== SECOND ROW ===================== */
.second-row {
  background: #012c60;
  text-align: center;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.second-row::-webkit-scrollbar {
  display: none;
}

.scroll-x {
  display: flex;
  gap: 20px;
  padding: 6px;
}

.scroll-x a {
  color: white;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.scroll-x a:hover {
  color: #ffdf85;
  text-decoration: underline;
}

/* ===================== LOCATION ROW ===================== */
.location-row {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  padding: 5px 10px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}

.location-row::-webkit-scrollbar {
  display: none;
}

.location-row .loc-btn {
  display: inline-block;
  background: #fff7dc;
  color: #012c70;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
}

.location-row .loc-btn:hover {
  background: #ffe3a3;
  color: #014f8c;
}

/* ===================== FLIPPING BANNER ===================== */
.flip-banner {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#flipText {
  font-size: 13px;
  font-weight: bold;
  color: #012c60;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
}

/* ===================== HEADER RESPONSIVE ===================== */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-only { display: flex; }
  .lbl { display: none; }
  .scroll-x { justify-content: flex-start; }
  .scroll-x a { font-size: 13px; padding: 0 6px; }
  .location-row { justify-content: flex-start; padding: 4px 8px; }
  .location-row .loc-btn { font-size: 11px; padding: 2px 6px; }
}

@media (min-width: 769px) {
  .scroll-x { justify-content: center; }
  .location-row { justify-content: center; flex-wrap: wrap; }
}


/* =====================================================================
   HERO SECTION
   ===================================================================== */
.hero {
  padding-top: 148px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(226, 174, 63, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1, 44, 96, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.6s ease both;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--navy-deep);
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  animation: fadeUp 0.7s 0.1s ease both;
  color: #012c60;
}

.hero-title em {
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 480px;
  line-height: 1.7;
  margin: 20px auto 48px;
  padding: 0 24px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* =====================================================================
   STATS ROW
   ===================================================================== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto 20px;
  border-top: 1px solid rgba(1, 44, 96, 0.1);
  border-bottom: 1px solid rgba(1, 44, 96, 0.1);
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* =====================================================================
   TOUR CARDS
   ===================================================================== */
.cards-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tour-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 560px;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(1, 26, 61, 0.15);
}

.tour-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.tour-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(1, 26, 61, 0.1) 0%,
    rgba(1, 26, 61, 0.2) 40%,
    rgba(1, 26, 61, 0.75) 75%,
    rgba(1, 26, 61, 0.92) 100%
  );
  transition: opacity 0.4s;
}

a.tour-card {
  text-decoration: none;
  display: block;
}

.tour-card:hover .overlay { opacity: 0.85; }

/* Gold accent line top */
.tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  z-index: 5;
}

.tour-card .content {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  color: white;
}

.card-tag {
  display: inline-block;
  background: rgba(226, 174, 63, 0.2);
  border: 1px solid rgba(226, 174, 63, 0.5);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
  width: fit-content;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: white;
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.meta-item i {
  color: var(--gold);
  font-size: 11px;
}

.card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.card-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}

.tour-card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

.card-cta .arrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.3s;
}

.tour-card:hover .card-cta .arrow-line { width: 50px; }

/* =====================================================================
   PROMO MARQUEE STRIP
   ===================================================================== */
.promo-strip {
  width: 100%;
  background: var(--navy-deep);
  padding: 16px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
}

.strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png') no-repeat center center;
  background-size: cover;
  background-color: #012c60;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 0px;
}

.footer-logo {
  position: relative;
  padding: 10px;
  width: 140px;
  height: auto;
  margin: 0 auto;
  font-weight: bold;
  margin-top: 40px;
}

.footer-logo img {
  width: 240%;
  height: auto;
  margin-top: -300px !important;
  margin-left: -80px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: -5px !important;
}

.footer-social a { color: white; }

.footer-content {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
  text-align: center;
}

.footer-content p a { color: #ffffff; text-decoration: none; }
.footer-content p a:hover { text-decoration: underline; }
.footer-content p a:active { color: #f0a500; }

.payment-box {
  background-color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1px 0;
  text-align: center;
  box-sizing: border-box;
  height: 60px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.inline-payment-icons {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
  opacity: 1;
}

.inline-payment-icons img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.inline-payment-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .tour-card { height: 420px; }
  .card-title { font-size: 2rem; }
  .card-cta { opacity: 1; transform: translateY(0); }
  .stats-row { gap: 28px; flex-wrap: wrap; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .cards-section { padding: 0 16px 60px; }
  .tour-card .content { padding: 28px 24px; }
  footer { padding: 20px 10px; font-size: 14px; }
  .footer-logo { margin-top: 40px; }
  .footer-social { font-size: 1.2rem; }
  .footer-content { font-size: 14px; margin-top: 20px; line-height: 1.5; }
}