/* ============================================================
   PHOENIX TRAVELS & TOURS — Main Stylesheet
   Primary: #2FA8CC | White | Silver/Gray
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #2FA8CC;
  --primary-dark: #1a87a8;
  --primary-deeper: #0f6a8a;
  --primary-light: #5bc4e0;
  --primary-xlight: #d0f0fa;
  --white: #ffffff;
  --silver: #f0f4f8;
  --silver-mid: #e2eaf0;
  --gray: #8a9bb0;
  --dark: #0d2233;
  --text: #1e3a4c;
  --text-light: #4a6278;
  --shadow-sm: 0 4px 16px rgba(47, 168, 204, 0.10);
  --shadow-md: 0 8px 32px rgba(47, 168, 204, 0.18);
  --shadow-lg: 0 16px 48px rgba(47, 168, 204, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: 'Poppins', sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.loader-logo {
  margin-bottom: 24px;
}

.loader-logo img {
  height: 100px;
  width: auto;
  animation: logo-bounce 2s ease-in-out infinite;
}

@keyframes logo-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--silver-mid);
  border-radius: 10px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: var(--primary);
  border-radius: 10px;
  animation: progress-slide 1.5s ease-in-out infinite;
}

@keyframes progress-slide {
  0% { left: -50%; }
  100% { left: 100%; }
}

.loader-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 4px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--silver);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(47, 168, 204, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 168, 204, 0.45);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.btn-white:hover {
  background: var(--primary-xlight);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-blue:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════════════
   HEADER / NAVBAR
════════════════════════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 16px 0;
}

#header.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  background: var(--white);
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.nav-logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

#header.scrolled .nav-logo-text span:first-child {
  color: var(--white);
}

#header.scrolled .nav-logo-text span:last-child {
  color: rgba(255, 255, 255, 0.85);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 16px;
  right: 16px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  background: var(--white);
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.nav-cta:hover {
  background: var(--primary-xlight) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.nav-overlay.open {
  display: block;
}

/* ════════════════════════════════════
   PAGE BANNER (About / Services / Contact)
════════════════════════════════════ */
.page-banner {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cellipse cx='400' cy='200' rx='380' ry='180' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cellipse cx='400' cy='200' rx='300' ry='140' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cellipse cx='400' cy='200' rx='200' ry='95' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='50' y1='200' x2='750' y2='200' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Cline x1='400' y1='20' x2='400' y2='380' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/cover no-repeat;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════
   HERO SECTION
════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a3a52 0%, #0f6a8a 30%, var(--primary) 60%, var(--primary-light) 100%);
  overflow: hidden;
}

/* World map watermark */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500' opacity='0.07'%3E%3Cellipse cx='500' cy='250' rx='480' ry='230' fill='none' stroke='white' stroke-width='1.5'/%3E%3Cellipse cx='500' cy='250' rx='380' ry='180' fill='none' stroke='white' stroke-width='1'/%3E%3Cellipse cx='500' cy='250' rx='280' ry='130' fill='none' stroke='white' stroke-width='1'/%3E%3Chelipse cx='500' cy='250' rx='180' ry='80' fill='none' stroke='white' stroke-width='1'/%3E%3Cline x1='20' y1='250' x2='980' y2='250' stroke='white' stroke-width='0.8'/%3E%3Cline x1='500' y1='20' x2='500' y2='480' stroke='white' stroke-width='0.8'/%3E%3Cline x1='20' y1='160' x2='980' y2='160' stroke='white' stroke-width='0.5'/%3E%3Cline x1='20' y1='340' x2='980' y2='340' stroke='white' stroke-width='0.5'/%3E%3Cline x1='200' y1='20' x2='200' y2='480' stroke='white' stroke-width='0.5'/%3E%3Cline x1='800' y1='20' x2='800' y2='480' stroke='white' stroke-width='0.5'/%3E%3Cline x1='350' y1='20' x2='350' y2='480' stroke='white' stroke-width='0.4'/%3E%3Cline x1='650' y1='20' x2='650' y2='480' stroke='white' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

/* Glowing orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 196, 224, 0.25) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: #5bc4e0;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  background: linear-gradient(90deg, #a8e6f5, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* Airplane animation */
.plane-anim {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: float-plane 5s ease-in-out infinite;
  opacity: 0.92;
}

.plane-anim svg {
  width: 280px;
  height: 280px;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
}

@keyframes float-plane {

  0%,
  100% {
    transform: translateY(-50%) rotate(-3deg);
  }

  50% {
    transform: translateY(calc(-50% - 20px)) rotate(1deg);
  }
}

/* Hero fade-in keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  animation: fadeUp 0.6s 0.2s both;
}

.hero h1 {
  animation: fadeUp 0.6s 0.4s both;
}

.hero-sub {
  animation: fadeUp 0.6s 0.6s both;
}

.hero-btns {
  animation: fadeUp 0.6s 0.8s both;
}

.hero-stats {
  animation: fadeUp 0.6s 1.0s both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-dot {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(18px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════ */
.why-us {
  padding: 100px 0;
  background: var(--silver);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(47, 168, 204, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-xlight), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 168, 204, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-xlight), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: transform var(--transition);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════
   DESTINATIONS
════════════════════════════════════ */
.destinations {
  padding: 100px 0;
  background: var(--white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: all var(--transition);
  border: 1px solid var(--silver-mid);
  position: relative;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dest-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-wrap img {
  transform: scale(1.08);
}

.dest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 58, 82, 0.7) 0%, transparent 60%);
}

.dest-body {
  padding: 24px;
}

.dest-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.dest-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray);
}

.dest-info svg {
  color: var(--primary);
}

/* Goa placeholder card */
.dest-img-goa {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6a623 0%, #e85d04 40%, #f77f00 70%, #fcbf49 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.testi-carousel {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 0 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 6rem;
  line-height: 1;
  color: var(--primary-xlight);
  font-family: Georgia, serif;
  font-weight: 900;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.stars span {
  color: #f5a623;
  font-size: 1.1rem;
}

.testi-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-xlight), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.testi-loc {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.testi-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--white);
  transform: scale(1.05);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all var(--transition);
}

.testi-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #062030 0%, #0d3650 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.fc-icon {
  width: 34px;
  height: 34px;
  background: rgba(47, 168, 204, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.fc-text a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.fc-text a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom span {
  color: var(--primary);
}

/* ════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════ */
.about-story {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ab-icon {
  font-size: 2.2rem;
}

.ab-info {
  line-height: 1.3;
}

.ab-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.ab-label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-mvv {
  padding: 80px 0;
  background: var(--silver);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
  transition: all var(--transition);
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mvv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

.trust-section {
  padding: 100px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.trust-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--silver);
  border: 1px solid var(--silver-mid);
  transition: all var(--transition);
}

.trust-item:hover {
  background: var(--primary-xlight);
  border-color: rgba(47, 168, 204, 0.3);
  transform: translateY(-4px);
}

.trust-item .icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver-mid);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 168, 204, 0.15);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary-xlight), rgba(91, 196, 224, 0.25));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-8deg);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--silver);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-deeper), var(--primary));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info-card>p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.65;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.cinfo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cinfo-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.cinfo-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.cinfo-value a {
  color: var(--white);
}

.cinfo-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 32px 0;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: none;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-card>p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--silver-mid);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 168, 204, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(47, 168, 204, 0.35);
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 168, 204, 0.45);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: #efffed;
  border: 1px solid #a8e6a3;
  border-radius: var(--radius);
  color: #2d7a29;
  font-weight: 600;
  margin-top: 16px;
}

/* ════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════ */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.sticky-book-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 989;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition);
}

.sticky-book-btn:hover {
  background: var(--primary-dark);
}

/* ════════════════════════════════════
   SCROLL REVEAL ANIMATION
════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mvv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {

  /* Nav */
  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(160deg, var(--primary-deeper), var(--primary-dark));
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 32px 40px;
    gap: 4px;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 12px;
  }

  .nav-logo-text span:first-child {
    font-size: 1rem;
  }

  .nav-logo img {
    height: 40px;
  }

  /* Header mobile adjustment */
  #header {
    padding: 12px 0;
  }

  #header.scrolled {
    padding: 8px 0;
  }

  .nav-inner {
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    position: static;
    transform: none;
  }

  .hamburger {
    position: static;
  }

  /* Hero */
  .plane-anim {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: 40px 0;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Destinations */
  .dest-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testi-card {
    min-width: 100%;
    margin: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Services / About */
  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .contact-info-card {
    position: static;
  }

  /* Sticky book btn */
  .sticky-book-btn {
    display: block;
  }

  .floating-whatsapp {
    bottom: 80px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/*  P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%        E X C L U S I V E   P A C K A G E S   P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%  */
.packages-section {
    padding: 100px 0;
    background: var(--silver);
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--silver-mid);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pkg-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pkg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-img-wrap img {
    transform: scale(1.08);
}

.pkg-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.pkg-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.pkg-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-places {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.pkg-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pkg-feature {
    background: var(--primary-xlight);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pkg-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--silver-mid);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e63946;
}

.pkg-price span {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
    display: block;
    margin-top: -4px;
}
