/* --- VARIABLES --- */
:root {
  --font-primary: 'DM Serif Display', serif;
  --font-main: 'Plus Jakarta Sans', sans-serif;

  --primary: #1e1b4b;
  /* Deep Indigo */
  --primary-mid: #2d2a6e;
  --primary-light: #3730a3;
  --accent: #f97316;
  /* Saffron / Orange */
  --accent-light: #fbbf24;
  /* Amber */
  --accent-bg: #fff7ed;
  --bg: #f9f8ff;
  /* Pearl lavender */
  --surface: #ffffff;
  --text: #111827;
  --text-muted: #4b5563;
  --text-soft: #9ca3af;
  --border: #e5e7eb;
  --border-soft: #f3f4f6;
  --shadow-sm: 0 1px 4px rgba(30, 27, 75, 0.06);
  --shadow-md: 0 6px 20px rgba(30, 27, 75, 0.09);
  --shadow-lg: 0 20px 48px rgba(30, 27, 75, 0.13);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: var(--font-primary);
  line-height: 1.1;
  color: var(--primary);
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

/* ================================================================
   HEADER / NAV
   ================================================================ */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  height: 68px;
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.btn-nav {
  background: var(--primary) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--primary-mid) !important;
  transform: translateY(-1px);
}

.btn-nav-outline {
  border: 1.5px solid var(--border) !important;
  color: var(--text) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

.btn-nav-outline:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background: #ea6c0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.38);
}

.btn-secondary {
  background: var(--primary);
  color: white;
}

.btn-secondary:hover {
  background: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 27, 75, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.83rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ================================================================
   *** NEW HOME LAYOUT COMPONENTS ***
   ================================================================ */

/* --- SPLIT HERO --- */
.home-hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.home-hero-left {
  background: var(--primary);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-hero-left::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.home-hero-left::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.home-hero-left h1 {
  font-size: clamp(3rem, 4.5vw, 4.4rem);
  color: white;
  line-height: 1.08;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.home-hero-left p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 42px;
  max-width: 440px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  margin-left: -8px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.hero-trust-avatars span:first-child {
  margin-left: 0;
}

.hero-trust p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.hero-trust strong {
  color: white;
}

.home-hero-right {
  position: relative;
  overflow: hidden;
}

.home-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 27, 75, 0.3) 0%, transparent 50%);
}

.hero-floating-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  min-width: 200px;
}

.hero-floating-card .hfc-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-floating-card .hfc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.hero-floating-card h4 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-floating-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- MARQUEE STRIP --- */
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-inner span {
  color: white;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* --- HOME DESTINATION CARDS --- */
.destinations-section {
  padding: 100px 0;
  background: var(--bg);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: block;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.dest-card__img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.dest-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.dest-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(30, 27, 75, 0.55), transparent);
}

.dest-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: white;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.dest-card__body {
  padding: 24px;
}

.dest-card__loc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.dest-card__title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.dest-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.dest-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}

.dest-card__price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  font-family: var(--font-primary);
}

.dest-card__dur {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* --- BENTO FEATURE GRID --- */
.bento-section {
  padding: 0 0 100px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.bento-cell:hover {
  box-shadow: var(--shadow-md);
}

.bento-cell.accent {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  grid-column: span 2;
}

.bento-cell.accent h3 {
  color: white;
}

.bento-cell.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-color: transparent;
  color: white;
}

.bento-cell.highlight h3 {
  color: white;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--accent-bg);
}

.bento-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bento-cell.accent .bento-icon {
  background: rgba(255, 255, 255, 0.12);
}

.bento-cell.accent .bento-icon svg {
  stroke: var(--accent-light);
}

.bento-cell.highlight .bento-icon {
  background: rgba(255, 255, 255, 0.2);
}

.bento-cell.highlight .bento-icon svg {
  stroke: white;
}

.bento-cell h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.bento-cell p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.bento-cell.accent p {
  color: rgba(255, 255, 255, 0.6);
}

.bento-cell.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.bento-big-number {
  font-family: var(--font-primary);
  font-size: 4rem;
  color: white;
  opacity: 0.18;
  position: absolute;
  bottom: 16px;
  right: 24px;
}

/* --- TESTIMONIAL STRIP --- */
.testimonials-section {
  background: var(--primary);
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.t-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.t-card__stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.t-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.t-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.t-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  font-family: var(--font-main);
}

.t-card__role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- CTA SECTION --- */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
}

.cta-inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border: 80px solid rgba(249, 115, 22, 0.1);
  border-radius: 50%;
}

.cta-inner h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
}

/* ================================================================
   PAGE BANNER (Interior Pages)
   ================================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 60px solid rgba(249, 115, 22, 0.1);
  border-radius: 50%;
}

.page-banner h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  max-width: 500px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb span {
  color: var(--accent-light);
}

/* ================================================================
   SECTION HELPERS
   ================================================================ */
.section {
  padding: 100px 0;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-main);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ================================================================
   TOUR CARDS (consistent across tours.php, tour-details.php)
   ================================================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.tour-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.tour-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.tour-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.tour-card__body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card__location {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tour-card__title {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.tour-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 22px;
  line-height: 1.65;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}

.tour-card__price {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--primary);
}

.tour-card__price span {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-soft);
}

.tour-card__duration {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 3px;
}

/* ================================================================
   TOUR DETAIL PAGE
   ================================================================ */
.tour-detail-hero {
  height: 460px;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.tour-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.tour-detail-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}

.tour-detail-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  padding: 80px 0;
}

.tour-detail-desc {
  font-size: 1.03rem;
  line-height: 1.9;
  color: #4b5563;
}

.tour-detail-desc h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 40px 0 16px;
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow-md);
}

.booking-card__price {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.booking-card__price span {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ================================================================
   ABOUT, SPLIT LAYOUT, FEATURES
   ================================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-bg);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h4 {
  font-family: var(--font-main);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

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

/* ================================================================
   CONTACT
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item h4 {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.93rem;
  color: var(--text-muted);
}

/* ================================================================
   POLICY PAGES
   ================================================================ */
.policy-body {
  max-width: 800px;
  margin: 0 auto;
}

.policy-body h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.policy-body p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.policy-updated {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================================================================
   FORMS
   ================================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--surface);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(55, 48, 163, 0.1);
}

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

.form-control::placeholder {
  color: #c4c4c4;
}

/* ================================================================
   ALERTS
   ================================================================ */
.alert {
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 22px;
  border: 1px solid;
}

.alert-danger {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #b91c1c;
}

.alert-success {
  background: #f0fdf4;
  border-color: #86efac;
  color: #15803d;
}

/* ================================================================
   AUTH PAGES
   ================================================================ */
.auth-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-left {
  background: var(--primary);
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1548013146-72479768bbaa?q=80&w=1200&auto=format&fit=crop') center/cover;
  opacity: 0.12;
}

.auth-left-content {
  position: relative;
  z-index: 1;
}

.auth-left h2 {
  font-size: 2.4rem;
  color: white;
  margin-bottom: 16px;
}

.auth-left p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.auth-right {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.auth-right-inner {
  max-width: 400px;
  width: 100%;
}

.auth-right h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 36px;
}

.auth-divider {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 18px 0;
  position: relative;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

/* ================================================================
   ADMIN
   ================================================================ */
.admin-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  height: 66px;
  display: flex;
  align-items: center;
}

.admin-badge {
  background: var(--accent-bg);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: calc(100vh - 66px);
}

.admin-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 28px 0;
}

.admin-sidebar h3 {
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0 20px;
  margin-bottom: 10px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.admin-nav-item:hover {
  background: var(--bg);
  color: var(--primary);
  border-left-color: var(--accent);
}

.admin-nav-item.active {
  background: var(--accent-bg);
  color: var(--primary);
  border-left-color: var(--accent);
  font-weight: 600;
}

.admin-nav-item svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-main {
  background: var(--bg);
  padding: 36px;
  overflow-y: auto;
}

.admin-section-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.card h3 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}

.stat-card-number {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead th {
  background: var(--bg);
  padding: 11px 14px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--bg);
}

.action-link {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 6px;
  transition: var(--transition);
}

.action-link.delete {
  color: #dc2626;
  background: #fef2f2;
}

.action-link.delete:hover {
  background: #dc2626;
  color: white;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--primary);
  color: white;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}

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

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

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

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

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

.footer-bottom-links a:hover {
  color: var(--accent-light);
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 22px;
}

/* TOURS SEARCH & FILTERS */
.tours-search-box {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.filter-chips {
  gap: 12px;
  align-items: center;
}

.chip {
  padding: 10px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.chip:hover,
.chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 21, 57, 0.15);
}

/* PAGINATION */
.pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.page-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(11, 21, 57, 0.02);
}

.page-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(11, 21, 57, 0.2);
}

.page-link:not(.active):not(:hover) {
  background: var(--white);
}

.page-link--prev, 
.page-link--next {
  width: auto !important;
  padding: 0 24px !important;
  border-radius: 50px !important;
  gap: 8px;
}

.page-link--prev:hover,
.page-link--next:hover {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
}

.page-link--prev { margin-right: 8px; }
.page-link--next { margin-left: 8px; }

.page-dots {
  color: var(--text-soft);
  margin: 0 8px;
}

/* IMPROVED TOUR CARD (Budget Theme) */
.tour-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.tour-card__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.tour-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-card:hover .tour-card__image-wrapper img {
  transform: scale(1.1);
}

.tour-card__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top,
      rgba(11, 21, 57, 0.95) 0%,
      rgba(11, 21, 57, 0.6) 40%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all 0.4s ease;
}

.tour-card:hover .tour-card__image-overlay {
  height: 85%;
  background: linear-gradient(to top,
      rgba(249, 115, 22, 0.9) 0%,
      rgba(11, 21, 57, 0.7) 50%,
      transparent 100%);
}

.tour-card__image-title {
  color: white;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.tour-card__location-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.tour-card__duration {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent);
}

/* ================================================================
   TOUR DETAIL — RICH CONTENT COMPONENTS
   ================================================================ */
.td-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.td-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.td-check-icon {
  width: 20px;
  height: 20px;
  background: var(--accent-bg);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.td-check-icon.td-green {
  background: #dcfce7;
  border-color: #86efac;
}

.td-check-icon.td-red {
  background: #fef2f2;
  border-color: #fca5a5;
}

/* Itinerary timeline */
.td-itinerary {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.td-day-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--border-soft);
}

.td-day-row:last-child {
  border-bottom: none;
}

.td-day-badge {
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}

.td-day-content {
  padding: 13px 18px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  background: var(--surface);
  display: flex;
  align-items: center;
}

.td-day-row:nth-child(even) .td-day-content {
  background: var(--bg);
}

/* Inclusions / Exclusions */
.td-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.td-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  margin-top: 16px;
}

.td-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

/* Utility grids used in about / contact */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================================================================
   HAMBURGER / MOBILE NAV
   ================================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-hamburger:hover {
  border-color: var(--primary);
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 75, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--primary);
  padding: 24px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-overlay.is-open .mobile-nav-inner {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
  transition: var(--transition);
}

.mobile-nav-close svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-links a {
  display: block;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================================ */
/* PAYMENT OPTIONS */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.payment-option {
  display: flex;
  align-items: flex-start;
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
}
.payment-option:hover:not(.dummy) {
  border-color: var(--primary-light);
  background: rgba(11,21,57,0.02);
}
.payment-option input[type="radio"] {
  margin-right: 14px;
  margin-top: 4px;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.payment-option-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.payment-option-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.payment-option.dummy {
  opacity: 0.55;
  cursor: not-allowed;
  background: #f8fafc;
}
.badge-maintenance {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.payment-option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(11,21,57,0.03);
  box-shadow: 0 0 0 1px var(--primary);
}

/* TOUR DETAIL HERO EXTENSIONS */
.tour-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
}
.tqs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.tqs-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tqs-icon svg {
  width: 18px;
  height: 18px;
}
.tqs-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 2px;
}
.tqs-val {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

/* STICKY BOOKING CARD */
.booking-card {
  position: sticky;
  top: 100px;
  z-index: 10;
}

/* TIMELINE ITINERARY */
.td-itinerary {
  position: relative;
  border-left: 2px solid var(--border);
  margin-left: 15px;
  padding-left: 30px;
}
.td-day-row {
  position: relative;
  margin-bottom: 40px;
}
.td-day-row::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  z-index: 1;
}
.td-day-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.td-day-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.td-day-content {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* INCLUSIONS CARDS */
.td-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.inc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
}
.inc-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.td-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.td-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.td-check-icon.td-green { background: #10b981; }
.td-check-icon.td-red { background: #ef4444; }

/* SACRED GALLERY */
.td-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 50px 0;
}
.td-gallery-img {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.td-gallery-img:hover {
  transform: scale(1.03);
}
.td-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ SECTION */
.td-faq {
  margin-top: 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.td-faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.td-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.td-faq-q {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: block;
}
.td-faq-a {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero-right {
    height: 420px;
  }

  .hero-floating-card {
    left: 20px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-cell.accent {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .tour-detail-body {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Container padding */
  .container {
    padding: 0 18px;
  }

  /* Hero */
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero-left {
    padding: 52px 24px 44px;
  }

  .home-hero-left h1 {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .home-hero-left p {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .home-hero-right {
    height: 280px;
  }

  .hero-floating-card {
    left: 16px;
    bottom: 20px;
    padding: 13px 16px;
  }

  .hero-floating-card h4 {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn-lg {
    padding: 13px 22px;
    font-size: 0.9rem;
  }

  .hero-trust {
    margin-top: 32px;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }

  .destinations-section {
    padding: 64px 0;
  }

  .bento-section {
    padding: 0 0 64px;
  }

  .testimonials-section {
    padding: 64px 0;
  }

  .cta-section {
    padding: 64px 0;
  }

  .section-title {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Grids → single col */
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-cell.accent {
    grid-column: span 1;
  }

  .bento-cell {
    padding: 28px 24px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-inner {
    padding: 40px 24px;
    grid-template-columns: 1fr;
    gap: 28px;
    border-radius: var(--radius-lg);
  }

  .cta-inner h2 {
    font-size: 1.8rem;
  }

  /* About split */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-image {
    height: 260px;
  }

  /* About values grid */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-layout>div:last-child {
    padding: 28px !important;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  /* Page banner */
  .page-banner {
    padding: 52px 0;
  }

  .page-banner h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* Tour detail */
  .tour-detail-hero {
    height: 300px;
  }

  .tour-detail-hero-content {
    padding: 28px 20px;
  }

  .tour-detail-body {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 28px;
  }

  .booking-card {
    position: static;
    padding: 24px;
  }

  /* Tours grid */
  .tours-grid {
    grid-template-columns: 1fr;
  }

  /* Tour detail rich components */
  .td-highlights-grid {
    grid-template-columns: 1fr;
  }

  .td-inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .td-day-row {
    grid-template-columns: 80px 1fr;
  }

  .td-day-badge {
    font-size: 0.65rem;
    padding: 12px 6px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }

  footer {
    padding: 52px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 18px 0;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Auth */
  .auth-wrapper {
    grid-template-columns: 1fr;
  }

  .auth-left {
    display: none;
  }

  .auth-right {
    padding: 36px 20px;
  }

  .auth-right-inner {
    max-width: 100%;
  }

  /* Admin */
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-main {
    padding: 20px 16px;
  }

  .stat-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 0.78rem;
  }

  thead th,
  tbody td {
    padding: 9px 10px;
  }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ================================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .home-hero-left {
    padding: 40px 18px 36px;
  }

  .home-hero-left h1 {
    font-size: 2rem;
  }

  .home-hero-right {
    height: 220px;
  }

  .hero-floating-card {
    display: none;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .tour-detail-hero {
    height: 220px;
  }

  .bento-big-number {
    font-size: 3rem;
  }

  .marquee-inner span {
    padding: 0 20px;
    font-size: 0.75rem;
  }

  .cta-inner {
    padding: 32px 18px;
  }

  .cta-inner h2 {
    font-size: 1.6rem;
  }

  .contact-layout>div:last-child {
    padding: 20px !important;
  }

  .values-grid {
    gap: 16px;
  }

  .t-card {
    padding: 22px 18px;
  }

  .page-banner {
    padding: 40px 0;
  }

  .auth-right {
    padding: 28px 16px;
  }

  .admin-main {
    padding: 16px 12px;
  }
}