/* =====================================================
   WANDER.PH — Global Stylesheet
   Design: Modern Travel, Premium Navy + White + Green
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ─── CSS Custom Properties ─────────────────────── */
:root {
  --navy:        #1E293B;
  --navy-light:  #2E4057;
  --slate:       #64748B;
  --slate-light: #94A3B8;
  --green:       #2C7A5C;
  --green-light: #34D399;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --light-gray:  #F1F5F9;
  --border:      #E2E8F0;
  --card-bg:     #334155;
  --gold:        #F59E0B;
  --red:         #EF4444;

  --font:        'Poppins', sans-serif;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.18);

  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --nav-h:       72px;
}

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }

/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--slate-light); border-radius: 99px; }

/* ─── Utility Classes ───────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 99px; font-size: 12px; font-weight: 600;
}
.badge-green  { background: rgba(44,122,92,.12); color: var(--green); }
.badge-navy   { background: var(--navy); color: var(--white); }
.badge-gold   { background: rgba(245,158,11,.12); color: var(--gold); }

.tag {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
}
.tag-green { background: rgba(52,211,153,.15); color: var(--green); }
.tag-navy  { background: var(--navy); color: var(--white); }

.highlight { color: var(--green); }
.text-slate { color: var(--slate); }
.text-white { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 99px; font-size: 14px; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-green {
  background: var(--green); color: var(--white);
}
.btn-green:hover {
  background: #235e48; transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; border-color: var(--white); color: var(--white);
}
.btn-outline:hover {
  background: var(--white); color: var(--navy); transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent; border-color: var(--navy); color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy); color: var(--white); transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ─── Section Headers ───────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy);
  line-height: 1.25; margin-bottom: 12px;
}
.section-header p {
  font-size: 15px; color: var(--slate); max-width: 560px; line-height: 1.7;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ─── Navigation ────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.98);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: var(--nav-h); max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-size: 22px; font-weight: 900; color: var(--navy);
  letter-spacing: -1px; flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex; align-items: center; gap: 8px; flex: 1;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--slate); padding: 6px 12px;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy); background: var(--light-gray);
}
.nav-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--light-gray); border-radius: 99px; padding: 8px 16px;
  flex: 0 1 280px;
}
.nav-search input {
  background: none; border: none; outline: none; font-size: 13px;
  color: var(--navy); width: 100%; font-family: var(--font);
}
.nav-search input::placeholder { color: var(--slate-light); }
.nav-search i { color: var(--slate); font-size: 13px; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 99px; transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px; font-weight: 600; color: var(--navy); padding: 14px 16px;
  border-radius: var(--radius-md); transition: var(--transition); border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { background: var(--light-gray); }

/* ─── Hero Section ──────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg {
  position: absolute; inset: 0;
  background: rgba(15, 32, 39, 0.4);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(44,122,92,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30,41,59,.6) 0%, transparent 50%);
}
.hero-shapes {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero-shapes .shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.03);
  animation: float 8s ease-in-out infinite;
}
.hero-shapes .shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-shapes .shape-2 { width: 250px; height: 250px; bottom: 100px; left: -80px; animation-delay: 3s; }
.hero-shapes .shape-3 { width: 150px; height: 150px; top: 40%; left: 10%; animation-delay: 5s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.04); }
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 780px; padding: 0 24px;
}
.hero-content .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 99px;
  padding: 6px 18px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .8px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(52px, 10vw, 100px); font-weight: 900; color: var(--white);
  letter-spacing: -3px; line-height: .95; margin-bottom: 12px;
}
.hero-content h1 .dot { color: var(--green-light); }
.hero-content h1 .sub {
  display: block; font-size: clamp(18px, 4vw, 32px); font-weight: 400;
  letter-spacing: 6px; color: rgba(255,255,255,.7); margin-top: 4px;
}
.hero-content p {
  font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.75;
  max-width: 540px; margin: 20px auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 40px; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; gap: 0;
}
.hero-stats-inner {
  display: flex; gap: 0;
  background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-stat {
  padding: 18px 36px; text-align: center; border-right: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-size: 26px; font-weight: 800; color: var(--white); display: block;
}
.hero-stat .label {
  font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500;
}
.scroll-cue {
  position: absolute; bottom: 130px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-cue span { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 1px; }
.scroll-cue .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 12px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ─── Why Choose Us ─────────────────────────────── */
.why-section { background: var(--white); }
.why-left h2 { font-size: clamp(22px,3vw,34px); font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.why-left p  { color: var(--slate); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.social-icons { display: flex; gap: 12px; margin-bottom: 40px; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--slate); font-size: 15px; transition: var(--transition);
}
.social-icons a:hover { border-color: var(--navy); color: var(--navy); background: var(--light-gray); }
.why-metrics { display: flex; gap: 32px; flex-wrap: wrap; }
.metric { }
.metric .val { font-size: 28px; font-weight: 800; color: var(--navy); display: block; }
.metric .lbl { font-size: 12px; color: var(--slate); }

.why-grid { display: flex; flex-direction: column; gap: 16px; }
.feature-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--light-gray); border-radius: var(--radius-md); padding: 20px;
  transition: var(--transition);
}
.feature-card:hover { background: var(--navy); }
.feature-card:hover .fc-icon { background: rgba(255,255,255,.15); color: var(--white); }
.feature-card:hover .fc-title { color: var(--white); }
.feature-card:hover .fc-text  { color: rgba(255,255,255,.7); }
.fc-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 20px; flex-shrink: 0; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.fc-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; transition: var(--transition); }
.fc-text  { font-size: 13px; color: var(--slate); line-height: 1.6; transition: var(--transition); }

/* ─── Destination Cards ─────────────────────────── */
.dest-section { background: var(--light-gray); border-radius: var(--radius-xl); }
.dest-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 24px; }
.dest-header h2 { font-size: clamp(22px,2.5vw,30px); font-weight: 800; }
.dest-header p   { font-size: 14px; color: var(--slate); max-width: 340px; text-align: right; }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }

.dest-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.dest-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.dest-card:hover .dest-card-bg { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.dest-card-price {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.92); border-radius: 99px;
  padding: 4px 12px; font-size: 12px; font-weight: 700; color: var(--navy);
}
.dest-card-price span { font-size: 10px; font-weight: 500; color: var(--slate); }
.dest-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
}
.dest-card-name  { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.dest-card-meta  { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.dest-card-meta i { font-size: 11px; }
.dest-card-rating {
  display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--white);
}
.dest-card-rating i { color: var(--gold); }

.dest-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.carousel-btns { display: flex; gap: 10px; }
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 14px; transition: var(--transition); cursor: pointer;
}
.carousel-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ─── Tour Packages ─────────────────────────────── */
.pkg-grid { display: grid; grid-template-columns: 340px 1fr 1fr; gap: 20px; align-items: start; }
.pkg-promo {
  background: linear-gradient(145deg, var(--navy) 0%, #0f1f36 100%);
  border-radius: var(--radius-lg); padding: 36px 28px;
  display: flex; flex-direction: column; height: 100%; min-height: 360px;
}
.pkg-promo-tag {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px;
  background: rgba(52,211,153,.15); color: var(--green-light);
  border-radius: 99px; padding: 4px 14px; font-size: 12px; font-weight: 600;
}
.pkg-promo h2 {
  font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.pkg-promo p  { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 28px; }
.pkg-promo .btn { margin-top: auto; width: fit-content; }

.pkg-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  min-height: 360px; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pkg-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.pkg-card:hover .pkg-card-bg { transform: scale(1.06); }
.pkg-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.pkg-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: var(--white);
  border-radius: 99px; padding: 4px 12px; font-size: 11px; font-weight: 700;
}
.pkg-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
}
.pkg-card-title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.pkg-card-desc  { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 12px; }
.pkg-card-footer { display: flex; align-items: center; justify-content: space-between; }
.pkg-card-price  { font-size: 16px; font-weight: 800; color: var(--white); }
.pkg-card-price span { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.65); }
.pkg-card-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 12px; transition: var(--transition);
}
.pkg-card:hover .pkg-card-arrow { background: var(--white); color: var(--navy); }

/* ─── How It Works ──────────────────────────────── */
.how-section { background: var(--off-white); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step {
  text-align: center; padding: 32px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative;
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step::after {
  content: '';
  position: absolute; top: 50%; right: -32px;
  width: 32px; height: 2px;
  background: linear-gradient(to right, var(--border), transparent);
}
.step:last-child::after { display: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-size: 20px; font-weight: 800; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: var(--light-gray); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--navy);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p  { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* ─── Testimonials ──────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tc-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; display: flex; gap: 3px; }
.tc-text  { font-size: 14px; color: var(--slate); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--light-gray); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--navy);
}
.tc-name  { font-size: 14px; font-weight: 700; color: var(--navy); }
.tc-role  { font-size: 12px; color: var(--slate); }

/* ─── Newsletter ────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1f36 100%);
  border-radius: var(--radius-xl); margin: 0 24px;
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(44,122,92,.3) 0%, transparent 60%);
}
.newsletter-section > * { position: relative; z-index: 1; }
.newsletter-section h2 { font-size: clamp(22px,3vw,36px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-section p  { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 13px 20px; border-radius: 99px;
  border: none; outline: none; font-size: 14px; font-family: var(--font);
  background: rgba(255,255,255,.12); color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { background: rgba(255,255,255,.18); }

/* ─── Footer ────────────────────────────────────── */
footer {
  background: #0A1628; color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: block; font-size: 26px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 14px; transition: var(--transition);
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: .3px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── Page Hero (inner pages) ───────────────────── */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 80px) 0 80px;
  background-size: cover;
  background-position: center;
  text-align: center; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px; padding: 6px 18px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.85); letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px,5vw,60px); font-weight: 900; color: var(--white);
  letter-spacing: -2px; margin-bottom: 16px;
}
.page-hero p {
  font-size: 16px; color: rgba(255,255,255,.7); max-width: 540px;
  margin: 0 auto 32px; line-height: 1.7;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.55); position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: var(--green-light); font-weight: 500; }

/* ─── Filter / Search Bar ───────────────────────── */
.filter-bar {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px 28px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  margin-bottom: 40px;
}
.filter-group { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 160px; }
.filter-group label { font-size: 11px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .5px; }
.filter-group select,
.filter-group input {
  border: none; outline: none; font-size: 14px; font-family: var(--font);
  color: var(--navy); background: none; cursor: pointer;
}
.filter-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── Blog Cards ────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
  height: 220px; background-size: cover; background-position: center;
  transition: transform .5s ease; position: relative; overflow: hidden;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img .cat-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy); color: var(--white); border-radius: 99px;
  padding: 4px 12px; font-size: 11px; font-weight: 700;
}
.blog-card-body { padding: 22px; }
.blog-meta {
  display: flex; gap: 14px; align-items: center; margin-bottom: 12px;
  font-size: 12px; color: var(--slate);
}
.blog-meta i { font-size: 11px; }
.blog-card-body h3 {
  font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4;
}
.blog-card-body p { font-size: 14px; color: var(--slate); line-height: 1.65; margin-bottom: 16px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.author-info { display: flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--light-gray);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--navy);
}
.author-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.read-more {
  font-size: 13px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.read-more:hover { gap: 8px; }

/* ─── About Page ────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--card-bg) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; font-weight: 900; color: rgba(255,255,255,.15);
  letter-spacing: -2px;
}
.team-body { padding: 20px; }
.team-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-body span { font-size: 13px; color: var(--green); font-weight: 500; }
.team-body p { font-size: 13px; color: var(--slate); margin-top: 10px; line-height: 1.6; }

.value-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green); transform: translateY(-3px); }
.value-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--light-gray); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--navy); margin-bottom: 16px; transition: var(--transition);
}
.value-card:hover .value-icon { background: var(--navy); color: var(--white); }
.value-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* ─── Contact Page ──────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--light-gray); border-radius: var(--radius-lg); padding: 32px;
}
.contact-info-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-info-card > p { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-item-text h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-item-text p  { font-size: 13px; color: var(--slate); }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font);
  color: var(--navy); outline: none; transition: var(--transition); background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,41,59,.07);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── FAQ ───────────────────────────────────────── */
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--navy); background: none;
  cursor: pointer; transition: var(--transition);
}
.faq-q:hover { background: var(--light-gray); }
.faq-q .icon { width: 24px; height: 24px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 12px; transition: var(--transition); flex-shrink: 0; }
.faq-q.open .icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ─── Pagination ────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 14px; font-weight: 600; color: var(--navy); cursor: pointer; transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ─── Notification Toast ────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--navy); color: var(--white); padding: 14px 22px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500;
  transform: translateY(80px); opacity: 0; transition: var(--transition); pointer-events: none;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--green-light); font-size: 16px; }

/* ─── Back to Top ───────────────────────────────── */
#back-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px); transition: var(--transition); cursor: pointer;
  border: none;
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--green); }

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1100px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .pkg-promo { grid-column: 1 / -1; min-height: auto; flex-direction: row; align-items: center; gap: 24px; }
  .pkg-promo .btn { margin-top: 0; }
}
@media (max-width: 900px) {
  .nav-search { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .why-section .container > .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-search { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .hero-stats { display: none; }
  .dest-header { flex-direction: column; align-items: flex-start; }
  .dest-header p { text-align: left; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-promo { flex-direction: column; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .newsletter-section { margin: 0 12px; padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .hero-content h1 { letter-spacing: -2px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
