/* =====================================================
   GOA TRAVEL MART — PREMIUM TRAVEL WEBSITE CSS
   Poppins + Inter | Blue Gradient + Orange CTA
   ===================================================== */

:root {
  --blue-dark: #023e8a;
  --blue: #0077b6;
  --blue-mid: #0096c7;
  --blue-light: #00b4d8;
  --blue-pale: #90e0ef;
  --orange: #ff7a00;
  --orange-dark: #e86900;
  --orange-light: #ff9a3c;
  --white: #ffffff;
  --off-white: #f8faff;
  --grey: #f0f4f8;
  --text-dark: #0d1b2a;
  --text-mid: #2c3e50;
  --text-light: #6b7fa3;
  --gradient-blue: linear-gradient(135deg, #023e8a 0%, #0096c7 100%);
  --gradient-orange: linear-gradient(135deg, #ff7a00 0%, #ff9a3c 100%);
  --gradient-hero: linear-gradient(180deg, rgba(2,62,138,0.7) 0%, rgba(0,150,199,0.4) 100%);
  --shadow-sm: 0 4px 20px rgba(0,119,182,0.12);
  --shadow-md: 0 8px 40px rgba(0,119,182,0.18);
  --shadow-lg: 0 16px 60px rgba(0,119,182,0.22);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea { font-family: inherit; outline: none; border: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

/* ========== TYPOGRAPHY ========== */
.gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  background: rgba(0,150,199,0.1);
  color: var(--blue-mid);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  font-family: 'Inter', sans-serif;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(255,122,0,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,122,0,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-big { padding: 16px 32px; font-size: 1.05rem; }

.btn-orange-sm {
  background: var(--gradient-orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(255,122,0,0.3);
}
.btn-orange-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,122,0,0.4); }

.btn-outline-sm {
  background: transparent;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--blue-light);
  transition: all 0.3s;
}
.btn-outline-sm:hover { background: var(--blue); color: white; }

.btn-pkg {
  width: 100%;
  background: var(--gradient-orange);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(255,122,0,0.3);
}
.btn-pkg:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,122,0,0.45); }

.btn-deals {
  background: var(--gradient-orange);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(255,122,0,0.4);
}
.btn-deals:hover { transform: translateY(-2px) scale(1.03); }

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 16px 0;
}
.navbar.scrolled {
  background: rgba(2,62,138,0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--gradient-orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,122,0,0.4);
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { color: white; font-weight: 800; font-size: 1.05rem; line-height: 1.2; }
.logo-sub { color: rgba(255,255,255,0.6); font-size: 0.65rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--gradient-orange);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 18px rgba(255,122,0,0.35);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2,62,138,0.85) 0%,
    rgba(0,150,199,0.6) 50%,
    rgba(2,62,138,0.7) 100%
  );
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}
.shape1 {
  width: 500px; height: 500px;
  background: var(--blue-light);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.shape2 {
  width: 300px; height: 300px;
  background: var(--orange);
  bottom: 100px; left: -50px;
  animation-delay: 2s;
}
.shape3 {
  width: 200px; height: 200px;
  background: var(--white);
  top: 50%; right: 15%;
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,122,0,0.2);
  border: 1px solid rgba(255,122,0,0.4);
  color: #ffb347;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeSlideIn 0.8s ease;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeSlideIn 0.8s ease 0.1s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 600px;
  animation: fadeSlideIn 0.8s ease 0.2s both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Search Box */
.search-box {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 820px;
  margin-bottom: 28px;
  overflow: hidden;
  animation: fadeSlideIn 0.8s ease 0.3s both;
}
.search-fields {
  display: flex;
  flex: 1;
  align-items: center;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  flex: 1;
  min-width: 0;
}
.search-field i {
  color: var(--blue-pale);
  font-size: 1rem;
  flex-shrink: 0;
}
.field-inner { display: flex; flex-direction: column; min-width: 0; }
.field-inner label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.field-inner input,
.field-inner select {
  background: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  padding: 2px 0;
}
.field-inner input::placeholder { color: rgba(255,255,255,0.7); }
.field-inner select option { color: var(--text-dark); background: white; }
.search-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.search-btn {
  background: var(--gradient-orange);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 32px;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  white-space: nowrap;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.search-btn:hover { background: linear-gradient(135deg, #ff9a3c, #ff7a00); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeSlideIn 0.8s ease 0.4s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeSlideIn 0.8s ease 0.5s both;
}
.stat { text-align: center; }
.stat strong { display: block; color: white; font-size: 1.4rem; font-weight: 800; }
.stat span { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===========================
   QUICK ACTIONS
=========================== */
.quick-actions {
  background: white;
  padding: 48px 0 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 40px rgba(0,119,182,0.08);
}
.quick-actions .section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-mid);
  margin-bottom: 20px;
  padding-left: 4px;
}
.qa-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.qa-scroll-wrap::-webkit-scrollbar { display: none; }
.qa-cards {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
  min-width: max-content;
}
.qa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s;
  min-width: 80px;
}
.qa-card:hover { transform: translateY(-4px); }
.qa-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.qa-card:hover .qa-icon {
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}
.qa-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-badge-float i {
  width: 44px; height: 44px;
  background: var(--gradient-orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.about-badge-float strong { display: block; color: var(--blue-dark); font-size: 1rem; }
.about-badge-float span { color: var(--text-light); font-size: 0.78rem; }
.about-img-secondary {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 200px; height: 150px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-tag { margin-bottom: 16px; }
.about-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.about-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 500; color: var(--text-mid);
}
.about-feat i { color: var(--blue-mid); font-size: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.astat { text-align: center; }
.astat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--blue-dark); }
.astat span { font-size: 0.72rem; color: var(--text-light); font-weight: 500; }

/* ===========================
   ACTIVITIES
=========================== */
.activities {
  padding: 100px 0;
  background: white;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.activity-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,119,182,0.08);
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.act-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.act-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.activity-card:hover .act-img img { transform: scale(1.08); }
.act-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gradient-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(255,122,0,0.35);
}
.act-body { padding: 20px; }
.act-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.act-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin-bottom: 16px;
}
.act-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.act-price {
  font-size: 0.8rem;
  color: var(--text-light);
}
.act-price strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.act-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===========================
   PACKAGES
=========================== */
.packages {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pkg-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(0,119,182,0.08);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-blue);
}
.pkg-card.featured::before { background: var(--gradient-orange); }
.pkg-card.honeymoon::before { background: linear-gradient(135deg, #b5179e, #e63946); }
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,119,182,0.2);
}
.pkg-card.featured {
  border-color: rgba(255,122,0,0.25);
  background: linear-gradient(180deg, white 0%, rgba(255,122,0,0.03) 100%);
}
.pkg-popular-ribbon {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--gradient-orange);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.06em;
}
.pkg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
  flex-wrap: wrap;
}
.pkg-duration {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.pkg-duration i { color: var(--blue-mid); }
.pkg-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue-mid);
  background: rgba(0,150,199,0.1);
  padding: 3px 10px;
  border-radius: 50px;
}
.pkg-icon {
  width: 56px; height: 56px;
  background: var(--gradient-blue);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.pkg-card.honeymoon .pkg-icon { background: linear-gradient(135deg, #b5179e, #e63946); }
.pkg-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.pkg-highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pkg-hl {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}
.pkg-hl i { color: var(--blue-mid); width: 16px; text-align: center; }
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pkg-old {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.pkg-new {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
}
.pkg-per {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--orange);
}
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(0,119,182,0.1), rgba(0,150,199,0.15));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--blue-mid);
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.why-card:hover .why-icon {
  background: var(--gradient-blue);
  color: white;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

/* ===========================
   DEALS BANNER
=========================== */
.deals-banner {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.deals-bg {
  position: absolute;
  inset: 0;
}
.deals-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.deals-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,62,138,0.92), rgba(0,150,199,0.85));
}
.deals-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.deals-label {
  display: inline-block;
  background: rgba(255,122,0,0.2);
  border: 1px solid rgba(255,122,0,0.5);
  color: #ffb347;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.deals-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.deals-content p {
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.deals-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.timer-block {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  min-width: 80px;
}
.timer-block span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.timer-block label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.timer-sep {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  opacity: 0.6;
}

/* ===========================
   VIDEO SECTION
=========================== */
.video-section {
  padding: 100px 0;
  background: white;
}
.videoSwiper { padding-bottom: 48px !important; }
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-thumb:hover img { transform: scale(1.05); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(2,62,138,0.45);
  transition: background 0.3s;
}
.video-thumb:hover .video-play { background: rgba(255,0,0,0.6); }
.video-play i {
  font-size: 3.5rem;
  color: white;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(2,62,138,0.9));
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 20px 16px 12px;
}
.video-iframe-wrap {
  aspect-ratio: 16/9;
}
.video-iframe-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ===========================
   REVIEWS
=========================== */
.reviews {
  padding: 100px 0;
  background: var(--off-white);
}
.reviewSwiper { padding-bottom: 48px !important; }
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: auto;
  border-left: 4px solid var(--blue-light);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.rev-avatar {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}
.rev-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.rev-loc {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}
.rev-loc i { color: var(--orange); }
.rev-stars {
  margin-left: auto;
  color: #f4b942;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.review-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.rev-date { font-size: 0.72rem; color: var(--text-light); }

/* ===========================
   FAQ
=========================== */
.faq-section {
  padding: 100px 0;
  background: white;
}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,119,182,0.1);
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-q:hover { background: rgba(0,119,182,0.04); }
.faq-item.open .faq-q { background: rgba(0,119,182,0.06); }
.faq-q span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.faq-q i {
  color: var(--blue-mid);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.cinfo-card {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.cinfo-card i {
  width: 44px; height: 44px;
  background: var(--gradient-blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.cinfo-card div { display: flex; flex-direction: column; gap: 4px; }
.cinfo-card strong { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.cinfo-card span { font-size: 0.85rem; color: var(--text-light); font-family: 'Inter', sans-serif; }
.cinfo-card a { color: var(--blue); transition: color 0.2s; }
.cinfo-card a:hover { color: var(--orange); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-btn {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.social-btn:hover { transform: translateY(-3px) scale(1.05); }
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-btn.yt { background: #ff0000; }
.social-btn.wa { background: #25d366; }

.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-card h3 i { color: var(--orange); }
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field.cf-full { grid-column: 1 / -1; }
.cf-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: var(--off-white);
  border: 1.5px solid rgba(0,119,182,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s;
  width: 100%;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--blue-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,150,199,0.1);
}
.cf-field textarea { resize: vertical; min-height: 100px; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--blue-dark); color: white; }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo i {
  font-size: 1.8rem;
  color: var(--orange);
}
.footer-logo-main {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}
.footer-tagline {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}
.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-links-col h4, .footer-contact-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  position: relative;
}
.footer-links-col h4::after, .footer-contact-col h4::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-links-col a i { font-size: 0.6rem; color: var(--orange); }
.footer-links-col a:hover { color: white; }
.footer-contact-col { display: flex; flex-direction: column; gap: 16px; }
.fc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fc-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.fc-item span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
.fc-item a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.fc-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--blue-pale); }

/* ===========================
   FLOATING WHATSAPP
=========================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  animation: pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--text-dark);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===========================
   MOBILE BOTTOM BAR
=========================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: white;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  border-top: 1px solid rgba(0,119,182,0.1);
  padding: 8px 16px 8px;
}
.mbb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-light);
  border: none;
  background: none;
  text-decoration: none;
  transition: color 0.3s;
  flex: 1;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mbb-btn i { font-size: 1.2rem; }
.mbb-btn.call { color: var(--blue); }
.mbb-btn.wa { color: #25d366; }
.mbb-btn.book {
  background: var(--gradient-orange);
  color: white;
  border-radius: 50px;
  padding: 8px 16px;
  flex: 1.5;
}
.mbb-btn.pkg { color: var(--text-mid); }

/* ===========================
   BOOKING MODAL
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2,62,138,0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 16px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: all 0.3s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--grey);
  color: var(--text-mid);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  z-index: 1;
}
.modal-close:hover { background: var(--orange); color: white; }
.modal-header {
  background: var(--gradient-blue);
  padding: 36px 32px 28px;
  text-align: center;
  color: white;
}
.modal-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.modal-header p {
  font-size: 0.88rem;
  opacity: 0.8;
  font-family: 'Inter', sans-serif;
}
.modal-form {
  padding: 32px;
}
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.mf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.mf-field.mf-full { grid-column: 1 / -1; margin-bottom: 16px; }
.mf-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mf-field input,
.mf-field select,
.mf-field textarea {
  background: var(--off-white);
  border: 1.5px solid rgba(0,119,182,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s;
  width: 100%;
}
.mf-field input:focus,
.mf-field select:focus,
.mf-field textarea:focus {
  border-color: var(--blue-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,150,199,0.1);
}
.mf-field textarea { resize: vertical; min-height: 80px; }

/* ===========================
   SWIPER OVERRIDES
=========================== */
.swiper-button-next,
.swiper-button-prev {
  color: var(--blue) !important;
  background: white;
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 0.9rem !important; font-weight: 900 !important; }
.swiper-pagination-bullet-active { background: var(--orange) !important; }

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(2,62,138,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 0;
  }
  .nav-links.open a { display: block; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { position: fixed; background: rgba(2,62,138,0.97); }

  /* Hero */
  .hero-content { padding: 100px 20px 60px; }
  .search-box { flex-direction: column; }
  .search-fields { flex-direction: column; }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .search-field { padding: 14px 18px; }
  .search-btn { border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 16px; justify-content: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { text-align: center; justify-content: center; }

  /* Activities */
  .activities-grid { grid-template-columns: 1fr; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; }

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

  /* Contact form */
  .cf-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Modal */
  .mf-row { grid-template-columns: 1fr; }
  .modal-form { padding: 20px; }
  .modal-header { padding: 28px 24px 20px; }

  /* Mobile bar */
  .mobile-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .wa-float { bottom: 80px; }

  /* Sections padding */
  .about, .activities, .packages, .why-us, .video-section, .reviews, .faq-section, .contact {
    padding: 72px 0;
  }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat strong { font-size: 1.1rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .timer-block { padding: 12px 16px; min-width: 60px; }
  .timer-block span { font-size: 1.5rem; }
}
