/* ================================================================
   Anureet Holidays — Main Stylesheet
   Theme: Navy & Gold | Fonts: Playfair Display + DM Sans
   Version: 4.2.0 | By Virus Infotech
================================================================ */

/* ===== CSS VARIABLES & RESET ===== */
:root {
  --navy: #0a1628;
  --navy2: #0f2040;
  --gold: #e8a045;
  --gold2: #f0b860;
  --cream: #fdf8f0;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --card-bg: #ffffff;
  --bg: #f8f9fa;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --text: #e8eaf0;
  --muted: #9ca3af;
  --border: #1e2d45;
  --white: #0f1e35;
  --card-bg: #0f1e35;
  --bg: #0a1628;
  --nav-bg: rgba(10, 22, 40, 0.95);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
  min-width: 0;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 5%;
  display: flex;
  align-items: center;
  height: 72px;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

[data-theme="dark"] .nav-logo {
  color: var(--gold);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

[data-theme="dark"] .nav-links a:hover {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 32px;
}

.btn-nav {
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  padding: 9px 20px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-nav:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.dark-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: var(--transition);
  font-size: 0.9rem;
}

.dark-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  gap: 5px;
  border: none;
  background: transparent;
  padding: 0;
  margin-left: 10px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

[data-theme="dark"] .hamburger span {
  background: #fff;
}

.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 NAV ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
  backdrop-filter: blur(2px);
}

.nav-overlay.open {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--card-bg);
  z-index: 1050;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-nav.open {
  right: 0;
}

.mnav-header {
  background: var(--navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mnav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}

.mnav-logo span {
  color: var(--gold);
}

.mnav-close {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.mnav-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mnav-links {
  padding: 20px 0;
  flex: 1;
  overflow-y: auto;
}

.mnav-links a,
.mnav-links button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}

.mnav-links a:hover,
.mnav-links button:hover {
  background: rgba(232, 160, 69, 0.08);
  color: var(--gold);
}

.mnav-links .mnav-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(232, 160, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mnav-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 24px;
}

.mnav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.mnav-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  justify-content: center;
}

.mnav-call i {
  color: var(--gold);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1628 0%, #0d2647 40%, #1a3a60 70%, #0e1f38 100%);
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("wallpaper.jpg") center/cover;
  opacity: 0.35;
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.5) 50%, rgba(10, 22, 40, 0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 110px 5% 0 5%;
  max-width: 680px;
  flex-shrink: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 69, 0.15);
  border: 1px solid rgba(232, 160, 69, 0.35);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s both;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.2s both;
}

.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s both;
  margin-bottom: 52px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 69, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-kpis {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.5s both;
}

.kpi-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}

.kpi-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-top: 2px;
}

.hero-search {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px 20px 0 0;
  padding: 20px 5%;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.6s both;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  flex-shrink: 0;
  margin-top: auto;
}

[data-theme="dark"] .hero-search {
  background: rgba(10, 22, 40, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
}

.sf {
  flex: 1 1 160px;
  padding: 0 18px;
  border-right: 1px solid var(--border);
}

.sf:last-of-type {
  border-right: none;
}

.sf label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.sf input,
.sf select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.sf select option {
  color: #333;
}

.hero-search .btn {
  margin-left: 16px;
  padding: 12px 24px;
  flex-shrink: 0;
}

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 90px 0;
}

.sec-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
}

.sec-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== DESTINATIONS ===== */
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-card:nth-child(1) {
  grid-row: span 2;
}

.dest-ovl {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.dest-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.dest-count {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}

.dest-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ===== PACKAGES ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ftab {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--card-bg);
  font-family: 'DM Sans', sans-serif;
}

.ftab.active,
.ftab:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.pkg-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pkg-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pkg-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.05);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
}

.pkg-badge.hot {
  background: #ef4444;
  color: #fff;
}

.wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.pkg-body {
  padding: 20px;
}

.pkg-meta {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pkg-meta i {
  color: var(--gold);
}

.pkg-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pkg-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.stars {
  color: var(--gold);
  font-weight: 700;
}

.reviews {
  color: var(--muted);
}

.pkg-seats {
  font-size: 0.78rem;
  color: #ef4444;
  font-weight: 600;
  margin-bottom: 12px;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}

[data-theme="dark"] .price {
  color: var(--gold);
}

.per-person {
  font-size: 0.75rem;
  color: var(--muted);
}

.btn-book {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-book:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--navy);
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.svc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.svc-card:hover {
  background: rgba(232, 160, 69, 0.12);
  border-color: rgba(232, 160, 69, 0.35);
  transform: translateY(-4px);
}

.svc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(232, 160, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--gold);
}

.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: linear-gradient(135deg, #e8a045 0%, #f0b860 50%, #e89020 100%);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.offer-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.offer-text p {
  color: rgba(10, 22, 40, 0.7);
  font-size: 1rem;
}

.offer-code {
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  padding: 16px 28px;
  text-align: center;
}

.code {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 3px;
}

.offer-code .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

.offer-cta {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.offer-cta:hover {
  background: #0f2040;
  transform: translateY(-2px);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
}

.why-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 160, 69, 0.2) 0%, transparent 60%);
}

.why-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.why-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
}

.why-badge .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 160, 69, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-item h4 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.testi-trip {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--navy);
  padding: 80px 5%;
  text-align: center;
}

.newsletter-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: #060e1c;
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-about {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.fci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.fci i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.fci span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== FLOATING BUTTONS ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  animation: pulse 2.5s infinite;
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
}

.chat-float {
  position: fixed;
  bottom: 94px;
  right: 28px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(232, 160, 69, 0.3);
}

.chat-float:hover {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--navy);
}

/* ===== CHATBOT ===== */
.chat-box {
  position: fixed;
  bottom: 160px;
  right: 28px;
  z-index: 999;
  width: 320px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-box.open {
  display: flex;
}

.chat-header {
  background: var(--navy);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--navy);
}

.chat-header-info h4 {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
}

.chat-header-info span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.chat-messages {
  flex: 1;
  padding: 16px;
  height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 82%;
}

.chat-msg.bot {
  align-self: flex-start;
}

.chat-msg.user {
  align-self: flex-end;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.bot .chat-bubble {
  background: rgba(10, 22, 40, 0.07);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

[data-theme="dark"] .bot .chat-bubble {
  background: rgba(255, 255, 255, 0.07);
}

.user .chat-bubble {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

.chat-input-row {
  display: flex;
  border-top: 1px solid var(--border);
}

.chat-input-row input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
}

.chat-input-row button {
  padding: 12px 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
}

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

/* ===== FULL-PAGE OVERLAYS ===== */
.full-page,
.contact-page {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg);
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  animation: pageSlideIn 0.35s ease both;
  -webkit-overflow-scrolling: touch;
}

.full-page.active,
.contact-page.active {
  display: block;
}

.fp-header {
  background: var(--navy);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  max-width: 100%;
  overflow: hidden;
}

.fp-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

.fp-logo span {
  color: var(--gold);
}

.fp-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.fp-back:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 160, 69, 0.4);
}

.fp-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0d2647 60%, #1a3a60 100%);
  padding: 60px 5% 50px;
  text-align: center;
}

.fp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.fp-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.fp-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

.fp-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.fp-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.fp-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.fp-body {
  padding: 60px 5%;
}

.fp-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== TOUR FILTER TABS ===== */
.fp-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.fp-ftab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  background: var(--card-bg);
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.fp-ftab.active,
.fp-ftab:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ===== TOUR CARDS ===== */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.tp-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.tp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.tp-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tp-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tp-card:hover .tp-img img {
  transform: scale(1.06);
}

.tp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
}

.tp-num {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 22, 40, 0.8);
  color: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.tp-body {
  padding: 20px;
}

.tp-dur {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.tp-dur i {
  color: var(--gold);
  font-size: 0.75rem;
}

.tp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tp-tag {
  background: rgba(232, 160, 69, 0.1);
  color: var(--gold);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(232, 160, 69, 0.25);
}

.tp-inc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.tp-inc strong {
  color: var(--text);
  font-weight: 600;
}

.tp-actions {
  display: flex;
  gap: 10px;
}

.tp-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.tp-wa:hover {
  background: #1da851;
  transform: translateY(-1px);
}

.tp-enquire {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.tp-enquire:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.tp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tp-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

[data-theme="dark"] .tp-price {
  color: var(--gold);
}

.tp-price-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}

.enquire-on-call {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0d2647 50%, #143860 100%);
  padding: 72px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,160,69,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero > * {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.contact-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 40px 36px;
  color: #fff;
  position: sticky;
  top: 100px;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info-card .owner-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(232,160,69,0.2);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  color: var(--gold);
}

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
}

.contact-info-card .owner-role {
  text-align: center;
  font-size: 0.83rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-width: 0;
}

.cinfo-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cinfo-item > div:last-child {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.cinfo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(232,160,69,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.cinfo-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.cinfo-value {
  font-size: 0.92rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cinfo-value a {
  color: var(--gold);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.cinfo-value a:hover {
  text-decoration: underline;
}

.contact-hours {
  background: rgba(232,160,69,0.1);
  border: 1px solid rgba(232,160,69,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 24px;
  text-align: center;
}

.contact-hours .hours-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-hours .hours-val {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.cform-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 100%;
  box-sizing: border-box;
}

.cform-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.cform-card .form-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
  max-width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  min-width: 0;
  max-width: 100%;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  text-overflow: ellipsis;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,69,0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,69,0.4);
}

.btn-submit .btn-submit-short {
  display: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(37,211,102,0.08);
  border: 1.5px solid #25d366;
  border-radius: 16px;
  margin-top: 20px;
}

.form-success i {
  font-size: 2.5rem;
  color: #25d366;
  margin-bottom: 12px;
  display: block;
}

.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--muted);
}

.wa-cta-banner {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
}

.wa-cta-banner .wa-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.wa-cta-banner .wa-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.wa-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #128c7e;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: var(--transition);
}

.wa-cta-btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-map {
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 100%;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  max-width: 100%;
}

/* ===== EDUCATIONAL TOURS PAGE ===== */
.edu-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0d2647 50%, #143860 100%);
  padding: 90px 5% 80px;
  text-align: center;
  overflow: hidden;
}

.edu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80") center/cover;
  opacity: 0.15;
}

.edu-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(232,160,69,0.15) 0%, transparent 50%);
}

.edu-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.edu-hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,69,0.15);
  border: 1px solid rgba(232,160,69,0.35);
  color: var(--gold);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.edu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}

.edu-hero h1 em { color: var(--gold); font-style: italic; }

.edu-hero p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.edu-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.edu-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

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

.edu-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.edu-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Why Edu */
.why-edu { padding: 90px 5%; background: var(--bg); }

.why-edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-edu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-edu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.why-edu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: rgba(232,160,69,0.3);
}

.why-edu-card:hover::before { transform: scaleX(1); }

.why-edu-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(232,160,69,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.why-edu-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.why-edu-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* Categories */
.edu-cats {
  padding: 90px 5%;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.edu-cats::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,69,0.1) 0%, transparent 70%);
}

.edu-cats .sec-hdr h2 { color: #fff; }
.edu-cats .sec-hdr .sec-desc { color: rgba(255,255,255,0.6); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.cat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.cat-card:hover {
  background: rgba(232,160,69,0.1);
  border-color: rgba(232,160,69,0.4);
  transform: translateY(-4px);
}

.cat-emoji { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.cat-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
.cat-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 14px; }
.cat-tags    { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-tag {
  background: rgba(232,160,69,0.15);
  color: var(--gold);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(232,160,69,0.25);
}

/* Inclusions */
.inc-section { padding: 90px 5%; background: var(--bg); }

.inc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.inc-list { list-style: none; display: grid; gap: 16px; }
.inc-list li { display: flex; gap: 14px; align-items: flex-start; }
.inc-list h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.inc-list p  { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

.inc-check {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: rgba(37,211,102,0.12);
  color: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.inc-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 500px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.inc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(10,22,40,0.4) 100%); }

.inc-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(232,160,69,0.3);
  z-index: 2;
}

.inc-badge-float .big  { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.inc-badge-float .small { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* Safety */
.safety-sec {
  padding: 90px 5%;
  background: linear-gradient(135deg, #fff9f0 0%, #fef3e0 100%);
}

[data-theme="dark"] .safety-sec {
  background: linear-gradient(135deg, #0f1e35 0%, #0a1628 100%);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.safety-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.safety-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(232,160,69,0.15);
}

.safety-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--navy);
  font-size: 1.3rem;
}

.safety-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.safety-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* Educational Packages */
.edu-pkgs { padding: 90px 5%; background: var(--bg); }

.epkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 48px;
}

.epkg-card {
  background: var(--card-bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.epkg-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.14); }

.epkg-img { position: relative; height: 190px; overflow: hidden; }
.epkg-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.epkg-card:hover .epkg-img img { transform: scale(1.06); }
.epkg-subj { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); border-radius: 8px; padding: 4px 12px; font-size: 0.72rem; font-weight: 700; z-index: 2; }
.epkg-days { position: absolute; top: 12px; right: 12px; background: rgba(10,22,40,0.85); color: #fff; border-radius: 8px; padding: 4px 10px; font-size: 0.72rem; font-weight: 600; z-index: 2; backdrop-filter: blur(6px); }

.epkg-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.epkg-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.epkg-learn { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.epkg-learn strong { color: var(--gold); font-weight: 700; }

.epkg-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.epkg-chip { background: rgba(232,160,69,0.1); color: var(--gold); border-radius: 6px; padding: 3px 10px; font-size: 0.7rem; font-weight: 600; border: 1px solid rgba(232,160,69,0.2); }

.epkg-footer { margin-top: auto; display: flex; gap: 8px; padding-top: 14px; border-top: 1px solid var(--border); }
.epkg-btn-wa { flex: 1; background: #25d366; color: #fff; border: none; border-radius: 10px; padding: 10px; font-weight: 700; font-size: 0.82rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: var(--transition); }
.epkg-btn-wa:hover { background: #1da851; }
.epkg-btn-en { flex: 1; background: var(--navy); color: #fff; border: none; border-radius: 10px; padding: 10px; font-weight: 700; font-size: 0.82rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: var(--transition); }
.epkg-btn-en:hover { background: var(--gold); color: var(--navy); }

/* Process */
.process-sec { padding: 90px 5%; background: var(--navy); color: #fff; }
.process-sec .sec-hdr h2 { color: #fff; }
.process-sec .sec-hdr .sec-desc { color: rgba(255,255,255,0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
  counter-reset: step;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 24px 28px;
  position: relative;
  transition: var(--transition);
  counter-increment: step;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -16px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  background: var(--navy);
  padding: 0 10px;
  line-height: 1;
}

.step-card:hover { background: rgba(232,160,69,0.08); border-color: rgba(232,160,69,0.3); transform: translateY(-4px); }
.step-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; margin: 10px 0; font-weight: 700; }
.step-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* Itinerary */
.iti-sec { padding: 90px 5%; background: var(--bg); }
.iti-card { max-width: 880px; margin: 48px auto 0; background: var(--card-bg); border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid var(--border); overflow: hidden; }
.iti-head { background: linear-gradient(135deg, var(--navy) 0%, #0d2647 100%); padding: 32px 36px; color: #fff; }
.iti-head h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.iti-head p  { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.iti-head .iti-meta { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.iti-head .iti-meta span { background: rgba(232,160,69,0.15); color: var(--gold); padding: 6px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; border: 1px solid rgba(232,160,69,0.25); }
.iti-body { padding: 10px 0 20px; }
.iti-day { padding: 24px 36px; border-bottom: 1px solid var(--border); }
.iti-day:last-child { border-bottom: none; }
.iti-day-tag { display: inline-block; background: var(--gold); color: var(--navy); border-radius: 6px; padding: 3px 12px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 10px; }
.iti-day h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.iti-day ul { list-style: none; padding-left: 0; }
.iti-day ul li { padding: 5px 0 5px 20px; font-size: 0.88rem; color: var(--muted); line-height: 1.6; position: relative; }
.iti-day ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 900; font-size: 1.1rem; line-height: 1.4; }

/* Edu Testimonials */
.edu-testi-sec { padding: 90px 5%; background: var(--card-bg); }
[data-theme="dark"] .edu-testi-sec { background: var(--bg); }
.edu-testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.edu-testi { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 28px; position: relative; transition: var(--transition); }
[data-theme="dark"] .edu-testi { background: var(--card-bg); }
.edu-testi:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.edu-testi .quote { font-size: 2.5rem; color: var(--gold); line-height: 1; font-family: 'Playfair Display', serif; margin-bottom: 6px; display: block; }
.edu-testi p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.edu-testi .testi-foot { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.edu-testi .testi-foot .avatar { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 800; font-size: 0.95rem; }
.edu-testi .testi-foot h5 { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.edu-testi .testi-foot span { font-size: 0.78rem; color: var(--muted); }

/* FAQ */
.faq-sec { padding: 90px 5%; background: var(--bg); }
.faq-wrap { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--gold); box-shadow: 0 8px 24px rgba(232,160,69,0.12); }
.faq-q { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-weight: 600; color: var(--text); font-size: 0.95rem; }
.faq-q .faq-icon { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: rgba(232,160,69,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); padding: 0 24px; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 360px; padding: 0 24px 20px; }

/* Educational CTA */
.edu-cta { padding: 80px 5%; background: linear-gradient(135deg, var(--gold) 0%, #f0b860 50%, #e89020 100%); position: relative; overflow: hidden; text-align: center; }
.edu-cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.edu-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.edu-cta p  { color: rgba(10,22,40,0.75); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.65; }
.edu-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.edu-cta .btn-cta-dark { background: var(--navy); color: #fff; border: none; padding: 15px 32px; border-radius: 12px; font-weight: 700; font-size: 0.95rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.edu-cta .btn-cta-dark:hover { background: #0f2040; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,22,40,0.35); }
.edu-cta .btn-cta-wa { background: #25d366; color: #fff; border: none; padding: 15px 32px; border-radius: 12px; font-weight: 700; font-size: 0.95rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.edu-cta .btn-cta-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }

/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:nth-child(1) { grid-row: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .packages-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .inc-grid { grid-template-columns: 1fr; gap: 40px; }
  .inc-img { height: 360px; }
  .edu-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .navbar { padding: 0 4%; height: 64px; }
  .nav-logo { font-size: 1.2rem; }
  .hero-inner { max-width: 100%; padding: 84px 4% 32px 4%; }
  #hero { min-height: 100svh; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-kpis { gap: 20px; }
  .kpi-num { font-size: 1.4rem; }
  .hero-search { display: none; }
  .section-pad { padding: 60px 0; }
  .container { padding: 0 16px; }
  .sec-hdr { margin-bottom: 36px; }
  .sec-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .dest-card:nth-child(1) { grid-row: span 1; }
  .dest-name { font-size: 1rem; }
  .packages-grid { grid-template-columns: 1fr; gap: 20px; }
  .filter-tabs { gap: 8px; }
  .ftab { padding: 7px 14px; font-size: 0.82rem; }
  .services-section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .svc-card { padding: 22px 16px; }
  .offer-banner { flex-direction: column; text-align: center; padding: 40px 5%; gap: 20px; }
  .why-img { height: 260px; border-radius: 16px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .newsletter-section { padding: 52px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 5% 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .fp-hero { padding: 40px 4% 36px; }
  .fp-stats { gap: 20px; }
  .fp-stat .num { font-size: 1.5rem; }
  .fp-body { padding: 36px 4%; }
  .fp-filter { gap: 8px; }
  .fp-ftab { padding: 7px 14px; font-size: 0.8rem; }
  .fp-grid { grid-template-columns: 1fr; gap: 20px; }
  .fp-header { padding: 0 4%; height: 60px; }
  .fp-logo { font-size: 1.1rem; }
  .fp-back { font-size: 0.8rem; padding: 7px 12px; }
  .contact-hero { padding: 48px 4% 36px; }
  .contact-body { padding: 32px 14px; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-info-card { padding: 26px 20px; border-radius: 18px; position: static; top: auto; }
  .cform-card { padding: 22px 18px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
  .form-control { font-size: 16px; }
  .btn-submit .btn-submit-long { display: none; }
  .btn-submit .btn-submit-short { display: inline; }
  .wa-cta-banner { flex-direction: column; text-align: center; padding: 22px 18px; gap: 14px; border-radius: 16px; margin-top: 24px; }
  .wa-cta-btn { justify-content: center; width: 100%; }
  .contact-map iframe { height: 220px; }
  .chat-box { width: calc(100vw - 32px); right: 16px; bottom: 150px; }
  .wa-float { right: 16px; bottom: 16px; width: 48px; height: 48px; font-size: 1.3rem; }
  .chat-float { right: 16px; bottom: 76px; width: 44px; height: 44px; font-size: 1.1rem; }
  .why-edu, .edu-cats, .inc-section, .safety-sec,
  .process-sec, .edu-pkgs, .iti-sec, .faq-sec,
  .edu-testi-sec, .edu-cta { padding: 60px 5%; }
  .edu-cta-btns { flex-direction: column; }
  .edu-cta-btns .btn-cta-dark,
  .edu-cta-btns .btn-cta-wa { width: 100%; justify-content: center; }
  .iti-day { padding: 20px 22px; }
  .iti-head { padding: 24px 22px; }
  .edu-hero-btns { flex-direction: column; }
  .edu-hero-btns .btn { width: 100%; justify-content: center; }
}

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .dest-card { height: 200px; }
  .hero-kpis { grid-template-columns: 1fr 1fr; display: grid; gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .fp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; }
  .tp-card .tp-actions { flex-direction: column; gap: 8px; }
  .edu-stats { grid-template-columns: repeat(2, 1fr); }
}
